Search Postgresql Archives

Re: Vacuuming on heavily changed databases

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, May 19, 2008 at 06:21:18PM +0100, Sam Mason wrote:
>   for t in foo bar baz
>     do ( while echo "VACUUM $t;" && false ; do true ; done | psql ) &
>   done

oops, that "&& false" shouldn't be there! like like this:

  for t in foo bar baz
    do ( while echo "VACUUM $t;" ; do true ; done | psql ) &
  done


  Sam


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux