“Runtime error Exception has been thrown by the target of an invocation” from Script task

后端 未结 6 1330
后悔当初
后悔当初 2020-12-06 17:41

I have a SSIS package with a script task, I get the following error when i try to run it in my local system. It works fine for my collegues as well as in production. However

6条回答
  •  星月不相逢
    2020-12-06 17:56

    I had the same Problem (i.e. the same error code Error: 0x1 ...).

    The issue was with some of the libraries referenced from a missing folder.

    Removing the references and adding them back from the correct path fixed the issue.

    The Microsoft Reference (https://msdn.microsoft.com/en-us/library/ms345164.aspx) related to the Error code is very generic and doesn't help you much. However, reading other articles it is quite likely it indicates an unknown failure reason to run the Script Task.

    • Hexadecimal code: 0x1
    • Decimal Code: 1
    • Symbolic Name: DTS_MSG_CATEGORY_SERVICE_CONTROL
    • Description: Incorrect function.

提交回复
热议问题