Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does Cascade mean

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
0
0
CA
If I were to perform a DROP TABLE table_name CASCADE command, what would the CASCADE operator do ??
Thanks
 
Hi,

CASCADE operator is used in Master-Detail relational tables. When you delete a row from the Master table, it automatically deletes all its related rows from the Details table.

Thanks
 
When dropping a table CASCADE specifies that you also want to delete all other definitions (such as constraints, indexes, triggers, views, etc.) that refer to the named table.

[sup]Everywhere is within walking distance if you have the time. ~Steven Wright[/sup]
Consultant/Custom Forms & PL/SQL - Oracle 8.1.7 - Windows 2000
[sup]When posting code, please use TGML to help readability. Thanks![sup]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top