PL/SQL Function Result Cache (oracle 11g)
PL/SQL function result cache는 SQL query result cache 기능과 메커니즘을 공유한다. Cache 자체도 shared pool 내의 result cache memory 영역이 SQL query 용과 PL/SQL function 용으로 나누어져 있을 뿐이다. 따라서…
DB Admin Knowhow
PL/SQL function result cache는 SQL query result cache 기능과 메커니즘을 공유한다. Cache 자체도 shared pool 내의 result cache memory 영역이 SQL query 용과 PL/SQL function 용으로 나누어져 있을 뿐이다. 따라서…
Result cache 기능은 Oracle11g의 성능 분야의 신 기능으로서 SQL query 또는 PL/SQL function의 결과를 메모리 내에 cache할 수 있는 기능이다. 결과가 cache 되어 있는 query를 수행하거나 PL/SQL function을 호출하면 해당…