Tagged Questions

5
votes
3answers
357 views

Postgres 8.4.4 (x32 on Win7 x64) very slow UPDATE on small table

I have a very simple update statement: UPDATE W SET state='thing' WHERE state NOT IN ('this','that') AND losttime < CURRENT_TIMESTAMP; The table W only has 90 rows, though the losttime and state ...
2
votes
2answers
761 views

Why does $dbh->do('VACUUM') fail with Perl's DBD::SQLite?

I want to do VACUUM at a certain time on a SQLite database under Perl, but it always says DBD::SQLite::db do failed: cannot VACUUM from within a transaction So how do I do this? my %attr = ( ...
2
votes
4answers
2k views

PostgreSQL - how to run VACUUM from code outside transaction block?

I am using Python with psycopg2 and I'm trying to run a full VACUUM after a daily operation which inserts several thousand rows. The problem is that when I try to run the VACUUM command within my ...