Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to dump table contents as SQL statements?

Re: How to dump table contents as SQL statements?

From: duncanz <duncanzNOduSPAM_at_dds.nl.invalid>
Date: Wed, 26 Jan 2000 05:25:41 -0800
Message-ID: <11f733ec.70d2e440@usw-ex0110-075.remarq.com>


Hi, you can maybe also use Oracle SQL*Plus copy facility. If you can reach both databases from the same client then u can use following syntax:

copy from <source_username>@<source_alias> - to <target_username>@<target_alias> -
append <target_table> -
using <select_stmnt_on_source>

be sure not to forget the dash at the end of every line, unless it's the last.

enjoy.

Duncan

Received on Wed Jan 26 2000 - 07:25:41 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US