使用我的訂閱

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

另請參閱

資料驅動訂閱
Subscriptions and Delivery (Reporting Services)
建立及管理原生模式報表伺服器的訂閱