The version number cannot be greater than current version number

i am deployingmy ssis package which is in 2012.(version 6)
and my ssis server also in 2012.
but i am getting error:
"the version number in package is not valid, the version number cannot be greater than current verison number"
and one more thing how to see ifmy package is in 2012,by looking it in notepad?

Hi coool_sweet,
Based on the error message that "The version number in the package is not valid. The version number cannot be greater than current version number.", we can infer that the underlying cause may be that the current SSIS package is created in SQL Server
2012, while you are trying to open or execute it in SQL Server 2008R2 or earlier versions.
As to your scenario, I guess you are using old version of the DTEXEC instead of the new one to run the package. That means, the exe shipped with 2008R2 or earlier versions is picked up when it is expected to use the one shipped with 2012. So, obviously this
happens when SQL Server 2012 is running along with SQL Serve r2008R2 or earlier versions on the same machine.
To fix this issue, there are three workarounds to correct this.
Hard code the path of SQL Server 2012's DTEXEC while calling the SSIS package as shown below.
C:\Program Files\Microsoft SQL Server\110\DTS\Binn\DTEXEC.exe /F "D:\MyFolder\MyPackage.dtsx"
Rename the old exe in the 2008R2 path to a different name (Example:- C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTEXEC_Old.exe)
Go to PATH environmental variable and edit it in such a way that "C:\Program Files\Microsoft SQL Server\110\DTS\Binn" path appears well before the "C:\Program Files\Microsoft SQL Server\100\DTS\Binn" path.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Error - The version number in the package is not valid. The version number cannot be greater than current version number

    whats does this error mean
    i download 2008 r2 and try to open package but still getting error
    Error 1
    Error loading  The version number in the package is not valid. The version number cannot be greater than current version number.  
    Error 2
    Error loading Package migration from version 8 to version 3 failed with error 0xC001700A "The version number in the package is not valid. The version number cannot be greater than current version number.".  

    can you tell me which version it is >
    i try to fix in dtexec
    getting following error :
    Started:  2:02:13 PM
    Error: 2015-01-30 14:02:14.68
       Code: 0xC000F427
       Source: Member Eligibility
       Description: To run a SSIS package outside of SQL Server Data Tools you must
    install Member Eligibility of Integration Services or higher.
    End Error
    Warning: 2015-01-30 14:02:14.69
       Code: 0x80019002
     Description: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution
     method succeeded, but the number of errors raised (2) reached the maximum allow
    ed (1); resulting in failure. This occurs when the number of errors reaches the
    number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the e
    rrors.
    End Warning
    DTExec: The package execution returned DTSER_FAILURE (1).
    Started:  2:02:13 PM
    Finished: 2:02:14 PM
    i cannot upgrade original package

  • The code segment cannot be greater than or equal to 64K. - Windows 8

    Hello,
    I am having an issue on some windows 8 systems, a crash occurs in NtSetEvent, the exception thrown is "0x000000C8: The code segment cannot be greater than or equal to 64K.".
    This crash only occurs on Windows 8.
    The callstack doesn't help much
        KERNELBASE.dll!_RaiseException@16()    Unknown
        ntdll.dll!_NtSetEvent@8()    Unknown
        kernel32.dll!@BaseThreadInitThunk@12()    Unknown
        ntdll.dll!__RtlUserThreadStart()    Unknown
        ntdll.dll!__RtlUserThreadStart@8()    Unknown
    Could it be a bug within windows 8 ? If not what steps should I take to find the cause of this crash ?
    Thank you,
    Max

    I have a feeling like you have corrupted something.  Likely by stomping on memory due to a bug in your program such as a buffer overrun or use of a deleted object in C++.
    Although you may have incurred corruption to your registry through a variety of means, not limited to bad disk drives, or the unintentional write of bad data due to a bug in your program, if you are experiencing this on multiple systems, then registry corruption
    is less likely.  Which brings me back to the idea that you have a bug in your code that has trashed memory somehow.
    The stack traces and error codes do not indicate the cause of the problem.
    What does your program do??
    Without seeing at least some of the code, or knowing how big the scope of the code is, it's not useful for me to start guessing specifics of what may have happened.  But since you're not disclosing anything at all about your code apart from your exception,
    I'm forced to do some guesswork and just give general advice.
    Here are some easy classical strategies for locating the cause of the problem:
    Build your code in debug mode and run your code in the debugger.  (Yes, some people need to be told this.)
    Bisect the problem through revision control.  Back up to when the problem didn't happen and find the last revision that causes the problem.  (If you're not using a revision control system, start now.)
    Bisect the problem by eliminating chunks of code.  Trim out functionality until the problem goes away.
    Write unit tests.  Test the various pieces of your program to eliminate bugs.  At the very least, make use of assertions.
    Have a look at what your program is DOING when the crash happens.  Certainly there must be a cause.  Try to isolate the problem by associating it with a certain activity in your program.  Gate off functionality by introducing places where
    your program waits before proceeding.  At some point, you'll pass a point where the error can now occur.
    Run code analysis on your project and see if it comes up with any possible culprits.
    Don't ignore compiler warnings, they often indicate something that can turn into a bigger problem.  Compile at the highest warning level.
    Look at your usage of various API functions for logical mistakes.  Here are some examples:
    When using third party libraries or SDKs, have you initialized libraries appropriately?  Have you called all the appropriate initialization functions and used the APIs as intended?  Read documentation and make sure you are using calls appropriately.
    For functions that take a HANDLE, such as SetEvent, are you passing a valid handle?  Have you closed the handle but kept the old handle value around?
    When storing pointers to objects, have you accidentally deleted an object but kept its pointer around, only to make use of the pointer at a later time in your program?  This is particularly harmful when performing a write operation as you can corrupt
    just about anything.
    Are you using variables without giving them an initial value?  You may get unexpected values for variables if you do not initialize them.  This is particularly important for stack variables.
    When using arrays or string buffers, have you allocated enough storage for the bytes you are writing?  C++ doesn't detect reading or writing with an invalid array index as a problem.  It happily reads or writes past the end of your intended
    storage.  Such offences are called "buffer overruns".
    When multi-threading, are you taking steps to ensure data integrity?  Unsynchronized access to data from multiple threads is a notorious cause of strange and difficult to reproduce bugs.  Your data passes through states that you may not expect
    that can be observed by unsynchronized threads.  Use locking mechanisms appropriately and marshal your data diligently.
    Are you relying on valid input from an external source beyond your control such as a network client, database, or file?  Diligently validate all input that comes from an external source.  Be prepared for any situation that you can't control at
    compile time.
    Are you ignoring error codes?  Some functions may fail, but you may be assuming they have succeeded and then gone on to use invalid data.
    Look for mathematical errors.  Calculation of indices of arrays are a notorious culprit.  Beware of off by one errors.  Indices start at zero and go up to N-1, where N is the number of elements in the array.
    Beware of sentinel values.  Some functions such as "IndexOf" will return an index of -1 when not found and can result in a miscalculation of an actual index.
    Are you making use of
    RAII techniques in your code?  Failing to correctly allocate and deallocate resources can cause problems.
    Are you making use of unsafe casts?  C-Style casts say "I know what I'm doing", and you can get into dangerous situations.  Prefer static_cast<> over a C-Style cast wherever possible.
    Also look at your project settings for problems
    Have you accidentally mixed incompatible compiler settings between components?
    Approach debugging with an open mind.  Mark Twain said, "It ain't what you don't know that gets you into trouble. It's what you know for sure that just ain't so."

  • Firefox downloads previously downloaded versions of zipped files rather than current version.

    On a website I manage, I downloaded a zipped MS Word file. After making changes to the file and uploading the modified file to my server, Firefox still downloads the old version of the zipped file. In fact, if I rename the file (so the link now points to a file that no longer exists on the server), the previously downloaded version of the file is STILL sent. I've used two methods (FireFTP and the server company's file manager) to rename the file, and the non-existent file is still sent.

    I did reload the page (using all the methods you suggested), but still the old file. You mentioned bypassing the cache; is that something different than clearing the cache?
    I don't think this is Firefox specific; the same thing is happening with IE. I'm also working with the server company to see if the problem is at their end.

  • Scheduling not possible; duration cannot be greater than interval

    Hi,
    i am runing one yard management scenario.When i am trying to schedule the activity of a vehicle in yard monitor system showing the message "Scheduling not possible; duration cannot be greater than interval
    Could you please help in this regard?
    Sandip

    can you tell me which version it is >
    i try to fix in dtexec
    getting following error :
    Started:  2:02:13 PM
    Error: 2015-01-30 14:02:14.68
       Code: 0xC000F427
       Source: Member Eligibility
       Description: To run a SSIS package outside of SQL Server Data Tools you must
    install Member Eligibility of Integration Services or higher.
    End Error
    Warning: 2015-01-30 14:02:14.69
       Code: 0x80019002
     Description: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution
     method succeeded, but the number of errors raised (2) reached the maximum allow
    ed (1); resulting in failure. This occurs when the number of errors reaches the
    number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the e
    rrors.
    End Warning
    DTExec: The package execution returned DTSER_FAILURE (1).
    Started:  2:02:13 PM
    Finished: 2:02:14 PM
    i cannot upgrade original package

  • Datetime in log is greater than current date, how to adjust them

    our env is jes8.1 and solaris 8, and the datetime of log in jes is 8 hours greater than current date in solaris, I want to know how to adjust datetime of log to current date?

    Type
    #date
    at the prompt and check whether the log file date/time and the system date/time are the same. I guess the log file uses the system date/time. if tats the case then change the system date/time

  • Date is greater than current time plus 24 hours

    Hi,
    may I know how to pull data from a table where date is greater than current time (+24 hours)... my date field is in the following format 15-MAR-2013 20:07:00
    I want to do something like this
    select * from table_A where date_field > (sys_date_time) +24h
    as an example, when I run a query @ 4 PM on March 26, I want to pull data that has date > 4 PM March 27
    Thanks

    >
    may I know how to pull data from a table where date is greater than current time (+24 hours)... my date field is in the following format 15-MAR-2013 20:07:00
    >
    No - a DATE column does NOT have a value in a format like that. The value is stored in an internal binary format. The format you posted might be your NLS_DATE_FORMAT or just a format you provided to display that date value.
    >
    I want to do something like this
    select * from table_A where date_field > (sys_date_time) +24h
    as an example, when I run a query @ 4 PM on March 26, I want to pull data that has date > 4 PM March 27
    >
    As others have said to add 24 hours to whatever value SYSDATE has at the time the query is executed just use 'SYSDATE + 1'.
    But there are at least two caveats:
    1. You can't really run a query '@4 PM'. You don't have ANY control over exactly WHEN the query will begin execution. The only way to control the date used is if you provide it yourself as part of the query.
    2. Your 'date_field > SYSDATE + 1' query will NOT see inserted/updated data that has not been committed. So a similar query later may return a different result set even if it appears to cover the same time period. In other words you can't reliably use a DATE column like that to pull sequential sets/batchs of data unless there is no DML occuring on the data that might affect the results.

  • Credit Allowed cannot be greater than default

    Dear Gurus.
    I want to cancel the Excise Part 2 Entry , But system gives me one error
    " credit Allowed cannot be greater than default  8.66-."
    I am waiting your Reply.
    Regards,
    Riten Patel .

    Hello Plauto Abreu .
    we have done GRV, part 1 entry, and part 2 entry.
    we have
    Base Value 1,144.44
    BED       445.45
    ECS       8.66
    HSCess    4.45
    AED       197.00
    then we have  cancel the  GRV, then we want to cancel the part 2 entry by J1IEX with rejection code.
    but one warning message is coming that  credit Allowed cannot be greater than default 8.66 -.
    system allow to post the document
    system generate following
    PART I entries updated :
    Entries created   : N.A.
    Serial no              : N.A.
    Entries canceled: N.A.
    PART II entries updated :
    Entries created  :  1 inRG23A
    Serial no             : N.A.
    Reversed           : 0100013408
    Acc. Doc.           : N.A..
    then we want to cancel the part1 entryusing cancel  j1iex.
    now we have save it  , system genarate following
    Excise Header and Item Details :
    o Excise Invoice 9000007162 / 2010 will be
    marked with status 'Cancelled'.
    o All line items will be marked with status
    'Cancelled'.
    PART 1 :
    o 7 entries will be marked as status
    'Cancelled'.
    PART 2 :
    o No Credit has been availed.
    Cancel? Are you Sure? "
    then system gives us one error message that
    "Reverse the availed CENVAT credit before cancelling excise invoice."
    i am waiting your reply.
    regards,
    riten patel

  • When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CC

    When trying to install an extension for InDesign CC 2014 I get an error message saying that the extension only works with version 7.0 or greater. My version is 10.0.0.7 x64 Build I was using this extension fine with InDesign CCError message with InDesign CC 2014

    Used the 64bit version before CC 2014 as well so don't think that's the issue. Here is the text in the .mxi file if I have missed something:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <macromedia-extension id="PrintUI Tools" name="PrintUI Tools" requires-restart="true" version="3.0.0">
      <author name="PrintUI.com"/>
      <description/>
      <license-agreement/>
      <products>
        <product maxversion="" name="InDesign" primary="true" version="7.0"/>
      </products>
      <files>
        <file destination="" file-type="CSXS" products="" source="PrintUIManagement.zxp"/>
      </files>
      <update url="http://printui.com/public/downloads/updates/printui_tools_update.xml"/>
    </macromedia-extension>

  • Hi, before I make the change to OS Mountain lion I would like to know if it supports Quicken Essential version 1.6.1? My current version is OS 10.7.4?

    Hi, before I make the change to OS Mountain lion I would like to know if it supports Quicken Essential version 1.6.1? My current version is OS 10.7.4?

    The Quicken Essentials For Mac website probably has the answer.  You might check there. 
    I just did check there and it says Lion.  It does not mention Mountain Lion.  You might have to contact their customer support people and find out if they have an upgrade or are in the process of releasing one.

  • I am trying to open a PDF file and it keeps telling me I need a later version of Abode Reader. My current version is the latest version.

    I am trying to open a PDF file and it keeps telling me I need a later version of Abode Reader. My current version is the latest version.

    Thanks for responding.
    I am using a Mac with OS X Yosemite Ver. 10.10.1, Adobe Version 11.0..1 (which is the latest for Mac)
    It is an online PDF and I am using Safari Ver. 8.0.2
    This is the message I am getting when I try to open it:
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html
    For further support, go to www.adobe.com/support/products/acrreader.html

  • Will future iMovie be better than current version?

    I am really frustrated with my current version of iMovie (08). I would like to see the old version come back...the one that allowed me to edit sound levels EASILY and had the timeline on the bottom.  Is there a chance this will come back?
    I just liked that way I could sit down and edit the video, add soundtracks, adjust sound levels, etc WITHOUT referring to video tutorials and help files.
    Thanks in advance.

    I am really frustrated with my current version of iMovie (08)
    Give iMovie 11 a try, it's a definite improvement over iMovie 08.
    I would like to see the old version come back...the one that allowed me to edit sound levels EASILY and had the timeline on the bottom.
    If you like iMovie 06 better, as MANY do, you can continue to use it.  I find that it works perfectly with my Mac Pro, iDVD 08/09/11 and the latest Mac OS.  I use iMovie 06 more than iMovie 11.

  • I would like to try FF5 without losing my current version. Can I update my current version of FF and install the update in a different directory so I can have two versions at the same time?

    current version is 3.6.17

    I guess nobody knows if the crash that occured was legitimate or not?  Apple phone support could do nothing for me, so I guess I am left to drive 45 minutes to the nearest store.

  • CC apps version numbers? Can't find current version number of apps in Download Center

    Is there a way to see the current version numbers of the different apps on the Adobe website, or in CC Download Center? All I see is that they are version CC.
    Well, that doesn't tell me much...is it After Effects 12.0, 12.1? Photoshop 14.0, 14.1, 14.1.2? I can't tell which is the most current from your website. The CC app isn't any better as I can't trust what it says. I have apps installed, but it doesn't recognize them – It's shows that I need to install them. Is that because I need to update it? It doesn't show as an update, only that I need to install it.
    If I could tell from your website (Download Center) what the current release version of the software is, I could at least compare it to the version I have installed on my machine.

    Hello there, carlafromswisher.
    One thing that could be playing a roll in your issue might be the Country your App Store is set to. In this case, the apps may be available in the French store, and not the US store. The following Knowledge Base article offers up how to change the country of your Store:
    Change the country of your iTunes Store, App Store, iBooks Store, and Mac App Store account
    http://support.apple.com/kb/HT6119
    Change your country on iPhone, iPad, or iPod touch
    Tap iTunes Store, App Store, or iBooks Store.
    At the bottom of the Featured page, tap Sign In.
    If you're already signed in, skip to step 5.
    Tap Use Existing Apple ID.
    Enter your Apple ID and password and tap OK.
    Tap your Apple ID.
    Tap View Apple ID or View Account.
    Tap Country/Region.
    Tap Change Country or Region.
    Tap the Store menu and tap your country.
    Tap Next.
    Review the Terms and Conditions and Apple Privacy Policy.
    Tap Agree if you agree to the terms and conditions.
    In the prompt that appears, tap Agree.
    Select a payment method and enter your payment information.
    Enter your billing address and tap Next.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • ACS5.3 - VMWARE Version - TACACS+ response latency greater than 3 seconds

    Need your help to close this error .. is this due to server process delay ?
    Cisco Secure ACS - Alarm Notification
    Severity: Information
    Alarm Name
    TAFE ACS - PROCESS STATUS
    Cause/Trigger
    Alarm caused by TAFE ACS - PROCESS STATUS threshold
    Alarm Details
    Alarm details are not available
    Generated On
    2014-09-08 14:14:00.0
    Name:
    TAFE ACS - PROCESS STATUS
    Description:
    RADIUS/TACACS+ response latency greater than 3 seconds

    Hello,
    You can customize the threshold values with help of the following cisco docs:
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_system/5.0/user/guide/monit_report.html#wp1053255
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_system/5.2/user/guide/viewer_monitoring.html#wp1099583

