create a new user in oracle

Create a new user in oracle
==============================================

1.Login to the oracle with password using command

sql>conn username/password;

After login type the following command 
===============================================

sql>create user new_user_name identified by  password;

sql>create user sandeep identified by mishra;
here sandeep is my new user and mishra is the password

after creation of user the message will be displayed "User created".

Grant DBA permission to newly created user
===================================================
if you want the new user to grant the DBA then type the below command

sql>grant dba to user_name;

ex> sql>grant dba to sandeep;



#create new user in oracle
#grant dba to user in oracle

Comments

Popular posts from this blog

Git Commands With Output Log

Java Interview Preparation (conceptual)

Java 8 Function Interface