SSRS supports only scalar values for parameters, not table values.
Olaf
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
How can we use Stored Procedure with Table Valued Parameter in SSRS Dataset ?
CREATE TYPE DBO.MultiFilter AS TABLE
(
filterVal VARCHAR(200)
)
CREATE PROCEDURE DBO.USP_multiFilterTest
@position DBO.MultiFilter READONLY
AS
BEGIN
SELECT * FROM @position
END
If I use this SP DBO.USP_multiFilterTest in Data Set , it asking parameter value. Which values I can pass to this parameter ?
SSRS supports only scalar values for parameters, not table values.
Olaf