What is REVOKE?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is REVOKE?
Rating:
REVOKE is a SQL statement that is used to revoke the privileges granted by using the GRANT statement. The syntax of the REVOKE statement is given below:
{ALL [PRIVILEGES] | permission [,...n]}
{
[ (column [,...n] )] ON {table | view}
| ON {table | view} [(column [,...n])]
| ON {stored_procedure | extended_procedure}
| ON {user_defined_function}
}
{TO | FROM}
security_account [,...n]
[CASCADE]
[AS {group | role}];
Rating:
Was this information helpful?
Other articles
- What is the REMOTE_OS_AUTHENT parameter?
- What is the iSQL*Plus interface?
- What is read consistency?
- What are triggering events?
- What is DBMS_FGA?