vote up 1 vote down star

Hello All Friends..........

Transferring data from one database to another

flag

30% accept rate
1  
Is it transferring the entire data (all objects) from one DB to other? Or just one table values to other? – Guru Sep 3 at 14:44
1  
more info please – Mauricio Scheffer Sep 3 at 15:18
1  
Need some detail here – bogertron Sep 3 at 15:43

closed as not a real question by Mason Wheeler, Craig Stuntz, gabr, JosephStyons, mghie Sep 3 at 20:27

5 Answers

vote up 2 vote down

If both databases are from the same DBMS kind (i.e. both SQL Server, both Oracle, both Interbase, etc), I'd user a vendor specific tool for it (for instance backup/restore).

Otherwise, I'd use a generic tool for this, for instance, the Datapump portion of Database Workbench.

link|flag
vote up 0 vote down

Datapump help to you?

link|flag
Is it Datapump from Oracle? Or is there one available for Delphi too? – Guru Sep 3 at 14:46
1  
Yes, datapump tool coming with Delphi (at least in Proffesional edition, may be in other to). Can simple ETL operations between any BDE datasources. – Alexey Sviridov Sep 3 at 16:11
vote up 0 vote down

Using Datapump you can import/export the entire schema's objects from on Database to other database. I guess this is for a tool for Oracle databases. You said, you have Delphi, in that case, you might try creating a database link for the source database in target database.

link|flag
vote up 0 vote down

If you are doing it as one-off thing, look at Access.

  1. Link tables from the 2 databases.
  2. Query your source table using the visual query builder
  3. Change the query to an append query
  4. Choose the table and fields to append to
  5. Run the query

Easy

link|flag
vote up 0 vote down

Use SqlYog. Great piece of software that'll let you manage all of this

or you can write a script to

  1. download table into a file
  2. Load data on the file but on a different server

or do on the fly inserts & figure out how to re-create the table

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.