Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ZMike
Posting Yak Master
110 Posts |
Posted - 2012-10-31 : 15:48:06
|
I have a package that I need to be able to run from Task Scheduler and run on a machine instead of the Server due to some of the instances of my SSIS.When I run this DTEXEC.exe /F "M:\Visual Studio 2010 Projects\MIKE\Mail\Package.dtsx" I get the log below.Here is the logMicrosoft Windows [Version 6.1.7601]Copyright (c) 2009 Microsoft Corporation. All rights reserved.C:\Users\>DTEXEC.exe /F "M:\Visual Studio 2010 Projects\MIKE\Mail\Package.dtsx"Microsoft (R) SQL Server Execute Package UtilityVersion 10.50.2500.0 for 32-bitCopyright (C) Microsoft Corporation 2010. All rights reserved.Started: 3:37:45 PMError: 2012-10-31 15:37:45.36 Code: 0xC001700A Source: Description: The version number in the package is not valid. The version number cannot be greater than current version number.End ErrorError: 2012-10-31 15:37:45.36 Code: 0xC0016020 Source: Description: Package migration from version 6 to version 3 failed with error0xC001700A "The version number in the package is not valid. The version number cannot be greater than current version number.".End ErrorError: 2012-10-31 15:37:45.36 Code: 0xC0010018 Source: Description: Error loading value "<DTS:Property xmlns:DTS="www.microsoft.com/SqlServer/Dts" DTS:Name="PackageFormatVersion">6</DTS:Property>" from node "DTS:Property".End ErrorCould not load package "M:\Visual Studio 2010 Projects\MIKE\Mail\Package.dtsx" because of error 0xC0010014.Description: The package failed to load due to error 0xC0010014 "One or more error occurred. There should be more specific errors preceding this one that explains the details of the errors. This message is used as a return value from functions that encounter errors.". This occurs when CPackage::LoadFromXML fails.Source:Started: 3:37:45 PMFinished: 3:37:45 PMElapsed: 0.109 secondsC:\Users\>My issue is ** I think ** is that I downloaded SQL Server 2012 and built the SSIS in VS 2010 and maybe when it's seeing the package it's hitting one of the other SQL Servers installed on my machine. I currently have 2008 , 2008R2 and 2012. I did find this linkhttp://blogs.msdn.com/b/ramoji/archive/2008/12/24/package-migration-from-version-3-to-version-2-failed-with-error-0xc001700a-the-version-number-in-the-package-is-not-valid-the-version-number-cannot-be-greater-than-current-version-number.aspxBut I could not figure out how to make this work.I had tried this to no avail :C:\Program Files\Microsoft SQL Server\110\DTS\Binn\DTEXEC.exe /F "M:\Visual Studio 2010 Projects\MIKE\Mail\Package.dtsx" If anyone has any suggestions I'd greatly appriciate it ! |
|
ZMike
Posting Yak Master
110 Posts |
Posted - 2012-11-01 : 11:01:37
|
I figured it out . For anyone having similar issuescd "C:\Program Files\Microsoft SQL Server\110\DTS\Binn\"DTEXEC.exe /F "M:\Visual Studio 2010 Projects\MIKE\Mail\Package.dtsx" exit |
|
|
|
|
|