Ron Mayer <[EMAIL PROTECTED]> writes: > On a number of my tables, "analyze" seems to be putting the wrong value of > "reltuples" in pg_class. "vacuum" seems to be doing the right thing.
Hmm. analyze by itself generates only an approximate estimate of the row count (since it only examines a random sample of the rows). But I'd not have expected it to be off by a factor of 200. Need more info. What does VACUUM VERBOSE show? Also, it would be interesting to see what contrib/pgstattuple shows, if you can run that conveniently. Can you say anything about your typical usage pattern on these tables? (eg, numbers of inserts vs updates vs deletes) BTW, it's quite likely that VACUUM FULL will make the problem go away, so don't do that until we fully understand what's happening ... regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster