Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to delete a record from a SQL Server 2005 Database and am running into a bizarre error that I hope someone can shed some light on. I have created an analogous situation below:

Project Table

PROJECT_ID
PROJECT_NAME
... etc.

Task Table

TASK_ID
TASK_DESCRIPTION
... etc.
PROJECT_ID (FK)

The bizarre part is that when I attempt to remove a Project record, it throws a reference constraint error on the Task table for the PROJECT_ID column. However, There are no tasks that point back to the Project record that I attempt to delete.

This fails to work in both SQL Server 2005 Management Studio and through JDBC.

I welcome any comments/answers besides 'WTF?' so that I can research various tangents toward a potential answer.

share|improve this question
Do you have any triggers on the table that might be causing this error? Also have you treble checked there is no corresponding project_id in tasks, that the FK being violated is the one you think it is, that the FK definition is correct etc. – Martin Smith Oct 21 '11 at 13:45
1  
Could you run a script, similar to the one at the end of this comment, in SSMS with Results to Text option set (Ctrl+T), then take a screenshot including both the script and the Message window, and post it here? This is just for people to be sure you haven't missed anything and the error is really an odd one. Here's the script: DECLARE @ID int; SET @ID = <hardcoded_project_id_to_delete>; SELECT p.PROJECT_ID, t.TASK_ID FROM <project_table> p LEFT JOIN <task_table> t ON p.PROJECT_ID = t.PROJECT_ID WHERE p.PROJECT_ID = @ID; DELETE FROM <project_table> WHERE PROJECT_ID = @ID; – Andriy M Oct 21 '11 at 13:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.