Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

do9wnload/upload using delphi

Status
Not open for further replies.

z222

Programmer
Sep 24, 2003
2
0
0
US
Hi;
I need to write a Delphi program to download entire oracle data base then upload it to MS SQL data base, could any body help on that?
 
I'd suggest skipping the delphi step altogether, and writing a Data Transformation Package in the SQL server to grab the Oracle data directly.
 
Or dump the data to text and import it, assuming the DTP fails or looks too hard.

But if you have to write the program (for school or something), it's not too hard. Put two TDatabase components on a form, link each to a TQuery, and go from there. You can speed things up by using direct data acess components, but the BDE approach will work most easily.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top