Maybe you are looking for

  • CalDAV Calendars No Longer Work in Mountain Lion?!

    Since upgrading to Mountain Lion, CalDAV no longer works for me - it fails to log in to the server (which I know is working because the same credentials and address still work on my iPhone and iPad).  I've tried deleting and re-adding the calendar an

  • Media Encoder crash in CS6. Could not read from the source. Check if it has moved or been deleted.

    I'm having a problem getting Media Encoder to get past the dynamic link portion of encoding a time line sequence. I can send it over to Media Encoder, but it crashes consistently after the yellow bar saying something about dynamic link. I have CS6 in

  • IMovie cannot import iPhoto at all

    I'm unable to import any iPhoto content at all into iMovie.  I'm running iMovie 11 (9.0.4) and iPhoto 11 (9.0.5) on an iMac running OS X 10.7.1.  The basic problem is that iMovie is not able to load iPhoto content into the photo panel.  It just hangs

  • Check print setting in ZRQDSES20

    Hi gurus, My program is a copy of the standard one RQDSES20 for printing sample drawing instruction. Based on the setting in the control key of the inspection plan, I would like to automatically print or not print sample drawing instruction @ MIGO. T

  • ''Configuration error 16 and where is the PCD or the SLStore folder?

    I installed photoshop cs5 and whenever i tried to open it there was appeared a message that was told me that here is a configuration error ''error 16'' and something about language packets.What lame thing is it?I have installed it 3 times and the sam