PGA 관련 조회 PGA 사용량 조회하는 방법은 일반적으로 사용하는 v$pgastat를 이용하는 방법외에 몇가지가 더 있습니다. 아래내용 참고하시기 바랍니다. 1) v$process 이용하는 방법 select inst_id, round(sum(PGA_USED_MEM)/1024/1024) "PGA_USED(MB)", round(sum(PGA_ALLOC_MEM)/1024/1024) "PGA_ALLOC(MB)", round(sum(PGA_MAX_MEM )/1024/1024) "PGA_MAX(MB)" from gv$process group by inst_id; INST_ID PGA_USED(MB) PGA_ALLOC(MB) PGA_MAX(MB) ---------- ------------ ------------- ----------.. 더보기 이전 1 ··· 256 257 258 259 260 261 262 ··· 595 다음