choose two.session
·MANAGER is an existing role with no privileges or roles.ide
·EMP is an existing role containing the CREATE TABLE privilege.對象
·EMPLOYEES is an existing table in the HR schema.it
Which two commands execute successfully?io
A) GRANT CREATE SEQUENCE TO manager, emp;table
B) GRANT SELECT, INSERT ON hr.employees TO manager WITH GRANT OPTION:class
C) GRANT CREATE TABLE, emp TO manager;權限
D) GRANT CREATE TABLE, SELECT ON hr. employees TO manager ;command
E) GRANT CREATE ANY SESSION, CREATE ANY TABLE TO manager;tab
Answer:AC
(解析:
BAnswer:報錯:ORA-01926: cannot GRANT to a role WITH GRANT OPTION
DAnswer::不能同時受權系統權限和對象權限給角色
EAnswer::沒有 create any session 的權限
)