How do I disable the restriction?
I have a constraint (named INVS_ITEM_LOCATIONS_PK
) on my SQL Server 2005 table.
How do I disable it?
+2
Domnic
source
to share
2 answers
ALTER TABLE INVS_ITEM_LOCATIONS NOCHECK CONSTRAINT INVS_ITEM_LOCATIONS_PK
0
Domnic
source
to share
I'm not sure if you can disable the restriction, maybe you need to SPECIFY the restriction?
+3
Mark redman
source
to share