I want to write a report using SQL Server Reporting Services. I want a plan_handle (which is varbinary(64) ) from the dynamic management view sys.dm_exec_query_stats to be a parameter in another report.
But SQL Server Reporting Services doesn’t support this type (varbinary(64)) very well. Looking for solutions, workarounds etc…
I think I’m going to go with strings out of the db and strings into the db.
Strings out will look something like:
Strings going in will be handled with dynamic sql (build a varbinary literal into the query).