Oracle SQL Assignments
Oracle SQL Assignments
Note : Currently we are using default user name SYS and password(password will be at the time
of oracle database installation will be provided).
We can create our own user’s name and password in oracle database to login to work with oracle
database.
Here are the steps given blow to follow and how to create your new user’s name and password in
oracle database. From next time you use this user name and password to login into oracle
database.
Step 1: (To this you have to first login with sys user name and password. Once new user is
created then you can login with new user from next time)
1.ALTER SESSION SET "_ORACLE_SCRIPT" = true;
After executing the above 1 and 2 statement successfully the new user name and password
created.
Note: User is created but this user is a dummy user because this user is not having permission to
connect to database and create new tables in the database. So, permissions must be given to the
user (veeramani) by using the “grant” command by dba(system). Every user in the oracle server
is called “schema”.
Assignment :