Created
January 14, 2016 17:07
-
-
Save csdear/2f7bc04babf63557e96f to your computer and use it in GitHub Desktop.
Insert Into where there is an Identity Constraint
This file contains hidden or 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
| --e.g. | |
| SELECT * FROM audit_log_type | |
| SET IDENTITY_INSERT audit_log_type ON | |
| INSERT INTO audit_log_type | |
| (audit_type, description) | |
| VALUES (12, 'Cancel Subscription') | |
| SET IDENTITY_INSERT audit_log_type OFF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment