vote up 3 vote down star

Using MSSQL2005, Can I truncate a table with a foreign key constraint if I first truncate the child table(the table with the primary key of the FK relationship)?

I know I can use a DELETE without a where clause and then RESEED the identity OR

Remove the FK, truncate and recreate but I thought as long as you truncate the child table you'll be OK however I'm getting a

"Cannot truncate table 'TableName' because it is being referenced by a FOREIGN KEY constraint."

error.

flag

55% accept rate

4 Answers

vote up 14 vote down check

Correct; you cannot truncate a table which has an FK constraint on it.

Typically my process for this is:

  1. Drop the constraints
  2. Trunc the table
  3. Recreate the constraints.

(All in a transaction, of course.)

Of course, this only applies if the child has already been truncated. Otherwise I go a different route, dependent entirely on what my data looks like. (Too many variables to get into here.)

The original poster determined WHY this is the case; see this answer for more details.

link|flag
vote up 4 vote down

From what I have been told because TRUNCATE TABLE is a DDL command it cannot check to see whether the records in the table are being referenced by a record in the child table. This is why DELETE works and TRUNCATE TABLE doesn't, because the database is able to make sure that it isn't being referenced by another record.

link|flag
I just knew that it was the behavior; I never knew the why; thanks for that update. – John Rudy Oct 31 '08 at 15:40
vote up 0 vote down

is there only one FK reference from your main table? Can you post the schema? have your tried a query to join the main take and the FK table to find what is actually used?

Not really enough info here.

link|flag
vote up 0 vote down

Let's see.

Every Order has a Customer.

  • You cannot delete Customers while they still have Orders.
  • You can delete Orders.

You sound like you refering to Customer as the child table, when here it's really the parent.

If you go through the process of "drop FK, truncate table, create FK". The last step will fail, because you have no Primary Key for the Foreign Key to relate to.

link|flag
2  
He's already truncating the child table. It's not a matter of not being able to delete a master which has children; but rather the fact that SQL doesn't allow truncating at all if you have FKs defined. – John Rudy Oct 31 '08 at 15:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.