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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2022-12-23
  • 2021-05-29
  • 2022-01-11
  • 2021-08-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
  • 2022-02-25
相关资源
相似解决方案