© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Purvi Barot
Software Engineer
Before Importing date execute the below query to set identity insert on:
SET IDENTITY_INSERT TableName ON
Then do the import operations. After importing date execute the below query to set identity insert off:
SET IDENTITY_INSERT TableName OFF