Revoke Permissions : Revoke Permission « User Previliege « Oracle PL / SQL






Revoke Permissions

   
SQL>
SQL>
SQL> CREATE USER Alice IDENTIFIED BY simplepassword;

User created.

SQL>
SQL> GRANT SELECT, INSERT ON emp TO Alice WITH GRANT OPTION;
SQL>
SQL> REVOKE INSERT ON emp FROM Alice;
SQL>
SQL>
SQL> drop user alice;

User dropped.

SQL>

   
    
    
  








Related examples in the same category

1.Revoking Object Privileges
2.Revoke Permissions with Cascade