– – – 2.3.1 Database Objects
SELECT table_name,
table_catalog AS databasename,
table_schema AS SchemaName,
table_type
FROM information_schema.tables
WHERE table_type = ‘BASE TABLE’
AND table_schema NOT IN
(‘pg_catalog’, ‘information_schema’)
UNION
SELECT table_name,
table_catalog AS databasename,
table_schema AS SchemaName,
‘VIEW’ AS table_type
FROM information_schema.views
WHERE table_schema NOT IN (‘pg_catalog’, ‘information_schema’)
AND table_name !~ ‘^pg_’;
– – – 2.3.2 Database Objects Count.
SELECT databasename,
table_type,
count(table_name) AS table_count
FROM (SELECT table_name,
table_catalog AS databasename,
table_schema AS SchemaName,
table_type
FROM information_schema.tables
WHERE table_type = ‘BASE TABLE’
AND table_schema NOT IN
(‘pg_catalog’, ‘information_schema’)
UNION
SELECT table_name,
table_catalog AS databasename,
table_schema AS SchemaName,
‘VIEW’ AS table_type
FROM information_schema.views
WHERE table_schema NOT IN (‘pg_catalog’, ‘information_schema’)
AND table_name !~ ‘^pg_’) as subquery
GROUP BY 1, 2;
– – – 2.3.3 Database Volume
select t1.datname AS db_name,
pg_size_pretty(pg_database_size(t1.datname)) as db_size
from pg_database t1
order by pg_database_size(t1.datname) desc;
– – – 2.3.4 Table volume
SELECT
table_catalog AS databaseName,
table_schema,
table_name,
pg_size_pretty(pg_total_relation_size(quote_ident(table_schema)||’.’||quote_ident(table_name))) AS total_size
from information_schema.tables
where table_schema = ‘public’
order by 4 desc;
– – – 2.3.5 User List
SELECT usename FROM pg_user;