OCP 12c最新考试原题及答案(071-3)

3、(4-10) choose the best answer:
The user SCOTT who is the owner of ORDERS and ORDER_ITEMS tables issues this GRANT command:
GRANT ALL
ON orders, order_items
TO PUBLIC;
What must be done to fix the statement?
A) ALL should be replaced with a list of specific privileges.
B) WITH GRANT OPTION should be added to the statement.
C) PUBLIC should be replaced with specific usernames.
D) Separate GRANT statements are required for the ORDERS and ORDER_ITEMS tables.

Answer:D
(SQL> grant all on sales,products to public;
grant all on sales,products to public
*
第 1 行出现错误:
ORA-00905: 缺失关键字
)

猜你喜欢

转载自blog.51cto.com/13854012/2349495