Created
February 23, 2022 10:38
-
-
Save YonathanMeguira/934ba151a5e866b4b710fd53119c59e8 to your computer and use it in GitHub Desktop.
no_check_fk_restriction.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE AdventureWorks2012; | |
GO | |
ALTER TABLE Purchasing.PurchaseOrderHeader | |
NOCHECK CONSTRAINT FK_PurchaseOrderHeader_Employee_EmployeeID; | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment