Best way to handle LOBs in Oracle distributed databases

前端 未结 6 1079
傲寒
傲寒 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:45

    The best solution by using a query as below, where column_b is a BLOB:

    SELECT (select column_b from sample_table@TEST_LINK) AS column_b FROM DUAL
    

提交回复
热议问题