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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Extract Datas from Oracle to .. Oracle

Status
Not open for further replies.

Benouche

Programmer
Aug 6, 2002
48
FR
Hello,

i need to extract (doing some aggregation) a table from an Oracle database to load it to another Oracle db.

How can I do it ?

Any easy/quick solution hotly welcome !!!

Benouche
 
You may use export/import. If they're connected via dblink, you may also use COPY or CREATE AS SELECT commands.
 
Hi,
If you want to do some aggregation first, then exp/imp are not what you want to use..create a view with the aggregation you want, then use the
Code:
Create table@otherinstanceusingdblink 
as select * from Thisnewviewname;
[code]
where  [i]otherinstanceusingdblink [/i]is a pre-created database link using a connection that can create tables in the remote instance.

[profile]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top