SET IDENTITY_INSERT tableA ON
Devi creare un elenco di colonne per la tua dichiarazione INSERT:
INSERT Into tableA ([id], [c2], [c3], [c4], [c5] )
SELECT [id], [c2], [c3], [c4], [c5] FROM tableB
non come "INSERT Into tableA SELECT ........"
SET IDENTITY_INSERT tableA OFF