I've just added about 80 "missing" foreign keys to a legacy db and (unsurprisingly) the database re-create script now fails when dropping tables due to FK constraints. The strategy has always been to drop tables in a natural order and this has worked up to now. I don't want to maintain this approach and have tried disabling all FK constraints like this:
USE MYDB;
GO
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"
GO
DROP TABLE [dbo].[Table1]
DROP TABLE [dbo].[Table2]
DROP TABLE [dbo].[Table3]
...
exec sp_msforeachtable "ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"
GO
The problem is I'm still getting errors:
Msg 3726, Level 16, State 1, Line 17 Could not drop object 'dbo.Table1' because it is referenced by a FOREIGN KEY constraint. Msg 3726, Level 16, State 1, Line 18 Could not drop object 'dbo.Table2' because it is referenced by a FOREIGN KEY constraint.
Can anyone suggest what I'm doing wrong? I'm using SQL Server 2008 r2 on Windows 7.
Edit: I have noticed that I have a circular reference, i.e. Table1 has an FK to Table2, and vice versa, but even so....