1. EXTENSION 설치 CREATE EXTENSION file_fdw;2. FOREIGN SERVER 생성 CREATE SERVER pglog FOREIGN DATA WRAPPER file_fdw;3. PG LOG FILE 테이블 생성 CREATE FOREIGN TABLE dba_pglog_201901 (log_time timestamp(3) with time zone, user_name text, database_name text, process_id integer, connection_from text, session_id text, session_line_num bigint, command_tag text, session_start_time timestamp with time zone, virtual_transaction_id text, transaction_id bigint, error_severity text, sql_state_code text, message text, detail text, hint text, internal_query text, internal_query_pos integer, context text, query text, query_pos integer, location text, application_name text ) SERVER pglog OPTIONS ( filename '/pg_log/pg_201901.csv', format 'csv' ); --PG LOG 경로 넣기 4. PG LOG 조회 select log_time, user_name, database_name, connection_from, command_tag, session_start_time, error_severity, sql_state_code, message, detail, hint, application_name, internal_query,query, query_pos, location |
'1. IT Story > Scripts' 카테고리의 다른 글
Oracle 통계정보 백업, 복구(export/import) (0) | 2019.04.06 |
---|---|
Oracle 통계정보 추출 스크립트 (0) | 2019.04.05 |
Oracle 특정 테이블 통계정보 확인 스크립트 (0) | 2019.03.31 |
Oracle ADDM을 활용한 성능 분석 조회 스크립트 (0) | 2019.03.30 |
Oracle Rman Recovery Monitoring 조회 스크립트 (0) | 2019.03.27 |
Oracle Index Reorg 대상 추출 스크립트 (0) | 2019.03.26 |
Oracle Alter log Viewer 조회 스크립트 (0) | 2019.03.25 |
PostgreSQL 데이터베이스 조회 스크립트 (0) | 2019.03.24 |