web-dev-qa-db-ja.com

SQL Server 2008 R2のすべてのデータソースとその依存関係(レポート、アイテムなど)の一覧表示

私はSQL Serverを初めて使用します。質問に対する明らかな解決策はあるが、見つけられないようでしたら申し訳ありません。

SQL Server 2008 R2(レポートサーバー)上のすべてのデータソースとそれらの個々の依存関係のレポート(またはリスト)を生成しようとしています。

各データソースにアクセスして、それに依存するすべてのアイテムのリストを取得できることを知っています。私は過去にこれをやったことがありますが、時間がかかります。

すべてのデータソースとその依存アイテムを表示するレポートを取得する方法はありますか?

前もって感謝します、

マーワン

25

次の(以前に投稿されたbeargleから変更された)は、私が探していたものです。これにより、すべてのデータソースが実際の名前でリストされ、すべての依存アイテムが表示されます。

SELECT
    C2.Name AS Data_Source_Name,
    C.Name AS Dependent_Item_Name,
    C.Path AS Dependent_Item_Path
FROM
    ReportServer.dbo.DataSource AS DS
        INNER JOIN
    ReportServer.dbo.Catalog AS C
        ON
            DS.ItemID = C.ItemID
                AND
            DS.Link IN (SELECT ItemID FROM ReportServer.dbo.Catalog
                        WHERE Type = 5) --Type 5 identifies data sources
        FULL OUTER JOIN
    ReportServer.dbo.Catalog C2
        ON
            DS.Link = C2.ItemID
WHERE
    C2.Type = 5
ORDER BY
    C2.Name ASC,
    C.Name ASC;
32

このクエリは、ReportServerデータベースに対して実行する必要があります

SELECT
    DS.Name AS DatasourceName,
    C.Name AS DependentItemName, 
    C.Path AS DependentItemPath
FROM
    ReportServer.dbo.Catalog AS C 
        INNER JOIN
    ReportServer.dbo.Users AS CU
        ON C.CreatedByID = CU.UserID
        INNER JOIN
    ReportServer.dbo.Users AS MU
        ON C.ModifiedByID = MU.UserID
        LEFT OUTER JOIN
    ReportServer.dbo.SecData AS SD
        ON C.PolicyID = SD.PolicyID AND SD.AuthType = 1
        INNER JOIN
    ReportServer.dbo.DataSource AS DS
        ON C.ItemID = DS.ItemID
WHERE
    DS.Name IS NOT NULL
ORDER BY
    DS.Name;

レポートマネージャーの依存アイテムページは、dbo.FindItemsByDataSourceストアドプロシージャを実行し、ItemID = <data source item ID>およびAuthType = 1というパラメーターを提供します。上記のクエリは、このストアドプロシージャがデータソース固有のIDを削除するために使用するクエリのハッキングバージョンです。これにより、すべてのデータソースの依存アイテムを返すことができます。 DS.Name IS NOT NULLを使用して、結果からデータソース自体を削除しました

9
Bryan

Powershellの使用を検討することもできます。

    #************************************************************************************************************************************
# FileName:     Delete-DataSources.ps1
# Date:         2015/04/23
# Author:       Hugh Scott
#
# Description:
# This script finds data sources with no dependencies in SSRS and removes them.
#
# Parameters:
#   $serverBase     - base URL for the server to check (ie, myserver.mydomain.com)
#   [$WhatIf]       - Option wwitch parameter to prevent actual deleting of objects (will list out reports that need to be deleted)
#***********************************************************************************************************************************
[CmdletBinding()]
Param(
    [Parameter(Mandatory=$true,Position=0)]
    [string]$serverBase,
    [Parameter(Mandatory=$false,Position=1)]
    [switch]$WhatIf
)

$url = "http://$serverBase/reportserver/ReportService2010.asmx?WSDL"
$ssrs = New-WebServiceProxy -uri $url -UseDefaultCredential -Namespace "ReportingWebService"

$outFile = ".\DeleteItems_$serverBase.txt"

# Connection to Web Service, grab all data sources
$items = $ssrs.ListChildren("/", $true) | where-object {$_.typename -eq "DataSource"}
foreach($item in $items) {

    $dependencies = $ssrs.ListDependentItems($item.Path)
    $dependentReports = $dependencies.Count

    if($dependencies.Count -eq 0){
        [string]$itemName = $item.Path
        if($WhatIf){

            Write-Host "Item $itemName would be deleted."
            Add-Content $outFile "Item $itemName would be deleted."
        } else {
            try {
                $ssrs.DeleteItem($item.Path)
                Write-Host "Item $itemName deleted."
                Add-Content $outFile "Deleted item $itemName ."
            } catch [System.Exception] {
                $Msg = $_.Exception.Message
                Write-Host $itemName $Msg
                Add-Content $itemName $msg
            }
        }
    }
}
4
hmscott