Merge statement - Intermediate commit [message #572496] |
Wed, 12 December 2012 08:55  |
freakabhi
Messages: 74 Registered: November 2007 Location: mumbai
|
Member |
|
|
All,
I am using Merge statement to copy data from one table to other,
merge into tabA a
using tabB b
on a.id = b.id
when match
update (
)
when not matched
(insert )
This is working all fine, as SQL, but when there is large volume, it blows out as there are intermediate commits for this ?
Can somebody please tell me whats the best way to put intermediate commits.
|
|
|
|
|
|