25.You enabled Flashback Data Archive on the INVENTORY table. Which DDL operation is supported on
the table after enabling Flashback Data Archive?
A. Drop the table.
B. Partition the table
C. Truncate the table.
D. Add a column to the table.
E. Rename a column in the table.
DDL Statements on Tables Enabled for Flashback Data Archive
Flashback Data Archive supports only these DDL statements:
-
ALTERTABLEstatement that does any of the following:-
Adds, drops, renames, or modifies a column
-
Adds, drops, or renames a constraint
-
Drops or truncates a partition or subpartition operation
-
-
TRUNCATETABLEstatement -
RENAMEstatement that renames a table
Flashback Data Archive does not support DDL statements that move, split, merge, or coalesce partitions or subpartitions, move tables, or convert LONG columns to LOB columns.
For example, the following DDL statements cause error ORA-55610 when used on a table enabled for Flashback Data Archive:
-
ALTERTABLEstatement that includes anUPGRADETABLEclause, with or without anINCLUDINGDATAclause -
ALTERTABLEstatement that moves or exchanges a partition or subpartition operation -
DROPTABLEstatement
If you must use unsupported DDL statements on a table enabled for Flashback Data Archive, use theDBMS_FLASHBACK_ARCHIVE.DISASSOCIATE_FBA procedure to disassociate the base table from its Flashback Data
Archive. To reassociate the Flashback Data Archive with the base table afterward, use the DBMS_FLASHBACK_ARCHIVE.REASSOCIATE_FBA procedure.
根据官方文档,此题可选CDE,可根据D50081CN11文档,只能选D,且没有提到C是否支持。
综合一下,如果考试时单选则选D,如果多选则选CDE