Oracle Database - 21C | Create User, Delete User and Grant Permission to User using CDB and PDB

Поделиться
HTML-код
  • Опубликовано: 24 янв 2025
  • In the following video, we are going to learn on: -
    1. How to create user in oracle 21C using container database and using pluggable database
    2. How to delete the user
    3. How to provide permission to user in CDB and PDB.
    Note: Please find the link provided below, on how to install oracle database express edition 21C
    • Oracle Database Instal...
    --------------------------------------------
    1. Command to Change to pluggable database:
    alter session set container="PluggableDatabaseName";
    2. Command to create user:
    2A. Using Pluggable Database: create user "USERNAME" identified by "PASSWORD";
    2B. Using Container Database: create user "C#USERNAME"# identified by "PASSWORD";
    3. Commands to provide access/privileges
    A] GRANT ALL PRIVILEGES TO XXXXX;
    B] GRANT CONNECT TO XXXXX;
    C] GRANT CONNECT, RESOURCE, DBA TO XXXXX;
    D] GRANT CREATE SESSION GRANT ANY PRIVILEGE TO XXXXX;
    E] GRANT UNLIMITED TABLESPACE TO XXXXX;
    F] GRANT CREATE VIEW, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TRIGGER to XXXXX;
    G] GRANT ALTER ANY TABLE to XXXXX;
    H] GRANT ALTER ANY PROCEDURE to XXXXX;
    I] GRANT ALTER ANY TRIGGER to XXXXX;
    J] GRANT DELETE ANY TABLE to XXXXX;
    K] GRANT DROP ANY PROCEDURE to XXXXX;
    L] GRANT DROP ANY TRIGGER to XXXXX;
    M] GRANT DROP ANY VIEW to XXXXX;
    4. Command to connect to the user using the windows command prompt
    sqlplus "UserName"/"Password"@"IPAddress":"PORT"/"PluggableDatabaseName"
    5. To View ConnectionName and PluggableName: -
    a] "show con_name"
    b] "show pdbs".
    Make sure to connect to "system" to access the command "show pdbs"
    6. To check all the users, use the command:-
    "select * from all_users";
    Keywords:
    #onlineclass #computerprogramming #online #onlinetutorials #onlineearning #onlinebusiness #onlinegaming #class #classes #free #freeclasses #training #database #oracle #oracledatabasetutorial #oracledatabase #createuser #pluggabledatabase

Комментарии • 33

  • @manisankarutube
    @manisankarutube Год назад +4

    I have suffered a lot with Oracle 21c Sql Plus connection and user creation, Your Explanation is great, thank you so much.

  • @indiemery8049
    @indiemery8049 Год назад +1

    thank you so much, i couldnt create the user because of c##, this was very helpful

  • @kanchanadeviraju7365
    @kanchanadeviraju7365 8 месяцев назад

    Even I have got lot of connection issues in oracle 21c b/w Sql Developer and SQL*Plus , This video contains answer for all my questions, thanks so much!!

  • @avis7406
    @avis7406 8 месяцев назад

    Very informative video!! Thanks. Was facing issues understanding Oracle terminologly from a MySQL background.

  • @Maya-sv1pz
    @Maya-sv1pz 3 месяца назад +1

    you are the best! most accurate method. Subscribed!

  • @Ahmad_Hamdy_Hamdeen
    @Ahmad_Hamdy_Hamdeen Год назад +1

    Nice explain and thank you for put the code in description box
    a lot of thanks ❤

  • @edwinquevedo3958
    @edwinquevedo3958 Год назад +2

    Thank you for the explanation!

  • @marcelobeani
    @marcelobeani Год назад +2

    Just want to say thanks man. Really nice video. Save me here. :)

  • @nickfromsibar007
    @nickfromsibar007 Год назад

    Thanks, I am a newbie, and I was able to follow.

  • @Tasmiya-m2c
    @Tasmiya-m2c Год назад

    Excellent Explanation ...sir make video for dropping user

  • @karunadhamapurkar4790
    @karunadhamapurkar4790 10 месяцев назад

    Nice explanation

  • @Tasmiya-m2c
    @Tasmiya-m2c Год назад

    Excellent Explanation...sir kindly make video for how to delete users

  • @wilsonoxilus2730
    @wilsonoxilus2730 Год назад +1

    Great Job

  • @adityamalguri7548
    @adityamalguri7548 4 месяца назад

    bro when i am trying to connect user of pdb then it just wont connect sometime it says that my user doesnt exist but it exist and some time it says about username and password but all i entered is correct . dont know how to resolve this help me

  • @stanleymothukuri7166
    @stanleymothukuri7166 Год назад

    Thank you - Excellent

  • @karunadhamapurkar4790
    @karunadhamapurkar4790 10 месяцев назад

    Tried to login from cmd sqlplus error user is not connected to oracle. Login denied

  • @princezen6849
    @princezen6849 Год назад +1

    when I try to do the cmd step it shows ora-12504
    if anyone has a solution

    • @IntegrationAnarchy
      @IntegrationAnarchy  Год назад

      Let us figure it out. What do you think, ora-12504 means? Did u do some research on it?

    • @princezen6849
      @princezen6849 Год назад +1

      @@IntegrationAnarchy it’s say that the listener wasn’t given the service name but when I go to the file everything looks like the solve I found on oracle website and stack overflow but the message come back when I try again

    • @IntegrationAnarchy
      @IntegrationAnarchy  Год назад

      @@princezen6849 Let's do 1 thing, try installing older version and see what is happening at the lower version.

  • @ranjithparuchuri6463
    @ranjithparuchuri6463 Год назад +1

    nicely explained ,bro. i m getting this error for me ORA-01031: insufficient privileges while granting all privileges to a new user in pdb after connecting to pdb. could you clarify this doubt ??

    • @IntegrationAnarchy
      @IntegrationAnarchy  Год назад

      Let us figure it out. What do you think, ora-01031 means? Did u do some research on it?

  • @SergieArizandieta
    @SergieArizandieta Год назад +1

    n well how can i delete a user n his connection?