共用方式為


使用我的訂閱 (原生模式報表伺服器)

Reporting Services 入口網站包括 [我的訂閱] 頁面,該頁面將您所有的訂閱都整理在同一個地方。 您可以使用 [我的訂閱] 來檢視、修改、啟用、停用和刪除現有的訂閱。 然而,無法用它來建立訂閱。 我的訂閱只會顯示您建立的訂閱,即使系統已將您以訂閱者的身分加入其他人擁有的訂閱亦然。 它也不會顯示資料驅動訂閱。

適用於: Reporting Services 原生模式

因為您無法依名稱搜尋訂閱,所以搜尋欄位將動態篩選訂閱清單,也無法根據觸發程序資訊、狀態資訊等等來搜尋訂閱。 如需詳細資訊,請參閱建立及管理原生模式報表伺服器的訂閱

開啟我的訂閱頁面

  1. 開啟 Reporting Services 入口網站。
  2. 選取工具列中的設定
  3. 選取我的訂閱

如需詳細資訊,請參閱 Web 入口網站 (SSRS 原生模式)

使用 Windows 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 "https://$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

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