SQL> create table xwtest.test as select * from dba_tables;
Table created.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 -
64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@xwtest ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Wed Nov 20 02:20:04 2019
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> delete from xwtest.test;
2808 rows deleted.
SQL> commit;
Commit complete.
SQL> insert into xwtest.test select * from dba_tables where owner='SYS';
1015 rows created.
SQL> commit;
Commit complete.
SQL> delete from xwtest.test;
1015 rows deleted.
SQL> insert into xwtest.test select * from dba_tables where owner='SYS';
1015 rows created.
SQL> delete from xwtest.test;
1015 rows deleted.
SQL> insert into xwtest.test select * from dba_tables where owner='SYS';
1015 rows created.
SQL> delete from xwtest.test;
1015 rows deleted.
SQL> insert into xwtest.test select * from dba_tables where owner='SYS';
1015 rows created.
SQL> commit;
Commit complete.
评论