Which three statements are true regarding the above command?

Examine the following statement that is used to modify the primary key constraint on the
SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE
VALIDATE; Which three statements are true regarding the above command? (Choose
three.)

Examine the following statement that is used to modify the primary key constraint on the
SALES table: SQL> ALTER TABLE SALES MODIFY CONSTRAINT pk DISABLE
VALIDATE; Which three statements are true regarding the above command? (Choose
three.)

A.
The index on the constraint is dropped.

B.
It allows the data manipulation on the table using INSERT/UPDATE/DELETE SQL
statements.

C.
It allows the loading of data into the table using SQL *Loader.

D.
The constraint remains valid.

E.
New data conforms to the constraint, but existing data is not checked.

Explanation:



Leave a Reply 1

Your email address will not be published. Required fields are marked *


mostramistra

mostramistra

SOURCE:https://docs.oracle.com/cd/B28359_01/server.111/b28286/clauses002.htm#SQLRF52163

DISABLE VALIDATE disables the constraint and drops the index on the constraint, but keeps the constraint valid. This feature is most useful in data warehousing situations, because it lets you load large amounts of data while also saving space by not having an index. This setting lets you load data from a nonpartitioned table into a partitioned table using the exchange_partition_clause of the ALTER TABLE statement or using SQL*Loader. All other modifications to the table (inserts, updates, and deletes) by other SQL statements are disallowed.

ANSWER A, C, D