설치
와탭 데이터베이스 모니터링 설치 가이드
모니터링용 계정 생성
모니터링을 하기 위해 필요한 권한을 가지고 있는 계정을 만듭니다.
(이미 있는 계정을 사용하려는 경우 UID 생성으로 넘어가 주세요. 단, 권한이 없을 경우 모니터링이 정상적으로 이루어지지 않을 수 있습니다.)
일반적인 경우
create user whatap identified by [DB_PASSWORD]; -- 원하는 password로 만듭니다. grant create session to whatap; grant select any dictionary to whatap;
12c 이상에서 멀티태넌트의 경우 (접두어 c##)
create user c##whatap identified by [DB_PASSWORD]; -- 원하는 password로 만듭니다. grant create session to c##whatap; grant select any dictionary to c##whatap; alter user c##whatap set container_data = ALL container = CURRENT;
kill session 기능 사용 시
grant alter system to whatap;