Best way to handle LOBs in Oracle distributed databases

前端 未结 6 959
傲寒
傲寒 2021-02-04 07:08

If you create an Oracle dblink you cannot directly access LOB columns in the target tables.

For instance, you create a dblink with:

create database link          


        
6条回答
  •  星月不相逢
    2021-02-04 07:47

    For query data, the solution of user2015502 is the smartest. If you want to insert or update LOB's AT the remote database (insert into xxx@yyy ...) you can easily use dynamic SQL for that. See my solution here:

提交回复
热议问题