Disabling foreign key constraint, still can’t truncate table? (SQL Server 2005)
You can’t truncate the table if there is any foreign key referencing it, including disabled constraints. You either need to drop the foreign key constraints or use the DELETE command.