Name
COPY
Synopsis
The COPY command uses SQL*Plus as a conduit for transferring data between two Oracle databases.
Warning
COPY is not being enhanced to handle datatypes and features introduced with or after Oracle8i Database. COPY is a deprecated command and may be removed in a future release of SQL*Plus.
Syntax
COPY [FROMconnection] [TOconnection] {APPEND | CREATE | INSERT | REPLACE}destination_table[(column_list)] USINGselect_statement
Parameters
- [FROM connection] [TO connection]
Specifies the source and target databases for the copy. The database to which you are connected is the default in both cases and will be used as both source and destination unless you specify otherwise.
- connection
Is the login information to use when connecting to the other database. This must be in the typical username/password@connect_string format.
- APP[END]
Causes SQL*Plus to insert the copied rows into the destination table, creating it first if necessary.
- CRE[ATE]
Causes SQL*Plus to copy the data only if the destination table is a new table. If the destination table exists, the COPY command will abort.
- INSERT
Causes SQL*Plus to insert the copied rows into the destination table only if it exists. If the destination table is a new table, the COPY command will abort.
- REP[LACE]
Causes SQL*Plus to drop the destination table if it currently exists. A new table is created, and the data are copied.
- destination_table
Is the name of the table to which you want to copy the data.
- column_list
Specifies column names to use when ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access