Click here to Skip to main content
15,897,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
When I am passing multiple values parameter in SSRS as Query it's working but when I'm passing multiple value parameters as Stored Procedure it's not working.

Could anyone please give a solution for this?


Thanks,
Prasant
Posted
Updated 23-Nov-10 6:36am
v2
Comments
Henry Minute 23-Nov-10 13:46pm    
An hour has passed without your getting an answer so I suspect that others, like myself, do not understand what you want. It might help if you edited your question (click on the 'Improve Question' widget) to show examples of the code that is failing.

1 solution

It might be due to type mismatch, make sure the parameter values you are passing in are of the same type to that of the stored procedure parameters.

Also if you worked on an existing stored procedure (which will have a dataset in SSRS), Then make sure you REFRESH the dataset before you test your report.

Also build your stored procedure well..I think thats the most important thing, you probably might be doing something that is not making your stored procedure run well..After building your stored proc. do not just use it straight in SSRS, first run a manual exec with dummy data values in SQL Server to ascertain its in perfect shape before you begin using it in SSRS.

I belive if you stick to these guidelines and more, you wont be having problemsw with SSRS/Stored Procs (I use them all the time) and it works perfectly :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900