SQL Server 报表参数
我正在使用 SQL Server 2008 的商业智能工具(Visual Studio shell 2005)创建 SQL Server 报告。
我正在调用带有 2 个参数的存储过程。我已经尝试过 - 报告 ->报告参数,添加了两个参数,分别命名为“天数”和“计数”。
在数据面板中“命令类型:文本”
执行 dbo.DataReport @Days, @Count
错误:必须删除标量变量“@Days”
有谁知道如何让它工作。
I'm create a SQL Server Report using Business Intelligence tool (visual studio shell 2005) for SQL Server 2008.
I'm calling a stored procedure with 2 parameters. I've tried - Report-> Report Parameter, Added two parameters name them Days and Count.
In the Data panel "command type:text"
exec dbo.DataReport @Days, @Count
error: Must delcare the scalar variable "@Days"
Does anyone know how do get this too work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将命令类型更改为存储过程,我确信它过去对我有用
Try changing the command type to Stored Procedure, i'm sure its worked for me in the past
如果按照建议将命令类型更改为存储过程不起作用,请尝试打开“数据集”对话框并转到“参数”选项卡。确保两个参数(“@Days”和“@Count”)都在列表中,并且每个参数都有一个值。
If changing the command type to Stored Procedure like was suggested didn't work, try opening the Dataset dialog box and going to "Parameters" tab. Make sure that both parameters ("@Days" and "@Count") are in the list and that each one has a value.