John Smith is a newly joined team member in the Marketing team who currently has access read access to sales tables but does not have access to delete rows from the table, which of the following commands help you accomplish this?

John Smith is a newly joined team member in the Marketing team who currently has access read access to sales tables but does not have access to delete rows from the table, which of the following commands help you accomplish this?
A . GRANT USAGE ON TABLE table_name TO [email protected]
B. GRANT DELETE ON TABLE table_name TO [email protected]
C. GRANT DELETE TO TABLE table_name ON [email protected]
D. GRANT MODIFY TO TABLE table_name ON [email protected]
E. GRANT MODIFY ON TABLE table_name TO [email protected]

Answer: E

Explanation:

The answer is GRANT MODIFY ON TABLE table_name TO [email protected], please note INSERT, UPDATE, and DELETE are combined into one role called MODIFY. Below are the list of privileges that can be granted to a user or a group, SELECT: gives read access to an object.

CREATE: gives the ability to create an object (for example, a table in a schema).

MODIFY: gives the ability to add, delete, and modify data to or from an object.

USAGE: does not give any abilities, but is an additional requirement to perform any action on a schema object.

READ_METADATA: gives the ability to view an object and its metadata.

CREATE_NAMED_FUNCTION: gives the ability to create a named UDF in an existing catalog or schema.

MODIFY_CLASSPATH: gives the ability to add files to the Spark classpath.

ALL PRIVILEGES: gives all privileges (is translated into all the above privileges

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments