Hi ,
We have requirement to execute a SQL Server 2008 R2 , stored procedure for 200 different input values ( 200 times calling the same procedure) . All these calculations can be executed independently. Currently, we are executing the same procedure for 200 different values SEQUENTIALLY. I feel this can be converted as parallel process / muti threaded , where i can initiate the execution of stored procedures for multiple values at the same time, so that i can reduce the total execution time.
In SQL Server is there any possibility of handling this scenario ( parallel process / multi threading) . Please suggest.
Thank you