I need to Extract data from a SQL repository Process It and then save it in 2nd Repository. Nature of data:
Transfer selected users data, though the tables are similar in both repository but not same, and some amount of processing needs to be done on the data to be transferred.
The volume data is very large 5,00,000.
What technique should be used to transfer the data: Use Stored procedure through Link Server to transfer data. Use DTS - data transfer service (Since We have SQL server 2000 we can’t use SSIS). Use C# to extract data from repository A, Process it and call an SP to insert data in repository B.
I am not sure which way to go, I would like to process the data in optimal and robust manner.
Any suggestion will be greatly appreciated.
Thanks in Advance.