시스템 카탈로그란 - 시스템 그 자체에 관련이 있는 다양한 객체에 관한 정보를 포함하는 시스템 데이터베이스 - 데이터 정의어 결과로 구성되는 기본 테이블, 뷰, 인덱스, 패키지, 접근 권한 등의 데이터베이스 구조 및 통계정보 저장 ✅ Database 1. DB파라미터 설정값 조회 pg_settings select name, setting,boot_val,reset_val,unit from pg_settings order by name; select context,name,setting from pg_settings where name in ('enable_seqscan','authentication_timeout','max_connections'); 2. DB 사용량 조회 pg_database selec..