SQL> alter session set container=PDB1 ;
Session altered.
SQL> create table dba_table1 as select * from dba_tables where 1=1 ;
Table created.
SET ARRAYSIZE 1000 COPYCOMMIT 2
copy from system/sys@//192.168.1.120:1521/pdb1.localdomain insert dba_table1 using select * from dba_tables ;
Array fetch/bind size is 1000. (arraysize is 1000)
Will commit after every 2 array binds. (copycommit is 2)
Maximum long size is 80. (long is 80)
2185 rows selected from system@//192.168.1.120:1521/pdb1.localdomain.
2185 rows inserted into DBA_TABLE1.
2185 rows committed into DBA_TABLE1 at DEFAULT HOST connection.
SQL> select count(*) from dba_table1 ;
COUNT(*)
----------
4369
SQL>
SET ARRAYSIZE 1000 COPYCOMMIT 2
copy from system/sys@//192.168.1.120:1521/pdb1.localdomain insert dba_table1 using select * from dba_tables ;
Array fetch/bind size is 1000. (arraysize is 1000)
Will commit after every 2 array binds. (copycommit is 2)
Maximum long size is 80. (long is 80)
2185 rows selected from system@//192.168.1.120:1521/pdb1.localdomain.
2185 rows inserted into DBA_TABLE1.
2185 rows committed into DBA_TABLE1 at DEFAULT HOST connection.
SQL> select count(*) from dba_table1 ;
COUNT(*)
----------
6554
SQL>
copy from system/sys@//192.168.1.120:1521/pdb1.localdomain append dba_table1 using select * from dba_tables ;
copy from system/sys@//192.168.1.120:1521/pdb1.localdomain append dba_table1 using select * from dba_tables ;SQL>
Array fetch/bind size is 1000. (arraysize is 1000)
Will commit after every 2 array binds. (copycommit is 2)
Maximum long size is 80. (long is 80)
2185 rows selected from system@//192.168.1.120:1521/pdb1.localdomain.
2185 rows inserted into DBA_TABLE1.
2185 rows committed into DBA_TABLE1 at DEFAULT HOST connection.
SQL> select count(*) from dba_table1 ;
COUNT(*)
----------
8739
===
SQL> COPY FROM system/sys@//192.168.1.120:1521/pdb1.localdomain TO system/sys@//192.168.1.120:1521/pdb1.localdomain APPEND DBA_TABLE1 using select * from dba_tables ;
Array fetch/bind size is 1000. (arraysize is 1000)
Will commit after every 2 array binds. (copycommit is 2)
Maximum long size is 80. (long is 80)
Table DBA_TABLE1 created.
2186 rows selected from system@//192.168.1.120:1521/pdb1.localdomain.
2186 rows inserted into DBA_TABLE1.
2186 rows committed into DBA_TABLE1 at system@//192.168.1.120:1521/pdb1.localdomain.
SQL>
Search This Blog
Total Pageviews
Friday, 7 March 2025
Oracle copy command !!!!
Oracle copy command !!!!
==================================================================
Subscribe to:
Comments (Atom)
Oracle DBA
anuj blog Archive
- ► 2011 (362)
