-- 실시간 쿼리 조회
select * from INFORMATION_SCHEMA.PROCESSLIST
-- 쿼리 로그 남기기
set global general_log = 'OFF'
-- 쿼리 로그 저장 위치 선택
set global log_output = 'FILE'
-- 저장 위치를 TABLE로 했을 때 조회 방법
SELECT * FROM mysql.general_log where user_host like '%dbalkh%'
-- JDBM에서 조회
select * from TB_DB_INFO where db_nm like '%신문%'
-- 999 JV0567 [운영] 신문제작 DB1
-- 1000 JV0568 [운영] 신문제작 DB2
select count() from TB_QRY_LOG (nolock)
select from TB_QRY_LOG (nolock) where DB_SEQ = 988
-- 신문제작 개발 DB 로그
select from TB_QRY_LOG (nolock) where DB_SEQ = 988 and HOST_NAME like '%172.29.58.246%' order by REG_DT desc
-- 신문제작 운영 DB로그
select from TB_QRY_LOG (nolock) where DB_SEQ = 999 and HOST_NAME like '%172.29.58.246%' order by REG_DT desc