您好,登錄后才能下訂單哦!
create /*source only*/ table mingshuo.tmp_ms_19031403 as select * from backupwt.tmp_ms_19031403@dblk_e1
在利用上面的通過dblink搬遷數(shù)據(jù)的時(shí)候,發(fā)生報(bào)錯(cuò)
ORA-22992: cannot use LOB locators selected from remote tables
SQL> !oerr ora 22992
22992, 00000, "cannot use LOB locators selected from remote tables"
// *Cause: A remote LOB column cannot be referenced.
// *Action: Remove references to LOBs in remote tables.
可以看到是因?yàn)樵幢碇杏衛(wèi)ob字段導(dǎo)致的。
關(guān)于這個(gè)報(bào)錯(cuò)有兩個(gè)簡(jiǎn)單的解決辦法
1.全局臨時(shí)表
2.物化視圖
先來看第一個(gè)全局臨時(shí)表的方法:
現(xiàn)在目標(biāo)端建立目標(biāo)表結(jié)構(gòu):
create /*source only*/ table mingshuo.tmp_ms_19031403 as select * from backupwt.tmp_ms_19031403@dblk_e1 where 1=0;
目標(biāo)端建立全局臨時(shí)表:
-- Create table
create /*source only*/ global temporary table mingshuo.gb_temp_tab
(
id NUMBER(20) not null,
。。。
) on commit delete rows;
insert into mingshuo.gb_temp_tab select * from backupwt.tmp_ms_19031403@dblk_e1;
注意將數(shù)據(jù)插入到臨時(shí)表中后不要提交,否則數(shù)據(jù)沒有了
將臨時(shí)表中的數(shù)據(jù)插入到目標(biāo)表中:
insert into mingshuo.tmp_ms_19031403 select * from mingshuo.gb_temp_tab;
commit;
第二種通過物化視圖的方法
通過物化視圖將數(shù)據(jù)傳遞到本地來。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。