System Privileges : System Privileges « User Privilege « Oracle PL/SQL Tutorial






A system privilege allows a user to perform certain actions within the database-such as executing DDL statements.

Commonly Used System Privileges are

System PrivilegeAllows You to
CREATE SESSIONConnect to a database.
CREATE SEQUENCECreate a sequence.
CREATE SYNONYMCreate a synonym.
CREATE TABLECreate a table.
CREATE ANY TABLECreate a table in any schema.
DROP TABLEDrop a table.
DROP ANY TABLEDrop a table from any schema.
CREATE PROCEDURECreate a stored procedure.
EXECUTE ANY PROCEDUREExecute a procedure in any schema.
CREATE USERCreate a user.
DROP USERDrop a user.
CREATE VIEWCreate a view.










36.9.System Privileges
36.9.1.System Privileges
36.9.2.Granting System Privileges to a User
36.9.3.Use WITH ADMIN OPTION to enable a user to grant a privilege to another user
36.9.4.The EXECUTE ANY PROCEDURE can then be granted to another user
36.9.5.Grant a privilege to all users by granting to PUBLIC
36.9.6.Revoke system privileges from a user using REVOKE