How to truncate the table with cascade option?

I tried "truncate table cascade
but I got the error storage keyword is missing (says either drop storage or reuse storage)
Can any one help me out.

Showing Answers 1 - 6 of 6 Answers

if u want to delete a table with constraints i think u need to first disable the constraints on the table and the use
truncate table <table_name>;

alter table <table_name>
disable constraint <constraint_name> primary key cascade;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions