解决办法:
先创建一个临时表,然后把远程的含CLOB字段的表导入到临时表中,再倒入本表。
create global temporary table demo_temp as select * from demo;
insert into demo_temp select * from demo@D_LINK;
insert into demo select * from demo_temp;
commit;
相关文章
- ORACLE "ORA--22992:无法使用远程表选择的LOB定位器,database link"
- ORA-22992:没法使用从远程表选择的LOB定位器
- ORA-22992:无法使用从远程表定位的lob定位器
- 由 “无法使用从远程表选择的 lob 定位符” 错误而引导出来的一系列问题解决方案
- ORA-22992: 无法使用从远程表选择的 LOB 定位器?
- ORACLE "ORA--22992:无法使用远程表选择的LOB定位器,database link"
- 由 “无法使用从远程表选择的 lob 定位符” 错误而引导出来的一系列问题解决方案
- Oracle通过DBLink操作数据表,报错“ORA-22992:无法使用从远程表选择的lob定位器”
- 解决oracle dblink中无法使用从远程表选择的lob定位器的问题