You have a custom role named 'TRANSFORM ROLE that needs to load data into a table called
'ORDERS'. You want to ensure that this role can only load data into this specific table and has no other privileges. The table is located in database 'SALES DB' and schema 'PUBLIC'. Which of the following grants provides the LEAST PRIVILEGED access required for 'TRANSFORM ROLE' to perform the data load operation using COPY INTO command?
Correct Answer: E
The INSERT privilege is required to load data into the table. USAGE privilege on the database and schema is required to access the table. SELECT is not required for COPY INTO operations, only INSERT. OWNERSHIP grants complete control and is overly permissive. ALL PRIVILEGES also grants more privileges than needed.