1) Write
the syntax for Grant, Revoke and create user with appropriate option.

CREATE USER “<dba_set>”
PROFILE
“<default>”
IDENTIFIED
BY “<password>”
DEFAULT TABLESPACE
“SYSTEM”
TEMPORARY
TABLESPACE “TEMP”
ACCOUNT
UNLOCK;

GRANT object privileges
ON object name
FROM user name;

REVOKE
object privileges
ON object
name
FROM user
name;
2) Create
a user Nishant with appropriate password.


3) Give
the permission to user Nishant to view records from the table account along with
all option to further grant permission on this table to other user.


4) Give
the user Nishant to all data manipulation privileges or permission on the table P1
without an option to further grant permission to other user.


0 Comments