Translate into your own language

Sunday, July 22, 2018

Script to find PGA memory allocation to BG processes

*********************************************
PGA Memory allocation to background process
*********************************************
SELECT spid, program,
pga_max_mem max,
pga_alloc_mem alloc,
pga_used_mem used,
pga_freeable_mem free
FROM V$PROCESS
WHERE spid = 2587;

No comments:

Post a Comment