Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-03-21 : 09:19:11
|
| Prashant writes "Hi How do I disable the 'on delete cascade' option that has already been set for a table that references a table containing the primary key column?regdsPrashant" |
|
|
Jay99
468 Posts |
Posted - 2002-03-21 : 09:35:55
|
| Drop the constraint.Jay<O> |
 |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2002-03-21 : 10:48:17
|
| Or alter it to "ON DELETE NO ACTION". |
 |
|
|
|
|
|