原 PG查询表的属性Options的内容(例如并行度、fillfactor、autovacuum_enabled等)
Tags: 原创PGGreenPlumPostgreSQL表的属性
SQL
在 PostgreSQL 中,可以通过 pg_class
和 pg_options_to_table
函数来查询表的并行工作者(parallel workers)设置。
1 2 3 4 5 6 | SELECT relname,reloptions, option_name, option_value FROM pg_class c, pg_options_to_table(c.reloptions) WHERE relname = 'XXXX' |