Lesson 49. Boost Performance When Calling A Stored Proc From SSIS
If you are calling a proc from an SSIS package, there is no need to get the row count of the records impacted by your query. By setting NOCOUNT to ON, you can significantly boost performance due to the drop in network traffic.
Examples
Turning NOCOUNT On
In [ ]:
PreviousLesson 48. A Better Alternative To WITH (NOLOCK)NextLesson 50. Setting Up Queries For Ablation Testing
Last updated