Forzando l’inserimento di un campo ID si riceve l’errore:
Cannot insert explicit value for identity column in table 'table' when IDENTITY_INSERT is set to OFF
Per ovviare a ciò, basta eseguire:
SET IDENTITY_INSERT Table1 ONINSERT INTO Table1 .....SET IDENTITY_INSERT Table1 OFF
	
	Category:
	
		SQL