使用报表生成器 (SSRS) 中的存储过程进行报表设计?

发布于 2024-07-04 16:37:30 字数 29 浏览 8 评论 0原文

是否可以使用存储过程在报表生成器中设计报表?

Is it possible to use stored procedures for designing Reports in Report builder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

眼眸里的快感 2024-07-11 16:37:30

SSRS 2005/2008 都可以通过存储过程获取数据,在 ssrs 2005 中创建数据集命令类型时我们需要选择存储过程,而在 ssrs 2008 中创建数据集查询类型时我们需要选择存储过程。

Both SSRS 2005/2008 its possible to get data through stored procedure, in ssrs 2005 while creating dataset command type we need to select stored procedure and in ssrs 2008 while creating dataset the query type we need to select stored procedure.

一绘本一梦想 2024-07-11 16:37:30

如果您在后端使用 Oracle,则可以查询表函数(返回 TYPE 的 TABLE 的存储函数)的结果。 数据集的查询字符串将如下所示:

select * from table (f_foo(:p_bar))

...其中 f_foo 是存储在数据库中的表函数,p_bar 是 f_foo 的报告参数。 有关表函数的更多信息,请参见:

http://www.databasejournal.com/features /oracle/article.php/2222781

If you're using Oracle on the backend, you can query the results of a table function (a stored function that returns a TABLE of TYPE). The query string for your Dataset will look like:

select * from table (f_foo(:p_bar))

...where f_foo is your table function stored in the database and p_bar is a report parameter to f_foo. More info on table functions here:

http://www.databasejournal.com/features/oracle/article.php/2222781

冷月断魂刀 2024-07-11 16:37:30

在 Report Builder 1.0 (SSRS 2005) 中,答案是“否”。(除非您使用表函数执行特殊技巧)。

在 Report Builder 2.0 (SSRS 2008) 中,答案是“是”。 (存储过程可以在 GUI 中轻松获得)

In Report Builder 1.0 (SSRS 2005), the answer is No. (unless you perform special tricks with table functions)

In Report Builder 2.0 (SSRS 2008), the answer is Yes. (stored procedures are readily available in the GUI)

神爱温柔 2024-07-11 16:37:30

如果您询问是否可以在您创建的 SSRS 报告中使用存储过程,那么可以。 只需像平常一样在数据集的查询中调用存储过程即可。

If you're asking if it's possible to use sprocs in SSRS reports that you create, then yes. Just call the sproc in the query for your DataSet like you would normaly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文