Oracle 분산 데이터베이스에서 LOB를 처리하는 가장 좋은 방법 Oracle dblink를 생성하는 경우 대상 테이블의 LOB 열에 직접 액세스할 수 없습니다. 예를 들어 다음을 사용하여 dblink를 생성합니다. create database link TEST_LINK connect to TARGETUSER IDENTIFIED BY password using 'DATABASESID'; 그 후에는 다음과 같은 작업을 수행할 수 있습니다. select column_a, column_b from data_user.sample_table@TEST_LINK 열이 LOB인 경우를 제외하고는 다음 오류가 발생합니다. ORA-22992: cannot use LOB locators selected from remot..