如何在PowerShell中为SSRS报告设置正确的数据源

时间:2018-12-05 13:41:41

标签: powershell reporting-services reporting-services-2012

我有一个PowerShell脚本,应该为报表设置正确的数据源。
我有更多数据源,例如DS1和DS2。

这是我的PowerShell代码的一部分:

function UpgradeReport
{
    param
    (
        [string]$t,
        [string]$ReportFolder,
        [string]$ReportName,
        [string]$DataSourceFolder,
        [string]$IssueId
    )

if([string]::IsNullOrEmpty($DataSourceFolder)) { $DataSourceFolder="DS1" }

.......
# if all ok since now, report is uploaded
        # set datasource if new report
        if (!$reports.$reportName) {
            Write-Host $reportName ' is new. Setting data source: ' $DataSourceFolder
            $Proxy.SetItemDataSources("/$reportFolder/$reportName", $datasources.$DataSourceFolder)
        }
        Write-Output "$(Timestamp) Finished InstallReports for $ReportName"

.....

# get list of all datasources
$Proxy.ListChildren('/Data Sources', $false) | ForEach-Object { $datasources.add($_.Name,$_ ) }

问题可能出在我有SetItemDataSources的{​​{1}}

如果有人知道我该如何解决,我会很高兴的。

1 个答案:

答案 0 :(得分:1)

我主要使用SSRS 2008,但是我确定您的问题是overload for SetItemDataSources is looking for a DataSource object。不只是对象的路径。

$newDataSource = New-Object "$ssrsServiceNamespace.DataSource"
$newDataSource.Name = $DataSourceName
$newDataSource.Item = New-Object ("$ssrsServiceNamespace.DataSourceReference")
$newDataSource.Item.Reference = $DataSourcePath
Write-Verbose "New Datasource Name     : $($newDataSource.Name)"
Write-Verbose "New Datasource Reference: $($newDataSource.Reference)"

$ReportService.SetItemDataSources($reportPath, $newDataSource)

有关上述代码的注意事项:

$ssrsServiceNamespace.DataSource来自连接对象。它创建一个实例特定的DataSource对象。对我来说,制作一个通用的版本会导致类型转换错误,从而导致SetItemDataSources()失败。 $ReportService.Gettype().Namespace。因此,对我来说,可以解决Microsoft.PowerShell.Commands.NewWebserviceProxy.AutogeneratedTypes.WebServiceProxy1tServer_ReportService2005_asmx,而且我的方法看起来更好,并且理论上可以帮助我的代码在SSRS环境之间更易于移植。