> Using psql how can I ask postgresql to show the actual number of rows of a > table?
What do you mean by 'actual number of rows'?
Is there a reason you can't just do: select count(*) from this_table:--Mike Nolan