I have an SSIS package which I am running via DTEXec using a batch file, it looks like this:
cd C:\Program Files (x86)\SonicWALL\SSL-VPN\NetExtender
NECLI connect -s test.co.uk:4433 -d LocalDomain -u Development -p password
cd C:\Program Files\Microsoft SQL Server\120\DTS\Binn
dtexec.exe /f "\\local\it$\Application Development\.NET Projects\ReportingTool\Integration Services Project1\Integration Services Project1\Package.dtsx"
cd C:\Program Files (x86)\SonicWALL\SSL-VPN\NetExtender
NECLI disconnect
PAUSE
REM IF ERRORLEVEL 1 powershell -file C:\Users\admin\Documents\SendEmailScript_LIVE.ps1 -clientid 2
I use NetExtender to connect to our live server, this is so I can push data from our internal server to the live server. If I run the SSIS package in Visual Studio, it works fine. But when I try to run it via Exec, it fails. With this error: The version of ODBC source is not compatible with this version of the dataflow
Can anyone help?