We are migrating our SQL server 2005 to SQL server 2014 and we have migrated our SSIS packages using SSDT for Visual Studio 2013 and deployed on this new SQL Integration Service server 2014.
These 2014 packages are executed from the VB script and command string generated from the VB script to execute the package is given below. VB script will be finally be called from scheduler.
Current we only tried to execute the VB script from the 32 bit command prompt and faced the version issue as described in my first email below.
Command String:
CMD.EXE /C cd \Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\ & DTEXEC /SQL "\MLdbToOTRdb" /SERVER PDC0US-SQLBIX01\BIXDBP1 /CONFIGFILE "D:\OTR\SSIS\Configfiles\CommonCopy.dtsConfig" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING
We already have working 2014 SSIS packages but on other database 2014 server.
In the log files of this working 2014 SSIS packages we have ' Microsoft (R) SQL Server Execute Package Utility Version 12.0.4100.1 for 32-bit.' in the logs files. This log file is created by the DTEXEC.
But on the new production 2014 database server the SSIS package logs ‘Microsoft (R) SQL Server Execute Package Utility Version 11.0.2100.60 for 32-bit’ in the log files.
Please help.