作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个存储过程,其输入参数为 integer_list_tbltype。我可以像这样运行proc
DECLARE @mylist integer_list_tbltype
INSERT @mylist(n) VALUES(1),(2),(3),(4)
exec <Proc_Name> @mylist
最佳答案
我最近对同样的问题感到沮丧。我认为发生这种情况是因为 SSRS 在实际调用报告需要运行的查询时总是将每个参数作为 nvarchar 发送。 SQL Server 无法将 nvarchar 正确解释为您尝试使用的表类型,因此您会收到该错误。
我刚刚在博客中介绍了一个潜在的解决方案/解决方法,您可以在其中使用自定义代码块在调用存储过程之前填充表变量:
http://geekswithblogs.net/GruffCode/archive/2012/06/21/using-table-valued-parameters-with-sql-server-reporting-services.aspx
关于sql-server-2008 - SSRS 不接受表类型 (integer_list_tbltype) 作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10952829/
我有一个存储过程,其输入参数为 integer_list_tbltype。我可以像这样运行proc DECLARE @mylist integer_list_tbltype INSERT @mylis
我是一名优秀的程序员,十分优秀!