I have a constraint (named INVS_ITEM_LOCATIONS_PK
) in my SQL Server 2005 table.
How can I disable it?
I have a constraint (named INVS_ITEM_LOCATIONS_PK
) in my SQL Server 2005 table.
How can I disable it?
I am not sure if you can DISABLE a constraint, maybe you need to DROP the constraint?
ALTER TABLE INVS_ITEM_LOCATIONS NOCHECK CONSTRAINT INVS_ITEM_LOCATIONS_PK