Hi,
I’m curious how it ended up with 191 live tuples, but only did 17 inserts to the table. In actuality, the table is empty at the time I ran this query, manually analyzing it updated the live_tuples back down to 0. I select n_tup_ins, n_tup_upd, n_tup_del, n_tup_hot_upd, n_live_tup, n_dead_tup from pg_stat_user_tables where relname = 'foo'; -[ RECORD 1 ]-----+------------------------------ n_tup_ins | 17 n_tup_upd | 305 n_tup_del | 17 n_tup_hot_upd | 297 n_live_tup | 191 n_dead_tup | 11 Thanks, Brad. |