Which statement is true about TRUNCATE and DELETE?
Which statement is true about TRUNCATE and DELETE?
For large tables, TRUNCATE is faster than DELETE because TRUNCATE operations drop and re-create the table, which is a more efficient process compared to deleting rows one by one.
https://www.examtopics.com/discussions/oracle/view/15064-exam-1z0-071-topic-1-question-268-discussion/
B correct answer should be B
the exception to C is if the constraint is self referential which contradicts the user of 'never' in the statement
The correct answer is B (Truncate operations drop and re-create the table, which is much faster than deleting rows one by one, particularly for large tables)