gpt4 book ai didi

powershell - 将变量传递给 SSIS 包中的 powershell 脚本

转载 作者:行者123 更新时间:2023-12-04 00:21:17 26 4
gpt4 key购买 nike

我正在尝试将 SSIS 变量传递到通过 SSIS 中的进程任务运行的 PowerShell 脚本中,如果有任何区别,我将使用 SSIS 2008

这是我使用的 powershell 脚本的副本,在使用硬编码值执行时运行良好

param ([string]$SourceServer, [string]$DestinationServer, [string]$Filename )

$SourceServer = "SERVERA"
$DestinationServer = "SERVERB"
$Filename = "DbNAME.mdf"

$SourcePath = "\D$\Data\"
$DestinationPath = "\D$\Data\Backups\"

$Source = '\\' + $SourceServer + $SourcePath + $Filename
$Destination = '\\' + $DestinationServer + $DestinationPath + $Filename

copy-item -path $Source -destination $Destination -verbose

如果我对 param's 进行硬编码,我可以让 PowerShell 脚本正常运行,但是一旦我将其更改为变量,变量值就不会被传递

在流程任务中,这是可执行文件
"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"

参数字符串正在正确构建,所以我知道正在传入变量值
-ExecutionPolicy Unrestricted -File "C:\Qarefresh.ps1" "DbaseA.mdf"

这是表达式的代码
"-ExecutionPolicy Unrestricted -File \"" +  "C:\\Qarefresh.ps1\" \"" + @[User::QA_FileName] + "\""

我对 PowerShell 比较陌生,所以如果我错过了一些基本的东西,请道歉,但我已经接近用这个来拔头发了

预先感谢您提供的任何帮助

最佳答案

调用 PowerShell 时需要指定参数名称。

这是 PowerShell 脚本。

param ([string]$SourceServer, [string]$DestinationServer, [string]$Filename)

[string]$SourcePath = "\I$\StackOverflow\Xp\XpSsisPowerShell\Input\";
[string]$DestinationPath = "\I$\StackOverflow\Xp\XpSsisPowerShell\Output\";

[string]$Source = "\\" + $SourceServer + $SourcePath + $Filename;
[string]$Destination = "\\" + $DestinationServer + $DestinationPath + $Filename;

Copy-Item -Path $Source -Destination $Destination;

然后您可以从这样的命令提示符下测试脚本,传递参数。
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -File I:\StackOverflow\Xp\XpSsisPowerShell\Script\CopyFile.ps1 -SourceServer Baobab -DestinationServer Baobab -Filename TestData.txt

enter image description here

并且文件被复制到输出文件夹。

enter image description here

要从 SSIS 包调用 PowerShell 脚本,请首先设置必要的变量。

enter image description here

然后添加一个执行流程任务。在进程选项卡上,设置可执行字段。
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe

enter image description here

使用以下表达式设置 Arguments 字段:
"-ExecutionPolicy Unrestricted -File I:\\StackOverflow\\Xp\\XpSsisPowerShell\\Script\\CopyFile.ps1 -SourceServer " + @[User::SourceServer] + " -DestinationServer " + @[User::DestinationServer] + " -Filename " +  @[User::Filename]

enter image description here

在运行包之前确保输出文件夹为空。 (这里没有作弊!)

enter image description here

执行 SSIS 包。

enter image description here

并将文件复制到输出文件夹。

enter image description here

顺便说一句,将 $ 放在双引号中时需要小心,因为变量名会被替换,如下所示:

enter image description here

关于powershell - 将变量传递给 SSIS 包中的 powershell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37160149/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com