I've found a million examples of how to set Autovacuum's configuration settings, but can't seem to find how to list the current configuration.
Postgres 9.1 is the version I'm most interested in.
|
I've found a million examples of how to set Autovacuum's configuration settings, but can't seem to find how to list the current configuration. Postgres 9.1 is the version I'm most interested in. |
|||
|
|
|
For the general settings use:
for table specific settings, check out the column
(you probably want to join that to pg_namespace to limit this to a specific schema). |
||||
|
|