본문 바로가기

오라클DBMS/TroubleShooting

[오라클] 소스에서 타겟으로 넣어줄땐 DBLINK 연결시 APPEND 안됨

가끔 간과하는데 


insert /*+ Append */ into table select * from table@dblink; 

는 append 가 적용되지만 


insert /*+ append */ into table@dblink select * from table;

은 append 가 적용되지 않는다.