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 ...
3
votes
4answers
2k views
PostgreSQL Long VACUUM
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 (laptop) ...
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 ...
1
vote
1answer
398 views
Dynamic data in postgresql
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 dict ...
0
votes
2answers
92 views
Dump postgres data with indexes
I've got a Postgres 9.0 database which frequently I took data dumps of it.
This database has a lot of indexes and everytime I restore a dump postgres starts background task vacuum cleaner (is that ...
0
votes
2answers
173 views
How do I know if the statistics of a Postgres table are up to date?
In pgAdmin, whenever a table's statistics are out-of-date, it prompts:
Running VACUUM recommended
The estimated rowcount on the table schema.table deviates
significantly from the actual ...
0
votes
3answers
177 views
PostgreSQL: DELETE won't free memory
I use PostgreSQL on an embedded system with limited drive space. Now the DB-drive is full. When I delete data, it doesn't seem to free up any space. I tried to VACUUM FULL, but that requires space. So ...
0
votes
1answer
352 views
Postgresql-8.4 auto vacuum is enabled to get the best performance
I want know which one is good to follow whether auto vacuum or vacuum manually. Right now we are following manually in cron jobs, but sometimes it gets struck to vaccum on particular tables. so we are ...
0
votes
1answer
178 views
debugging postgres 9.0.1 table corruption
I have a 9.0.1 database with two corrupted tables (one table has 20 rows, the other 140). The tables seem fine for read/select operations, but updating certain rows in the table produce error ...
0
votes
1answer
178 views
Is it possible to issue a “VACUUM ANALYZE <tablename>” from psycopg2 or sqlalchemy for PostgreSQL?
Well, the question pretty much summarises it. My db activity is very update intensive, and I want to programmatically issue a Vacuum Analyze. However I get an error that says that the query cannot be ...
0
votes
4answers
408 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
1k views
postgreSQL vacuum temp files?
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 vacuum wich ...
0
votes
2answers
947 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
971 views
how to automatically determine which tables need a vacuum / reindex in postgresql
i've written a maintenance script for our database and would like to run that script on whichever tables most need vacuuming/reindexing during our down time each day. is there any way to determine ...