Re: delete/recreate indexes - Mailing list pgsql-performance

From Bort, Paul
Subject Re: delete/recreate indexes
Date
Msg-id A56C12C60A05604A9DE17530524D5FE606CAE837@EXMBX1.tmwsystems.com
Whole thread Raw
In response to Re: delete/recreate indexes  (Jeff Davis <pgsql@j-davis.com>)
List pgsql-performance
> An unrestricted update will end up rewriting the whole table. 
> It's advisable to run VACUUM afterward, so that the wasted 
> space can be reclaimed. What version are you on? Do you have 
> autovacuum enabled?
> 
> Also, to take a step back, why do you try to keep the 
> timestamps changing like that? Why not store the information 
> you need in the record (e.g. insert time as well as the 
> datum) and then compute the result you need using a SELECT 
> (or make it a view for convenience)? Fundamentally, these 
> records aren't changing, you are just trying to interpret 
> them in the context of the current day. That should be done 
> using a SELECT, not an UPDATE.
> 

I like Jeff's idea of redefining the problem. If you need the data to contain dates in the last 30 days, you might want
toconsider storing an interval, then using a view that includes a calculation using CURRENT_DATE().
 

Regards,
Paul Bort
Systems Engineer
TMW Systems, Inc.
pbort@tmwsystems.com
216 831 6606 x2233
216 8313606 (fax)


pgsql-performance by date:

Previous
From: Craig Ringer
Date:
Subject: Re: Heavy contgnous load
Next
From: Jeff Janes
Date:
Subject: Re: Heavy contgnous load