首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

ORA-22992: 没法使用从远程表选择的 LOB 定位器

2012-07-18 
ORA-22992: 无法使用从远程表选择的 LOB 定位器ORACLE ORA--22992:无法使用远程表选择的LOB定位器,databa

ORA-22992: 无法使用从远程表选择的 LOB 定位器


  ORACLE "ORA--22992:无法使用远程表选择的LOB定位器,database link"

   解决办法:
   先创建一个临时表,然后把远程的含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;   
 


热点排行