Re: [GENERAL] Run Vacuum Through JDBC

2010-05-11 Thread Scott Marlowe
On Mon, May 10, 2010 at 11:38 PM, Yan Cheng CHEOK wrote: > I was wondering, how can I check whether Vacuum operation had been executed > without problem? > > I use the following Java code to execute Vacuum operation > > final Statement st2 = connection.createStatement(); > st2.executeUpdate("VACU

Re: [GENERAL] Run Vacuum Through JDBC

2010-05-11 Thread Kris Jurka
On Mon, 10 May 2010, Yan Cheng CHEOK wrote: I was wondering, how can I check whether Vacuum operation had been executed without problem? final Statement st2 = connection.createStatement(); st2.executeUpdate("VACUUM FULL ANALYZE VERBOSE"); st2.close(); Nothing print out at console. The re

Re: [GENERAL] Run Vacuum Through JDBC

2010-05-11 Thread Craig Ringer
On 11/05/10 13:38, Yan Cheng CHEOK wrote: > I was wondering, how can I check whether Vacuum operation had been executed > without problem? > > I use the following Java code to execute Vacuum operation > > final Statement st2 = connection.createStatement(); > st2.executeUpdate("VACUUM FULL ANALYZ