디비링크(2)
-
Oracle SQL performance with database links - db link
Oracle SQL performance with database links - db linkRef. - http://www.dba-oracle.com/t_sql_dblink_performance.htm Question: What are some of the performance issues when running SQL across a database link (dblink)?Answer: Generally, the limiting factor in SQL performance of a distributed query (over a db-link) is the speed of the network (make sure that you have a high-speed network with proper S..
2017.01.29 -
오라클 DB Link 속도 저하 문제
DB Link 속도 저하의 문제 소결론네트워크 퍼포먼스를 고려하여 설계하면 유용한 네트워크 연결된 DB구조로 잘 활용할 수 있다~~ ---------------------------------------------------------------▣ 속도에 영향을 주는 요소1. 네트워크 퍼포먼스2. 읽기 성능 문제 - select 쿼리 성능3. 쓰기 성능 문제 - insert 시에 발생하는 redo log 쓰기에 따른 문제 ▣ 속도개선을 위한 방안.네트워크 퍼포먼스에 대해서는 패스.읽기 성능 문제 : 힌트를 통해 읽기성능 해결 - parallel (병렬처리), full (full Scan) 힌트 사용비추 XX - 쓰기 성능 문제 : redo log 쓰기를 무시하는 append 옵션 사용 - append (..
2017.01.29