- 
                Notifications
    
You must be signed in to change notification settings  - Fork 137
 
Open
Description
Sometimes I need to found tables with individual adjustments like autovacuum_scale_factor ou autovacuum disabled.
I use this query and think it would be useful for other people.
SELECT relname as table, nspname as schema, relkind, reloptions 
FROM
    pg_class c
    JOIN pg_namespace n ON c.relnamespace = n.oid
WHERE reloptions IS NOT NULL AND relname != 'pg_stats'
ORDER BY 2,1;
What do you people think? It is useful enough to open a pr?
Metadata
Metadata
Assignees
Labels
No labels