행위

"V$process"의 두 판 사이의 차이

DB CAFE

(새 문서: 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 th...)
 
(V$PROCESS)
 
(같은 사용자의 중간 판 5개는 보이지 않습니다)
1번째 줄: 1번째 줄:
V$PROCESS
+
=== 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:
+
# 인스턴스에 연결된 각 오라클 프로세스
 +
# PGA_USED_MEM, PGA_ALLOC_MEM,PGA_FREEABLE_MEM PGA_MAX_MEM 열은 프로세스의 PGA 메모리 사용 모니터링
  
SELECT PROGRAM, PGA_USED_MEM, PGA_ALLOC_MEM, PGA_FREEABLE_MEM, PGA_MAX_MEM  
+
<source lang=sql>
 +
SELECT PROGRAM
 +
    , PGA_USED_MEM   , PGA_ALLOC_MEM
 +
    , PGA_FREEABLE_MEM, PGA_MAX_MEM  
 
   FROM V$PROCESS;
 
   FROM V$PROCESS;
 +
</source>
 +
<source lang=sql>
 +
Column Description
 +
ADDR 프로세스의 메모리 주소
 +
PID 프로세스 ID
 +
SPID OS 프로세스 ID
 +
USERNAME RAXSOFT OS 유저 이름
 +
SERIAL# 세션 시리얼 번호
 +
TERMINAL UNKNOWN OS 터미널 이름
 +
PROGRAM         (PMON) OS 프로그램 이름
 +
TRACEID Trace ID
 +
BACKGROUND Background일 때 1
 +
LATCHWAIT Latch Wait 일때 메모리 주소
 +
LATCHSPIN Latch Spinning 일때 메모리 주소
 +
PGA_USED_MEM
 +
PGA_ALLOC_MEM
 +
PGA_FREEABLE_MEM
 +
PGA_MAX_MEM
 +
</source>
 +
[[Category:oracle]]

2023년 12월 4일 (월) 00:11 기준 최신판

thumb_up 추천메뉴 바로가기


V$PROCESS[편집]

  1. 인스턴스에 연결된 각 오라클 프로세스
  2. PGA_USED_MEM, PGA_ALLOC_MEM,PGA_FREEABLE_MEM 및 PGA_MAX_MEM 열은 프로세스의 PGA 메모리 사용 모니터링
SELECT PROGRAM
     , PGA_USED_MEM    , PGA_ALLOC_MEM
     , PGA_FREEABLE_MEM, PGA_MAX_MEM 
  FROM V$PROCESS;
Column		Description
ADDR		프로세스의 메모리 주소
PID		프로세스 ID
SPID		OS 프로세스 ID
USERNAME	RAXSOFT	OS 유저 이름
SERIAL#		세션 시리얼 번호
TERMINAL	UNKNOWN	OS 터미널 이름
PROGRAM	         (PMON)	OS 프로그램 이름
TRACEID	 	Trace ID
BACKGROUND	Background일 때 1
LATCHWAIT	Latch Wait 일때 메모리 주소
LATCHSPIN	Latch Spinning 일때 메모리 주소
PGA_USED_MEM		 
PGA_ALLOC_MEM		 
PGA_FREEABLE_MEM	 
PGA_MAX_MEM