Skip to content

Instantly share code, notes, and snippets.

@MRdNk
Created March 6, 2013 09:24
Show Gist options
  • Select an option

  • Save MRdNk/5098026 to your computer and use it in GitHub Desktop.

Select an option

Save MRdNk/5098026 to your computer and use it in GitHub Desktop.
IDENTITY_INSERT example
-- SET IDENTITY_INSERT to ON.
SET IDENTITY_INSERT products ON
GO
-- Attempt to insert an explicit ID value of 3
INSERT INTO products (id, product) VALUES(3, 'garden shovel').
GO
SET IDENTITY_INSERT products OFF
@MRdNk

MRdNk commented Mar 6, 2013

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment