Thanks Kevin,
This one initially added about 10sec to the run but I added a HASH index on the alias field and its now about 5 sec average runtime, a net improvement. Shawn On Sun, 02 Sep 2007 10:49:09 -0500 "Kevin Grittner" <[EMAIL PROTECTED]> wrote: > >>> On Sat, Sep 1, 2007 at 12:29 PM, in message > <[EMAIL PROTECTED]>, Shawn > <[EMAIL PROTECTED]> wrote: > > update shawns_data set alias = null; > > Even after VACUUM this simple line takes 35 sec to complete. > > Would any rows already have a null alias when you run this? > > If so, try adding 'where alias is not null' to the query. > > -Kevin > > > > > ---------------------------(end of > broadcast)--------------------------- TIP 2: Don't 'kill -9' the > postmaster > ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match