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
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
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