Created
April 17, 2018 17:22
-
-
Save hauleth/7b239be7a1dd08664d8a9484449232eb to your computer and use it in GitHub Desktop.
Script to generate DOT graph of dependencies between tables in PostgreSQL
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
#!/bin/sh | |
psql -qX "$@" <<EOF | |
\t on | |
\timing off | |
\echo 'Digraph F{' | |
\echo 'ranksep=1.0; size="18.5, 15.5"; rankdir=LR;' | |
SELECT | |
'"' || tc.table_name || '"->"' || ccu.table_name || '" [label="' || tc.constraint_name || '"];' | |
FROM | |
information_schema.table_constraints AS tc | |
JOIN information_schema.key_column_usage AS kcu ON | |
tc.constraint_name = kcu.constraint_name | |
JOIN information_schema.constraint_column_usage AS ccu ON | |
ccu.constraint_name = tc.constraint_name | |
WHERE constraint_type = 'FOREIGN KEY'; | |
\echo '}' | |
EOF |
Awesome!
Would there be any point to adding functions, procedures, and views?
This is excellent. Thank you!
I have created repo with some small improvements and additional scripts https://github.com/hauleth/pg-utils. If anyone is interested.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
usage example
pg_graph db_name | dot -Tsvg > out.svg