Valid 1Z0-052 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-052 Exam! ExamDiscuss.com now offer the newest 1Z0-052 exam dumps, the ExamDiscuss.com 1Z0-052 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-052 dumps with Test Engine here:
A constraint in a table is defined with the INITIALLY IMMEDIATE clause. You executed the ALTER TABLE command with the ENABLE VALIDATE option to enable the constraint that was disabled. What are the two effects of this command? (Choose two.)
Correct Answer: A,D
Explanation/Reference: Explanation: * Specify ENABLE if you want the constraint to be applied to the data in the table. * ENABLE VALIDATE specifies that all old and new data also complies with the constraint. An enabled validated constraint guarantees that all data is and will continue to be valid (not B). If any row in the table violates the integrity constraint, the constraint remains disabled and Oracle returns an error (A). If all rows comply with the constraint, Oracle enables the constraint. Subsequently, if new data violates the constraint, Oracle does not execute the statement and returns an error indicating the integrity constraint violation. Note: * Specify INITIALLY IMMEDIATE to indicate that Oracle should check this constraint at the end of each subsequent SQL statement. Incorrect: Not C: Specify INITIALLY DEFERRED to indicate that Oracle should check this constraint at the end of subsequent transactions.