Oracle的同步復(fù)制技術(shù)?
1>create table ... as select ..,表不存在的情況下,創(chuàng)建表并且復(fù)制數(shù)據(jù)。oralce中表不存在的情況下用此語句。
create table newTable as select * from soruceTable
2>insert into ...select from...,表存在的情況下,復(fù)制數(shù)據(jù),oracle中可以用此語句復(fù)制數(shù)據(jù)。
insert into targetTable(value11,value12..) select from value21,balue22 from sourceTable
3>select ...into ... from ..,表不存在的情況下,創(chuàng)建表并且復(fù)制數(shù)據(jù),在plsql中直接運(yùn)行會報(bào)錯(cuò),需要再塊中運(yùn)行。
select value11,value12... into newTable from sourceTable
4>完全復(fù)制表(包括創(chuàng)建表和復(fù)制表中的記錄)create table test as select * from bs_log --bs_log是被復(fù)制表