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

From Richard Broersma
Subject Re: Default fill factor for tables?
Date
Msg-id [email protected]
Whole thread Raw
In response to Re: Default fill factor for tables?  ("Scott Marlowe" <[email protected]>)
Responses Re: Default fill factor for tables?
List pgsql-general
On Fri, Jul 11, 2008 at 10:27 AM, Scott Marlowe <[email protected]> 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