행위

V$process

DB CAFE

Dbcafe (토론 | 기여)님의 2019년 12월 19일 (목) 20:37 판
thumb_up 추천메뉴 바로가기


V$PROCESS

This view has one row for each Oracle process connected to the instance. The columns PGA_USED_MEM, PGA_ALLOC_MEM, PGA_FREEABLE_MEM and PGA_MAX_MEM can be used to monitor the PGA memory usage of these processes. For example:

SELECT PROGRAM, PGA_USED_MEM, PGA_ALLOC_MEM, PGA_FREEABLE_MEM, PGA_MAX_MEM

 FROM V$PROCESS;