README 1. windows version, Required installation ==> Visual Studio 2013 Visual C++ ==> https://www.microsoft.com/ko-kr/download/details.aspx?id=40784 2. Oracle User Permissions grant SELECT ANY DICTIONARY to ${userid}; OR -- **************************************************************** -- * Run as 'sys' account on the instance you want to monitor * -- **************************************************************** grant select on dba_users to ${userid}; grant select on dba_free_space to ${userid}; grant select on dba_data_files to ${userid}; grant select on v_$session to ${userid}; grant select on v_$lock to ${userid}; grant select on v_$sqltext to ${userid}; grant select on v_$sysstat to ${userid}; grant select on v_$statname to ${userid}; grant select on v_$sqlarea to ${userid}; grant select on v_$sesstat to ${userid}; grant select on v_$sql_plan to ${userid}; grant select on v_$latch to ${userid}; grant select on v_$librarycache to ${userid}; grant select on v_$sgastat to ${userid}; grant select on v_$waitstat to ${userid}; grant select on v_$rowcache to ${userid}; grant select on v_$sql_bind_capture to ${userid}; grant select on v_$sysmetric to ${userid}; grant select on v_$iostat_function to ${userid}; grant select on v_$transaction to ${userid}; grant select on dba_segments to ${userid}; grant select on v_$process to ${userid}; grant select on v_$open_cursor to ${userid}; grant select on v_$sess_io to ${userid}; grant select on v_$px_session to ${userid}; grant select on v_$access to ${userid}; grant select on v_$rollname to ${userid}; grant select on v_$parameter to ${userid}; grant select on v_$sess_io to ${userid}; grant select on v_$sort_usage to ${userid}; -- ------------------------------------------------------------------ -- alert log (on premise) -- ------------------------------------------------------------------ 1. check directory (alert log, trace File) SELECT value FROM v$diag_info WHERE name='Diag Trace'; 2. Create Directory (Select result value path) CREATE OR REPLACE DIRECTORY ezis_dir AS '/u01/app/oracle/diag/rdbms/pal/pal/trace'; 3. Grant Directory GRANT READ ON DIRECTORY ezis_dir TO ${userid}; 4. grant execute on dbms_system to ${userid};