個人用サブスクリプションを使用する (ネイティブ モードのレポート サーバー)
Reporting Services Web ポータルには、すべてのサブスクリプションを 1 か所で構成する [個人用サブスクリプション] ページが含まれています。 [個人用サブスクリプション] を使用して、既存のサブスクリプションを表示、変更、有効化、無効化、および削除できます。 ただし、このページは、サブスクリプションの作成には使用できません。 個人用サブスクリプションは、他のユーザーが所有するサブスクリプションにサブスクライバーとして追加された場合でも、作成したサブスクリプションのみを表示します。 また、データ ドリブン サブスクリプションも表示されません。
適用対象: Reporting Services ネイティブ モード |
検索フィールドに条件を入力すると、サブスクリプションの一覧が動的にフィルター処理されます。サブスクリプションを名前で検索することはできません。また、トリガー情報、状態情報などをサブスクリプションを検索することもできません。 詳細については、「ネイティブ モード レポート サーバーのサブスクリプションの作成と管理」を参照してください。
[個人用サブスクリプション] ページを開く
- Reporting Services Web ポータルを開きます。
- ツール バーで設定 を選択します。
- [個人用サブスクリプション] を選択します。
詳細については、「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