1
vote
1answer
122 views
How to VACUUM a Core Data SQLite db?
By design, Core Data does not issue a VACUUM SQL command to its SQLite database(s), as detailed here. I'm creating a Core Data application that'll store, and later delete, large binary files (2-10MB …
0
votes
4answers
105 views
Vacuum PostgreSQL DB from PHP
I want to vacuum a PostgreSQL database from PHP.
I have tried this:
pg_query($conn,"vacuum analyse;");
How can I tell if this works?
0
votes
3answers
120 views
postgreSQL vacuum temp files?
Hey,
I've got a "little" problem. A week ago my database was reaching full disk capasity. I deleted many rows in different tables trying to free up disk space. After wich i tried running a full …
2
votes
2answers
193 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 = ( …
0
votes
2answers
177 views
JDBC postgres vacuum timeout
I'm trying to vacuum my Postgres database by running the following SQL instruction within Java:
vacuum verbose analyze
Sometimes it just seems to "hang" is there any clean way to abort the process? …
0
votes
3answers
373 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 …
1
vote
1answer
229 views
Dynamic data in postgresql
Hi world,
I intend to have a python script do many UPDATEs per second on 2,433,000 rows. I am currently trying to keep the dynamic column in python as a value in a python dict. Yet to keep my python …
2
votes
3answers
518 views
PostgreSQL Long VACUUM
Hi again,
I am currently cleaning up a table with 2 indexes and 250 million active rows and approximately as many dead rows (or more). I issued the command VACCUM FULL ANALYSE from my client computer …
