Re: [PERFORM] Indexes and Primary Keys on Rapidly Growing Tables

2012-02-21 Thread Alessandro Gagliardi
True. I implemented the SAVEPOINTs solution across the board. We'll see what kind of difference it makes. If it's fast enough, I may be able to do without that. On Tue, Feb 21, 2012 at 3:53 PM, Samuel Gendler wrote: > > On Tue, Feb 21, 2012 at 9:59 AM, Alessandro Gagliardi > wrote: > >> I was th

Re: [PERFORM] Indexes and Primary Keys on Rapidly Growing Tables

2012-02-21 Thread Samuel Gendler
On Tue, Feb 21, 2012 at 9:59 AM, Alessandro Gagliardi wrote: > I was thinking about that (as per your presentation last week) but my > problem is that when I'm building up a series of inserts, if one of them > fails (very likely in this case due to a unique_violation) I have to > rollback the enti

Re: [PERFORM] Indexes and Primary Keys on Rapidly Growing Tables

2012-02-21 Thread Alessandro Gagliardi
I was thinking about that (as per your presentation last week) but my problem is that when I'm building up a series of inserts, if one of them fails (very likely in this case due to a unique_violation) I have to rollback the entire commit. I asked about this in the novice