DataSet

  • Thread starter Thread starter Alejandra Parra
  • Start date Start date
How can I copy data from a "X" DB to a "Y" DB using DataSets?


How much data? If it's a lot of data, datasets aren't the way to go -
they'll suck up all the memory on your PC.

Try using Bulk Inserts if possible.
 
How do I do Bulk Inserts?

Lucas Tam said:
How much data? If it's a lot of data, datasets aren't the way to go -
they'll suck up all the memory on your PC.

Try using Bulk Inserts if possible.
 
Alejandra,
In addition to Lucas' comments on bulk copy, yes you can use Datasets to
copy between databases.

David Sceppa explains how to and gives some caveats in his book "Microsoft
ADO.NET - Core Reference" from MS Press.

If you are doing a lot with ADO.NET I strongly recommend Sceppa's book,
which is a good tutorial on ADO.NET as well as a good desk reference once
you know ADO.NET.

Hope this helps
Jay
 
Back
Top