0

我有一个 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在我有的地方$datasources.$DataSourceFolder

如果有人知道我该如何解决这个问题,我会很高兴。

4

1 回答 1

1

我主要使用 SSRS 2008,但我确定您的问题是重载 forSetItemDataSources正在寻找 DataSource 对象。不仅仅是对象的路径。

$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 环境之间更便携。

于 2018-12-05T15:28:25.690 回答