我有一个存储过程,其输入参数为 integer_list_tbltype。我可以像这样运行proc
DECLARE @mylist integer_list_tbltype
INSERT @mylist(n) VALUES(1),(2),(3),(4)
exec <Proc_Name> @mylist
当我尝试在 SSRS(Sql 报告服务 2008)下将其添加为共享数据库时,出现错误。
操作数类型冲突:nvarchar 与 integer_list_tbltype 不兼容
有什么解决方法吗?
韦德