【发布时间】:2017-10-18 15:41:45
【问题描述】:
我很高兴能够参与一个 SSIS 项目,该项目将(希望)部署到数据工厂。在设置 SSIS 作业时,我添加了一个从 Azure Blob 存储下载文件的步骤。添加 Azure Blob 下载任务后,在控制流中,并进入存储配置(测试成功),我收到以下错误:
SSIS package "C:\....\Package.dtsx" starting.
Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
Error: 0xC001000E at Package: The connection "{27A6966C-8398-4C75-84C3-6007B96EEED4}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
Error: 0xC001000E at Package: The connection "{27A6966C-8398-4C75-84C3-6007B96EEED4}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
Error: 0xC001000E at Package: The connection "{27A6966C-8398-4C75-84C3-6007B96EEED4}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
Error: 0xC0024102 at Azure Blob Download Task: The Validate method on the task failed, and returned error code 0x80131500 (The connection "{27A6966C-8398-4C75-84C3-6007B96EEED4}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
). The Validate method must succeed and indicate the result using an "out" parameter.
Error: 0xC0024107 at Azure Blob Download Task: There were errors during task validation.
Warning: 0x80019002 at Package: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (10) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
SSIS package "C:\....Package.dtsx" finished: Failure.
The program '[18968] DtsDebugHost.exe: DTS' has exited with code 0 (0x0).
我已经确认这里的 GUID 确实指向 XML 中的 Azure Blob 连接。我已经在几台 PC 上重新创建了这个问题,并且我已经删除并重新创建了连接和下载 Blob 任务数十次。 我不确定如何解决或获取有关该问题的更多信息。对于它的价值,在调试模式下启动后很快就会弹出这个错误 - 在这个错误之前只有一些预验证运行(成功)。任何帮助表示赞赏。谢谢!
【问题讨论】: