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?
- PUBLIC should be replaced with specific usernames.
- ALL should be replaced with a list of specific privileges.
- WITH GRANT OPTION should be added to the statement.
- Separate GRANT statements are required for the ORDERS and ORDER_ITEMS tables.
Answer(s): D
Reference:
http://docs.oracle.com/javadb/10.8.3.0/ref/rrefsqljgrant.html
Reveal Solution Next Question