Pablo Salazar Loaiza wrote:
>
> Hello all
>
> I have a DB in Postgres, and i have one application that work with this
> DB, and exist one table where dialy is writing register in this table,
> but to midnigth , i do delete from table.
>
> But the size always is growing.
>
You should run the database command
>analyze;
that will get rid of old tuples that are no longer used
--------------
Hannu