I got error “The DELETE statement conflicted with the REFERENCE constraint”

前端 未结 4 715
醉酒成梦
醉酒成梦 2020-12-01 23:08

I tried to truncate a table with foreign keys and got the message:

\"Cannot truncate table because it is being referenced by a FOREIGN KEY co

相关标签:
4条回答
  • 2020-12-01 23:48

    You are trying to delete a row that is referenced by another row (possibly in another table).

    You need to delete that row first (or at least re-set its foreign key to something else), otherwise you’d end up with a row that references a non-existing row. The database forbids that.

    0 讨论(0)
  • 2020-12-01 23:54

    Have you considered applying ON DELETE CASCADE where relevant?

    0 讨论(0)
  • 2020-12-01 23:57

    The error means that you have data in other tables that references the data you are trying to delete.

    You would need to either drop and recreate the constraints or delete the data that the Foreign Key references.

    Suppose you have the following tables

    dbo.Students
    (
    StudentId
    StudentName
    StudentTypeId
    )
    
    
    dbo.StudentTypes
    (
    StudentTypeId
    StudentType
    )
    

    Suppose a Foreign Key constraint exists between the StudentTypeId column in StudentTypes and the StudentTypeId column in Students

    If you try to delete all the data in StudentTypes an error will occur as the StudentTypeId column in Students reference the data in the StudentTypes table.

    EDIT:

    DELETE and TRUNCATE essentially do the same thing. The only difference is that TRUNCATE does not save the changes in to the Log file. Also you can't use a WHERE clause with TRUNCATE

    AS to why you can run this in SSMS but not via your Application. I really can't see this happening. The FK constraint would still throw an error regardless of where the transaction originated from.

    0 讨论(0)
  • 2020-12-02 00:01

    To DELETE, without changing the references, you should first delete or otherwise alter (in a manner suitable for your purposes) all relevant rows in other tables.

    To TRUNCATE you must remove the references. TRUNCATE is a DDL statement (comparable to CREATE and DROP) not a DML statement (like INSERT and DELETE) and doesn't cause triggers, whether explicit or those associated with references and other constraints, to be fired. Because of this, the database could be put into an inconsistent state if TRUNCATE was allowed on tables with references. This was a rule when TRUNCATE was an extension to the standard used by some systems, and is mandated by the the standard, now that it has been added.

    0 讨论(0)
提交回复
热议问题