9
¿Qué tendría que hacer para ejecutar un script de PowerShell en un paquete SSIS?Powershell en SSIS
¿Se necesita instalar PowerShell en el servidor SQL? ¿Cómo llamo el script en SSIS?
Gracias
¿Qué tendría que hacer para ejecutar un script de PowerShell en un paquete SSIS?Powershell en SSIS
¿Se necesita instalar PowerShell en el servidor SQL? ¿Cómo llamo el script en SSIS?
Gracias
Sí, PowerShell necesita ser instalado. Luego, puede usar un Execute Process Task para apuntar al ejecutable de PowerShell y darle al script como un argumento.
así:
Executable: %windir%\system32\WindowsPowerShell\v1.0\powershell.exe
Arguments: C:\path\to\script.ps1