Re: Default fill factor for tables? - Mailing list pgsql-general

From Richard Broersma
Subject Re: Default fill factor for tables?
Date
Msg-id 396486430807111112s1d6f5e74ueb664d6b272079f8@mail.gmail.com
Whole thread Raw
In response to Re: Default fill factor for tables?  ("Scott Marlowe" <scott.marlowe@gmail.com>)
Responses Re: Default fill factor for tables?  ("Scott Marlowe" <scott.marlowe@gmail.com>)
List pgsql-general
On Fri, Jul 11, 2008 at 10:27 AM, Scott Marlowe <scott.marlowe@gmail.com> wrote:

> Is there any way to set a different default fill factor?

ALTER TABLE Yourtable
        SET ( FILLFACTOR = 50 );

It take a bit of back tracking on the storage_parameter section:
http://www.postgresql.org/docs/8.3/interactive/sql-altertable.html  <-
see storage_parameter
http://www.postgresql.org/docs/8.3/interactive/sql-createtable.html <-
see storage_parameter
http://www.postgresql.org/docs/8.3/interactive/sql-createtable.html#SQL-CREATETABLE-STORAGE-PARAMETERS
 <- see FILLFACTOR


--
Regards,
Richard Broersma Jr.

Visit the Los Angles PostgreSQL Users Group (LAPUG)
http://pugs.postgresql.org/lapug

pgsql-general by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: Default fill factor for tables?
Next
From: Scott Frankel
Date:
Subject: Re: roll back to 8.1 for PyQt driver work-around