Insert Into where there is an Identity Constraint
--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