I want to use DTS for data conversion; however I want to do something like the following T-SQL:
SET IDENTITY_INSERT ON
GO
SELECT
Id=CAST (c.Idn AS INTEGER),
I.e. I want to load the result identity field with the old data from the source table. DTS doesn't seem to allow me to have the multiple statements.
Suggestions for using DTS to accomplish this?
Thanks,
Al