USER1 grants SELECT and UPDATE privileges on USER1.EMP to USER2。ide
SYS executes this command:ui
SQL> REVOKE SELECT ON user1.emp FROM user1;this
What will be the outcome?orm
A)It will succeed and USER2 will be unable to perform SELECT on USER1.EMP对象
B)It will succeed and USER2 will be unable to perform sELECT or UPDATE on USER1.EMP because updates require select be done internallyit
C)It will fail because sys can not revoke object privileges for other usersform
D)It will fail because USER1 owns USER1.EMPclass
Answer: Drequire
赵:属主对本身拥有的对象的权限不可被收回object