|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 1:38 PM
Points: 132,
Visits: 336
|
|
My VB.net code first retrieves data from database, use the fill method to fill to a datatable, makes changes to datatable, then uses DataAdapter.Update to send data back to database in batch mode, where batchsize is set to 10. When I look at SQL profiler I see something like this:
RPC:Completed exec sp_reset_connection Audit Login... RPC:Completed exec dbo.IMOC_UpdateProperties ... ... Audit Logout ...
Now, what I was expecting is... the "RPC:Completed exec dbo.IMOC_UpdateProperties ..." should only be repeated for maximimum of 10 times (set batch size) within each Login & Logout block. But instead I see more than 10 times...Is this the right behavior?
Thank You!
|
|
|
|