I have a table with atleast 12 million rows of data in a table that looks like this:
Id (varchar(10) | Image (varbinary(max)
---------------- -------------------------
X123456789 | 0x....
1121132121 | 0x....
JF13232131 | 0x....
What would be an efficient way to move data from this table to another table in chunks. I'm writing a simple .net console app to do this and i fear that when i try to load all 12 million rows at once my app will crash.
Thanks for any help
Addendum #1: The source db is oracle and the destination db is sql server
Addendum #2: I'm also converting the image data from tiff to jpeg