2

Power Shell を使用して 2012 SSIS パッケージを展開し、SSIS 2012 サーバーに環境変数を設定しています。現在、プロジェクトの展開中に、環境変数コレクション (foreach($environment.Variables の $variable)) 内の各変数をループしようとしています。それは問題ありません。「EnvironmentVariable[@Name = 'something']」が表示されますが、$variable.Name または $variable.Key を介して変数から名前 (「何か」) を取得しようとしても機能しません。$environment.Variables.Keys をループしてみましたが、まだ何もありません。過去数年間 NANT を使用しているため、パワー シェル スキルは少し弱いですが、見られないものはありますか?

前もってありがとう、アンソニー

既存のパワー シェル スクリプトのスニペットを追加します。太字の $variable.Name は、CreateETLPackages タスク内では機能しません。このスクリプトから呼び出されるセットアップおよびその他のスクリプトが多数あるため、すべてを含めていません。$variable.Name がデバッグ ステートメントで返されると、元の投稿で述べたように、"EnvironmentVariable[@Name = 'something']" が返されます。

タスク CreateSSISFolder -Depends CreateSSISCatalog { if (!$script:SSISCanBeDeployed) { return }

# Create the project for the packages in the catalog
$catalog = $script:SSISCatalog
if ($catalog.Folders.Count -eq 0) {
    Write-Host "Creating folder $SSISFolderName ..."
    $script:SSISFolder = New-Object "Microsoft.SqlServer.Management.IntegrationServices.CatalogFolder" ($catalog, $SSISFolderName, "Folder for EDGE ETL packages")            
    $script:SSISFolder.Create()  
    Write-Host "... done"
} else {
    Write-Host "SSIS folder $SSISFolderName already exists; skipping create"
}

}

タスク CreateSSISEnvironment -Depends CreateSSISFolder { if (!$script:SSISCanBeDeployed) { return }

# Create the environment in the project
$folder = $script:SSISFolder
$environment = $folder.Environments[$SSISEnvironmentName]
if ($environment -eq $null) {
    # Create the environment
    Write-Host "Creating environment $SSISEnvironmentName ..."
    $environment = New-Object "Microsoft.SqlServer.Management.IntegrationServices.EnvironmentInfo" ($folder, $SSISEnvironmentName, "Environment to configure the SSIS packages")
    $environment.Create()
    Write-Host "... done"

    # Now create the variables (Constructor args: variable name, type, default value, sensitivity, description)
    $environment.Variables.Add("TestDatabase", [System.TypeCode]::String, "Data Source=$SSISServerName.TestDatabase;User ID=<USERNAME>;Password=<PASSWORD>;Initial Catalog=EdgeAviTrack;Provider=SQLNCLI11.1;Persist Security Info=True;Auto Translate=False;", $false, "Connection string for TestDatabase database")
    $environment.Alter()

} else {
    Write-Host "Environment $SSISEnvironmentName already exists; skipping create"
}

}

タスク CreateETLPackages -依存 CreateSSISFolder, CreateSSISEnvironment { if (!$script:SSISCanBeDeployed) { return }

# Get list of ETL .ispac files in the solution
$SSISProjects = GetListOfDeploymentFiles "*.ispac"
if ($SSISProjects -ne $null) {
    $folder = $script:SSISFolder
    $environment = $folder.Environments[$SSISEnvironmentName]
    if ($folder -ne $null) {
        foreach ($file in $SSISProjects) {
            # Read the ispac file, and deploy it to the folder            
            [byte[]] $projectFile = [System.IO.File]::ReadAllBytes($file.FullName)
            $nameParts = $file.Name.split(".")
            $curProjectName = [string]::join(".", $nameParts[0..($nameParts.length - 2)])
            Write-Debug "Deploying SSIS project $curProjectName"
            $project = $folder.DeployProject($curProjectName, $projectFile)

            if ($project.Status -ne "Success") {
                Write-Error "SSIS packages did not deploy correctly!"
            } else {
                # Get the full information set, rather than the short version returned from DeployProject
                $project = $folder.Projects[$curProjectName]
            }

            # Connect the project to the environment to stitch up all the connection strings
            if ($project.References.Item($SSISEnvironmentName, ".") -eq $null) {
                Write-Host "Adding environment reference to $SSISEnvironmentName ..."
                $project.References.Add($SSISEnvironmentName)
                $project.Alter()
                Write-Host "... done"
            }

            # Connect all the project parameters to the environment variables
            Write-Host "Adding connection string references to environment variables ..."

            foreach($varialble in $environment.Variables) {
                try {
                    $project.Parameters["CM." + **$varialble.Name**  + ".ConnectionString"].Set([Microsoft.SqlServer.Management.IntegrationServices.ParameterInfo+ParameterValueType]::Referenced, **$variable.Name**)
                }
                catch {
                    Write-Debug "Unable to set connection string **$variable.Name** on SSIS project $curProjectName"
                }
            }
            $project.Alter()
            Write-Host "... done"
        }
    }
}

}

4

1 に答える 1

0

わかりました私は私の問題を見つけました。$($object.Name) を使用して必要なものを取得する必要があるように見えます。助けを求めて手を差し伸べてくれた人々に感謝します。

ありがとう、アンソニー

于 2012-08-14T00:15:50.487 に答える