Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Optimizing massive update
Message
 
To
31/03/2015 22:59:35
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2012
Application:
Web
Miscellaneous
Thread ID:
01617566
Message ID:
01617574
Views:
48
>>Can you do a batch update updating 10K rows in a time? If each update is different. you can place the update of 10K rows into begin transaction / commit transaction to run it as a batch.
>
>Yes, I can do that. I was mostly wondering if this would be really a gain as far as optimization goes. Before doing code for that, I wanted to make sure the gain would be significant. If I only save a few fractions of a second on 10000 updates, then it would not be useful. But, if this round trip to the database server is a factor, I should see a significant improvement.

Hi Michel,

I don't know what is your algoritm.

1) Try create big SQL command:
CREATE TABLE #TMPTABLE (P1 int,F2 int)
INSERT INTO #TMPTABLE (10,1)
INSERT INTO #TMPTABLE (11,2)
INSERT INTO #TMPTABLE (12,3)
INSERT INTO #TMPTABLE (13,4)
..
INSERT INTO #TMPTABLE (1,100)

UPDATE AA SET AA.F2=AB.F2
  FROM SOMETABLE AA INNER JOIN #TMPTABLE AB ON AA.P1=AB.P1

DROP TABLE #TMPTABLE
2) you can send MULTIPLE UPDATE
UPDATE SOMETABLE SET AA.F2=1
  WHERE P1=10
UPDATE SOMETABLE SET AA.F2=2
  WHERE P1=11
"Navision is evil that needs to be erazed... to the ground"

Jabber: gorila@dione.zcu.cz
Jabber? Jabbim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform