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.
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