View Single Post

   
  #2 (permalink)  
Old 02-27-2008, 03:10 AM
Serge Rielau
 
Posts: n/a
Default Re: MERGE commit count

Giganews wrote:
> I presently use an SQL SP with cursors to cycle through records to update,
> insert etc. Within this I maintain a variable for a commit count, as in
> before I FETCH the next record I increment v_commit_cnt = v_commit_cnt + 1.
> I use an IF v_commit_cnt > say 1000 then COMMIT and set v_commit_cnt = 0 and
> so on.
>
> If we can now use MERGE to do similar processing as above [insert / update],
> how can you now force frequent commits when dealing with a very large number
> of records ?
>
> Any ideas would be appreciated.
>
> Cheers .. Tim
>

MERGE doesn't have built-in commit capabilities if that's what you're
asking for.

Cheers
Serge

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Reply With Quote