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!

Importing Exporting data from Orale 8.0

Status
Not open for further replies.

cyberdyne

Programmer
May 1, 2001
173
IN
I want a solution for importing and exporting data comming from different tables of oracle database. Oracle being used is verson 8.0

The basic Idea is
1. To transfer data from one office to another.
2. To take backups.

What I require is that for a perticular record data is scattered in multiple tables with one common field in each table. Now I want this whole record to be exported, and then Imported later at some other place. The table structure is same at both ends. While importing this data should be appended to other place as there may some data exsisting in tables.

All you brains can u help me ? This would be of great help
Thank you.

I can be contacted at cyberdyne@softhome.net
 
There may be an easier way that I'm not thinking of, but my suggestion is this...

Since you are pulling data from multiple tables on the source database, and you aren't wanting all records, I would do this...
create a script to select the rows you want, delimit fields by pipe symbol(|) or comma (or something like that), and spool results to file - be sure to turn off column headings, etc...

Then, you can send the file to the other machine, and use sqlload to pull the data into a table.
If this joined data is not in the format you want, you can have yet another script to pull the data out that you need and place it in the other tables.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top