使用我的订阅

Reporting Services 报表管理器包含一个 “我的订阅 ”页,可将所有订阅组织到一个位置。 可以使用“我的订阅”查看、修改和删除现有订阅。 但是,不能使用它来创建订阅。

适用于: Reporting Services 本机模式

在“我的订阅”中,可以按文件夹、报表、说明、触发器、上次运行或状态对订阅进行排序。 除了“最后一次运行”是按时间顺序排列的,其他所有值均按字母顺序排列。

我的订阅仅显示你创建的订阅。 它不会列出由其他用户拥有的订阅,即使您被添加为这些订阅的订阅者,也不会显示数据驱动的订阅。

不能按名称搜索订阅,也不能基于触发器信息、状态信息等搜索订阅。 有关详细信息,请参阅创建、修改和删除标准订阅(本机模式下的 Reporting Services)。

如何使用我的订阅

我的订阅可通过报表管理器获取。 若要访问“我的订阅”,请单击报表管理器全局工具栏上的 “我的订阅 ”。

使用 Windows PowerShell 列出 MySubscriptions

与 PowerShell 相关的内容

以下 PowerShell 脚本将返回当前用户的订阅和订阅属性列表。 有关详细信息,请参阅 ReportingService2010.ListMySubscriptions 方法

#server -  all subscriptions of the current user at the given server or site  
$server="[server name]/reportserver"  
$rs2010 = New-WebServiceProxy -Uri "http://$server/ReportService2010.asmx" -Namespace SSRS.ReportingService2010 -UseDefaultCredential ;  
  
$subscriptions=ListMySubscriptions(ItemPathOrSiteURL)  
$subscriptions | select Path, report, Description, Owner, SubscriptionID, lastexecuted,Status  
#uncomment the following to list all the subscription properties  
#$subscriptions

另请参阅

Data-Driven 订阅
订阅和传送(Reporting Services)
创建和管理本机模式报表服务器的订阅