Oracle 11G OCP 1Z0-052 155

LuiseDalian發表於2014-07-23
(155)The user HR owns the EMP table. The user HR grants privileges to the user SCOTT by using this command:

SQL> GRANT SELECT,INSERT,UPDATE ON emp TO scott WITH GRANT OPTION;

The user SCOTT executes this command to grant privileges to the user JIM: SQL> GRANT SELECT,INSERT,UPDATE ON hr.emp TO jim;

Now, the user HR decides to revoke privileges from JIM using this command: SQL> REVOKE SELECT,INSERT,UPDATE ON emp FROM jim;

Which statement is true after HR issues the REVOKE command?

A.The command fails because SCOTT still has privileges.

B.The command succeeds and privileges are revoked from JIM.

C.The command fails because HR cannot revoke the privileges from JIM.

D.The command succeeds and only HR has the privilege to perform the SELECT, INSERT, and UPDATE operations on the EMP table.

答案:(C)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17013648/viewspace-1224981/,如需轉載,請註明出處,否則將追究法律責任。

相關文章