Quantcast
Channel: How to view the current settings of Autovacuum in Postgres? - Database Administrators Stack Exchange
Browsing latest articles
Browse All 3 View Live

Answer by collimarco for How to view the current settings of Autovacuum in...

If you want to see the vacuum settings for a specific table:SELECT relname, reloptions FROM pg_class WHERE relname='tablename';The general vacuum settings can be seen in postgresql.conf.

View Article



Answer by user1822 for How to view the current settings of Autovacuum in...

For the general settings use:select *from pg_settings where name like '%autovacuum%'for table specific settings, check out the column reloptions in pg_class:select relname, reloptionsfrom pg_classYou...

View Article

How to view the current settings of Autovacuum in Postgres?

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.

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>
<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596344.js" async> </script>