Forked from rgreenjr/postgres_queries_and_commands.sql
Last active
April 10, 2024 20:24
-
-
Save brookemckim/e1916f39dda18ed7a48a39a8d20745a8 to your computer and use it in GitHub Desktop.
Useful PostgreSQL Queries and Commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- show running queries (9.2) | |
SELECT pid, age(clock_timestamp(), query_start), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- REINDEX Status | |
SELECT | |
now()::TIME(0), | |
a.query, | |
p.phase, | |
p.blocks_total, | |
p.blocks_done, | |
p.tuples_total, | |
p.tuples_done, | |
lockers_total, | |
lockers_done, | |
current_locker_pid, | |
ai.schemaname, | |
ai.relname, | |
ai.indexrelname | |
FROM pg_stat_progress_create_index p | |
JOIN pg_stat_activity a ON p.pid = a.pid | |
LEFT JOIN pg_stat_all_indexes ai on ai.relid = p.relid AND ai.indexrelid = p.index_relid; | |
-- VACUUM Status | |
select * FROM pg_stat_progress_vacuum; | |
SELECT | |
p.pid, | |
now() - a.xact_start AS duration, | |
coalesce(wait_event_type ||'.'|| wait_event, 'f') AS waiting, | |
CASE | |
WHEN a.query ~*'^autovacuum.*to prevent wraparound' THEN 'wraparound' | |
WHEN a.query ~*'^vacuum' THEN 'user' | |
ELSE 'regular' | |
END AS mode, | |
p.datname AS database, | |
p.relid::regclass AS table, | |
p.phase, | |
pg_size_pretty(p.heap_blks_total * current_setting('block_size')::int) AS table_size, | |
pg_size_pretty(pg_total_relation_size(relid)) AS total_size, | |
pg_size_pretty(p.heap_blks_scanned * current_setting('block_size')::int) AS scanned, | |
pg_size_pretty(p.heap_blks_vacuumed * current_setting('block_size')::int) AS vacuumed, | |
round(100.0 * p.heap_blks_scanned / p.heap_blks_total, 1) AS scanned_pct, | |
round(100.0 * p.heap_blks_vacuumed / p.heap_blks_total, 1) AS vacuumed_pct, | |
p.index_vacuum_count, | |
round(100.0 * p.num_dead_tuples / p.max_dead_tuples,1) AS dead_pct | |
FROM pg_stat_progress_vacuum p | |
JOIN pg_stat_activity a using (pid) | |
ORDER BY now() - a.xact_start DESC; | |
-- kill running query | |
SELECT pg_cancel_backend(procpid); | |
-- kill idle query | |
SELECT pg_terminate_backend(procpid); | |
-- vacuum command | |
VACUUM (VERBOSE, ANALYZE); | |
-- all database users | |
select * from pg_stat_activity where current_query not like '<%'; | |
-- all databases and their sizes | |
select * from pg_user; | |
-- all tables and their size, with/without indexes | |
select datname, pg_size_pretty(pg_database_size(datname)) | |
from pg_database | |
order by pg_database_size(datname) desc; | |
-- cache hit rates (should not be less than 0.99) | |
SELECT sum(heap_blks_read) as heap_read, sum(heap_blks_hit) as heap_hit, (sum(heap_blks_hit) - sum(heap_blks_read)) / sum(heap_blks_hit) as ratio | |
FROM pg_statio_user_tables; | |
-- table index usage rates (should not be less than 0.99) | |
SELECT relname, 100 * idx_scan / (seq_scan + idx_scan) percent_of_times_index_used, n_live_tup rows_in_table | |
FROM pg_stat_user_tables | |
ORDER BY n_live_tup DESC; | |
-- how many indexes are in cache | |
SELECT sum(idx_blks_read) as idx_read, sum(idx_blks_hit) as idx_hit, (sum(idx_blks_hit) - sum(idx_blks_read)) / sum(idx_blks_hit) as ratio | |
FROM pg_statio_user_indexes; | |
-- Dump database on remote host to file | |
$ pg_dump -U username -h hostname databasename > dump.sql | |
-- Import dump into existing database | |
$ psql -d newdb -f dump.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment