In SQL Server 2005 or later, you can also examine DDL triggers that would even allow certain statements to be denied DROP TABLE....
CREATE TRIGGER safety
ON DATABASE
FOR DROP_TABLE
AS
PRINT 'You must disable Trigger "safety" to drop tables!'
ROLLBACK
;
This would basically just prevent anyone from dropping the table
source
share