Created
March 9, 2016 12:43
-
-
Save bitdivine/f4e34443b3f32b675faa to your computer and use it in GitHub Desktop.
Match postgres toast tables to their originals
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
| select tab.relname as table,toast.relname as toast from pg_class as tab join pg_class as toast on (toast.oid = tab.reltoastrelid); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment