FahmidasClassroom

Learn by easy steps

By default, we make a connection with the database by the username and password of any default user. But when we need to create any new database with separate database schema then it is necessary to use different username and password. You can create a new user from the command line by using SQL PLUS or from the graphical user interface by using SQL Developer. This tutorial will help you to learn the way of creating a new user for Oracle 12c from SQL Developer.

Create new database user

Follow the following steps to create a new Oracle database user.

  1. Open SQL Developer and create a new database connection with any default username and password. Click on the connect button to make the connection.

p1

  1. Run the following SQL command before creating any new user for the newly created database to avoid SQL error. Click on the commit button for the confirmation.

alter session set “_ORACLE_SCRIPT”=true;

p2

  1. From the left plane, expand the database connection and open the Other Users folder. Here, you will get the list of all existing username.

p3

  1. Right click on the folder and select Create Users… from the pop-up menu.

p4

  1. Type the username and password in user tab of create user dialog box.

p5


SmartThings Monitor Your Home or Office while away at SmartHome.com Order here!

  1. Set all permissions for admin in Granted Roles tab by clicking Admin All button.

p6

  1. Click on the Apply button to complete the user creation task.

p7

  1. Now disconnect the database.

p8

SmartHome 20% OFF NOW!

  1. Connect again by using a new username and password.

p9

If you face any problem then you can check the following video.

Your new database connection with the new user is now ready to use. Good Luck.