So i have stored procedure and ssrs report.
Ssrs report takes multi-value parameter and sends it to stored procedure.
Stored procedure expects that parameter as varchar(50) type (max length is around 15 characters).
If i select 1 value in report (thus not using multi-select property) it is working, but when i select more than 1 value it reports : procedure or function ... has to many arguments specified.
In what format does SSMS stored procedure receives multi-value parameter? Is it a string like 'a,b,c'? a table?
And how can i check things like this by my self in future (this data flow and how data is sent and received)?