views:

19

answers:

1

Statistics can be turned off for specific columns on a table. Can someone point me to the pg table that tells me which columns of a relation are not having stats gathered on? I have already looked at pg_stats and pg_statistics

+2  A: 

Check pg_attribute, you need the column attstattarget to see the status.

Frank Heikens