SSIS Package Crashing

  • Dear All,

    I am migrating SSIS from 2008 to 2016. One of the SSIS package is very large, with about 12-15 dataflow tasks generating various csv/excel files. However only few of them parallelly (based on the day).

    When I run this particular package either from my .net code or directly from dtexec commands, it gets crashed. All other SSIS packages seems OK.

    From the SQL dump file , I just got this Info:

    GetUrlPageData2 (WinHttp) failed: 12007.

    Probably caused by : ACEOLEDB.DLL ( aceoledb+36ea4 )

    Access DB engine is installed on the server.

    Any clues or pointers on this would be useful.

    FYI, I am using windows server 2016 + SQL Server 2016 Std Edition (Integration Services)

  • What does the All Executions report show?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • According to the following link...

    https://docs.microsoft.com/en-us/windows/win32/winhttp/error-messages

    ... the WinHttp error of 12007 means that "The server name cannot be resolved.".  Does the server or user actually have privs to where the spreadsheets are stored?

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

  • I think it's just a misleading error from SQL dump, can it be ?.

    More info - Package works fine when running from Visual studio. Only on the server when  we run manually or from .net program - it gets crashed.

  • GonnaCatchIT wrote:

    I think it's just a misleading error from SQL dump, can it be ?.

    More info - Package works fine when running from Visual studio. Only on the server when  we run manually or from .net program - it gets crashed.

    It's almost certainly to do with permissions. The All Executions report may provide further detail.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • GonnaCatchIT wrote:

    I think it's just a misleading error from SQL dump, can it be ?.

    More info - Package works fine when running from Visual studio. Only on the server when  we run manually or from .net program - it gets crashed.

    Wouldn't be surprised if it's a double hop issue. If you're starting it from another application, or by running SQL in SSMS, then the credentials of the user that started the package are used. I suspect that kerboros isn't configured properly for the double hop, and so credentials are lost; and therefore any permissions with them to access things like file shares.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • I did the setup for All execution report.. I am getting 'UnExpected Termination' & there is no OnError events fired...

  • You might want to try running the package in 32bit mode. It depends if the ACE drivers installed on the server are 32bit or 64bit.

Viewing 8 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic. Login to reply