Common SQL
PostgreSQL
Manual
Get Process Start Time
SELECT pg_postmaster_start_time();
Show Config File
SHOW config_file;
Show Max Connections
SHOW max_connections;
Get Total Activity Connections
SELECT COUNT(*) AS total_connections FROM pg_stat_activity;
Activity Connections Sta...