Oracle

Revoking Object Privileges

Figo Kim 2007. 1. 9. 20:53
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

  • REVOKE : To revoke privileges granted to other users
  • Privileges granted to others through the WITH GRANT OPTION clause are also revoked.
Syntax]
REVOKE {privilege [, privilege ...] | ALL }
ON   object
FROM {user [,user....]  role | PUBLIC |
[CASCADE CONSTRAINTS];


CASCADE is required to remove any referential integrity constraints made to the CONSTRAINTS object by means of the REFERENCES privileges.

ex)
REVOKE   select, insert
ON           departments
FROM      scott;


** If you drop the user account without revoking privileges from it, then the system privileges granted by this user to other users are not affected by this action. To drop a user, you have to check about privileges granted to the user.

'Oracle' 카테고리의 다른 글

The guideline of Modifying a Column  (0) 2007.01.09
Revoking Object Privileges  (0) 2007.01.09
Confirming Privileges Granted  (0) 2007.01.09
Confirming Privileges Granted  (0) 2007.01.09
Privileges  (0) 2007.01.06