1.1.11
主机A上进行特征记录的插入
SQL> conn aidu/******
Connected.
SQL> create table test02(id
number(10,2),name varchar2(200),primary key(id));
Table created.
SQL> insert into test02(id,name)
values(1,'test for flashcopy and resyncflash with db');
1 row created.
SQL> insert into test02(id,name) select
id+(select count(1) from test02),name from test02;
1 row created.
SQL> /
2 rows created.SQL> /
4 rows created.
SQL> /
8 rows created.
SQL> /
16 row...
Link URL: http://djb1008.itpub.net/post/42280/518381