Get list of reports from SSRS?

痴心易碎 提交于 2019-12-04 23:21:02

Yes, absolutely - Report Services has two well established web service interfaces.

Check out this page here: Report Server Web Service and the links off it for more info, or see the Reporting Services Developer's Guide for some background and conceptual info.

Here's the definition of the ReportingService2005 class in all its details, specifically there's a ListChildren web call which enumerates all items in a given report folder. That will return all reports (and possibly data sources)

Hope that helps a bit!

use ReportServer go

select Path, Name from catalog where type not in (1,5) order by path, Name

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!