Andrew Sullivan wrote:
I see. Thank you for the hint...On Mon, Aug 27, 2007 at 10:03:04PM +0200, Kamil Srot wrote: The script is very simple one: #!/bin/sh PGDIR=/opt/pgsql DATABASES=`$PGDIR/bin/psql -U postgres -l -t | cut -f 1 -d '|'` for db in $DATABASES do echo "vacuum;" | $PGDIR/bin/psql -U postgres $db done I can easily rewrite it to use the vacuumdb command, but I doubt it'll make any difference. Is there a way how to find out the problem is here? I scanned the log output of pgsql for wrap around but didn't found aby recent relevant entries... I'm pretty sure, I miss something stupid :-( Thank you very much for your help, -- Kamil |