[Solved] Lots of updates to a large table. How to speed up?
–Requete 40. Performance cost: 3% UPDATE #temp_arbo_of_3 SET PxAchat=NULL, CuTpsAch=NULL WHERE IdBE IS NULL; –Requete 41. Performance cost: 2% UPDATE #temp_arbo_of_3 SET CuTrait = NULL WHERE IdBE IS NOT NULL; –Requete 42. Performance cost: 2% UPDATE #temp_arbo_of_3 SET NrOF_Source = _ofI WHERE IdBE IS NOT NULL; Now if I replace all this by: –Requete 40. … Read more