Hi,
Have you tried to run 'VACUUM FULL' command?
According to PostgreSQL documentation
-------------8<-------------------
8.2.1. Recovering disk space
In normal PostgreSQL operation, an UPDATE or DELETE of a row does not immediately remove the old tuple (version of the row). This approach is necessary to gain the benefits of multiversion concurrency control (see the PostgreSQL 7.3 User's Guide): the tuple must not be deleted while it is still potentially visible to other transactions. But eventually, an outdated or deleted tuple is no longer of interest to any transaction. The space it occupies must be reclaimed for reuse by new tuples, to avoid infinite growth of disk space requirements. This is done by running VACUUM. ------------->8------------------- Frankie
|
Title: database & table size
- [SQL] database & table size Anagha Joshi
- Re: [SQL] database & table size Stephan Szabo
- Frankie Lam