■ 카탈로그를 이용하여 각종 정보 조회 ▶︎ 최근 사용이 되었던 tableselect * from information_schema.TABLES order by UPDATE_TIME desc; ▶︎ 테이블 생성시간별 조회select * from information_schema.TABLES where table_schema='database' order by create_time desc; ▶︎ 활성중인 프로세스 리스트만 확인select * from information_schema.PROCESSLIST where 1=1 and command 'Sleep' and user='service_user' and info is not null order by time desc; ▶︎ host..