Re: COMMIT IN STORED PROCEDURE WHILE IN A LOOP

2022-10-18 Thread gogala . mladen
On Tue, 2022-10-18 at 14:31 -0700, Christophe Pettus wrote: > > Rather than have a loop inside the BEGIN / END, you could put the > BEGIN EXCEPTION END inside the loop, catch the error, store the > important parts of the exception in a variable, and then do the > COMMIT after the END statement but

Re: COMMIT IN STORED PROCEDURE WHILE IN A LOOP

2022-10-18 Thread gogala . mladen
On Tue, 2022-10-18 at 17:33 -0400, Tom Lane wrote: > Bryn Llewellyn writes: > > x...@thebuild.com wrote: > > > You can commit in a loop, but not in BEGIN / END block that has > > > an exception handler: that creates a subtransaction for the > > > duration of the BEGIN / END. > > > This surprised

Re: Oracle to Postgress Migration

2022-07-17 Thread Gogala, Mladen
On 7/14/2022 3:06 PM, DAVID ROTH wrote: Please point me in the right direction. https://www.enterprisedb.com -- Mladen Gogala Oracle DBA Tel: (347) 321-1217 Blog: https://dbwhisperer.wordpress.com

Re: Sort question - Fractions, Metric etc

2021-08-14 Thread Gogala, Mladen
I would write a stable function converting everything to metric (or imperial, depends on your preferences) and sort on the return of the function. Since unit conversion functions do not need to modify the database and should always return the same values for the same arguments, the function can