Re: Does it has a way to compact the database size? - Mailing list pgsql-general

From Merlin Moncure
Subject Re: Does it has a way to compact the database size?
Date
Msg-id b42b73150703060558g73874d5o1c8a6817b69e9aef@mail.gmail.com
Whole thread Raw
In response to Does it has a way to compact the database size?  ("Premsun Choltanwanich" <Premsun@nsasia.co.th>)
List pgsql-general
On 3/6/07, Premsun Choltanwanich <Premsun@nsasia.co.th> wrote:
> I use PostgreSQL 8.0.3 for store my data started on Sep'06. Today, I use database_size('name') function for checking
mydatabase size and found that it's about 1209715345. 
>
> I think that something maybe wrong on my database because I backup my database everyday and the backup size is about
10MB.  So I restore databse from my backup file then use database_size('name') function again and found that  database
sizeis about 56642193. 
>
> I can said both 1209715345 and 56642193 are coming from the same database but I wonder that why it quiet difference
onsize. 
>
> Any Idea?
> And How can I control or compact my database size for make it smallest as possibled?

It's not a bug it's a feature...regular (non full) vacuum reclaims
free space for the database to use but does not release it back to the
operating system.  PostgreSQL will allocate space for extra storage
out of that 'free' space first before it asks for more from the
operating system.  I wouldn't worry about it too much unless you were
concerned about running out of space.  As long as you vacuum regularly
(or use autovacuum), growth will moderate to the actual growth of your
database.

merlin

pgsql-general by date:

Previous
From: Kenneth Downs
Date:
Subject: Re: M:M table conditional delete for parents
Next
From: ".ep"
Date:
Subject: Importing *huge* mysql database into pgsql