DataSet

  • Thread starter Thread starter Alejandra Parra
  • Start date Start date
A

Alejandra Parra

How can I copy data from a "X" DB to a "Y" DB using DataSets?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top