using MSDE so can't use DTS package builder
I need to copy data from TableA on database X to TableB on database Y
i have set the IDENTITY_INSERT to ON
but the query pane does not like the following so what are you supposed to do? ... probably an easy answer...
SET IDENTITY_INSERT ON
INSERT INTO Y.dbo.TableB SELECT * FROM X.dbo.TableA
SET IDENTITY_INSERT OFF