I know you cannot drop a table that has active foreign key constraints.
So I was wondering is it safe to:
ALTER TABLE myTable NOCHECK CONSTRAINT all
DROP TABLE myTable
Rather than dropping the constraints first, table dropping:
ALTER TABLE myTable DROP Constraint FK_MyTable_AnotherTable
ALTER TABLE myTable DROP Constraint FK_MyTable_YetAnotherTable
DROP TABLE myTable
