从存储过程 SSRS 2005 自动生成参数
我有一个 ssrs 2005 报告,其中有一个 sql server 2005 上的存储过程作为其数据源。
起初,sp没有参数,它只是返回值。
现在sp变了,增加了很多参数。
现在我需要为报表添加报表参数,并将它们绑定到 sp 参数
有没有办法让报表自动生成参数并将它们绑定到 sp 参数?
I have a ssrs 2005 report that has a stored procedure on sql server 2005 as its datasource.
At first, the sp had no parameters, it just returned values.
The sp changed now, a lot of parameters were added.
Now i need to add report parameters for the report, and bind them to the sp parameters
Is there a way for the report to automaticaly generate the parameters and bind them to the sp parameters ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,当您查看 RDL 设计中的“数据”选项卡时,您可以看到报表使用的数据集。
其中有一个刷新图标,用于刷新过程中的信息。
过程更改后,您需要刷新 RDL 的数据集。
刷新数据集后,应该会自动添加参数。
Usually, When you look in the DATA tab in the RDL design, you can see the datasets that your report uses.
In there, there's a refresh icon that refresh the information from the procedure.
After the procedure has changed, you need to refresh the RDL's dataset.
Once you refresh the dataset, the parameters should be added automatically.