I am able to execute simple SQL queries in Jmeter by setting up thread groups,jdbc connection config, jdbc request,csv data config and view results tree. But the problem I am struggling with is to execute a SQL Server stored proc in parallel for 'n' different values.Could someone help me how to handle JDBC request with parameterization. I have gone through google many times and read through several articles but I didn't have any luck. Any help would be appreciated. Thank you so much in advance.
Stored Proc call :-
exec Mydatabase.[dbo].[Mystoredproc] A=300,@ID=8,@C='COMBINERES',@Q=1,@Debug=0
For example, if I want to run the above stored proc call 40 times I will be having 1...40 in my csv file and read each value one by one and pass it to the @ID parameter in the sp call.