Related questions
Question 31 - ADA-C01 discussion
An Administrator has a table named SALES_DATA which needs some edits, but the Administrator does not want to change the main table data. The Administrator decides to make a transient copy of this table and wants the transient table to have all the same permissions as the original table.
How can the Administrator create the transient table so it inherits the same permissions as the original table, and what considerations need to be made concerning the requirements? (Select TWO).
A.
Use the following SQL command: create transient table TRANSIENT_SALES_DATA as select * from SALES_DATA;
B.
Use the following SQL command: create transient table TRANSIENT SALES DATA as select * from SALES_DATA copy grants;
C.
Use the following SQL commands: create transient table TRANSIENT_SALES_DATA like SALES_DATA copy grants; insert into TRANSIENT_SALES_DATA select * from SALES_DATA;
D.
Transient tables will persist until explicitly dropped and contribute to overall storage costs.
E.
Transient tables will be purged at the end of the user session and do not have any Fail-safe period.
Your answer:
0 comments
Sorted by
Leave a comment first