PreviousNext

Speed Up Stored Procedures with Table Valued Parameters

by bill-s, 2015-06-13T07:47:35.000Z

In an earlier column, I suggested that one way to speed up your application was to reduce the trips you make to your database, specifically by avoiding calling a stored procedure multiple times. To enable that, I showed how to pass a stored procedure multiple parameter values in a single call and then, inside the stored procedure, load the parameters into a table where they could be integrated with other SQL statements.

Read More