SSIS Data Flow Task hangs on excecution of Pre-excecute phase(SSIS 数据流任务在预执行阶段的执行中挂起)
问题描述
我有一个正在执行的数据流任务.
流程很简单,对不同的表进行两次查询(都有几个连接),然后通过一个公共 id 对输出进行排序和合并,向所有记录添加一个静态列,将行数保存在用户变量中以备后用使用并最终插入到另一个数据库上的表中.我们正在使用 OLE DB 源和目标.源是 MSSQL 2000,目标是 MSSQL 2012
症状:
信息:0x40043006 at Load Sandbox Table,SSIS.Pipeline:准备执行阶段开始.
信息:加载沙盒表中的 0x40043007,SSIS.Pipeline:预执行阶段开始.
在停止执行之前仅此而已.
I have a Data Flow Task that is hanging on excecution.
The flow is simple, makes two queries to different tables (Both with a couple of joins), then sorts and merges the otuputs through a common id, adds a static column to all the records, saves the row count in a user variable for later use and finally inserts into a table on another DB.
We are using OLE DB Sources and Destination. Source is MSSQL 2000 and Destination is MSSQL 2012
Symptoms:
Information: 0x40043006 at Load Sandbox Table, SSIS.Pipeline: Prepare for Execute phase is beginning.
Information: 0x40043007 at Load Sandbox Table, SSIS.Pipeline: Pre-Execute phase is beginning.
And nothing more until the excecution is stopped.
失败的解决方案:
SET FMTONLY OFF;
SET NOCOUNT ON;
在开始时添加.
Failed solutions:
SET FMTONLY OFF;
SET NOCOUNT ON;
added at the beggining.
额外的位:我真的希望有人能帮助我.我对 SSIS 相当陌生,这是我第一次使用它.我通常为我的 ETL 使用 Pentaho,但客户需要在 SSIS 上实施该解决方案.几天来我一直在与这个问题作斗争,我开始没有想法来解决它.
Extra bits:
I really hope someone can help me. I am fairly new to SSIS, this is the first time I use it. I usually work with Pentaho for my ETL but the client needs the solution to be implemented on SSIS. I've been battling with this issue for a couple of days now and I'm starting to run out of ideas to solve it.
当运行命令行时它也卡住了,我得到以下输出:
When ran through the command line it gets stuck too and I get the following output:
Progress: 2013-03-19 14:36:26.21
Source: Load Sandbox Table
Validating: 0% complete
End Progress
Progress: 2013-03-19 14:36:26.21
Source: Load Sandbox Table
Validating: 12% complete
End Progress
Progress: 2013-03-19 14:36:26.22
Source: Load Sandbox Table
Validating: 25% complete
End Progress
Progress: 2013-03-19 14:36:26.22
Source: Load Sandbox Table
Validating: 37% complete
End Progress
Progress: 2013-03-19 14:36:26.23
Source: Load Sandbox Table
Validating: 50% complete
End Progress
Progress: 2013-03-19 14:36:26.25
Source: Load Sandbox Table
Validating: 62% complete
End Progress
Progress: 2013-03-19 14:36:26.25
Source: Load Sandbox Table
Validating: 75% complete
End Progress
Progress: 2013-03-19 14:36:26.25
Source: Load Sandbox Table
Validating: 87% complete
End Progress
Progress: 2013-03-19 14:36:26.25
Source: Load Sandbox Table
Validating: 100% complete
End Progress
Warning: 2013-03-19 14:36:26.26
Code: 0x80047076
Source: Load Sandbox Table SSIS.Pipeline
Description: The output column "ITEM_OID (1)" (47) on output "Merge Join Outp
ut" (28) and component "Merge Join" (11) is not subsequently used in the Data Fl
ow task. Removing this unused output column can increase Data Flow task performa
nce.
End Warning
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 0% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 12% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 25% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 37% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 50% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 62% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 75% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 87% complete
End Progress
Progress: 2013-03-19 14:36:26.27
Source: Load Sandbox Table
Prepare for Execute: 100% complete
End Progress
Progress: 2013-03-19 14:36:26.31
Source: Load Sandbox Table
Pre-Execute: 0% complete
End Progress
Progress: 2013-03-19 14:36:26.31
Source: Load Sandbox Table
Pre-Execute: 12% complete
End Progress
Progress: 2013-03-19 14:36:26.31
Source: Load Sandbox Table
Pre-Execute: 25% complete
End Progress
Progress: 2013-03-19 14:36:26.34
Source: Load Sandbox Table
Pre-Execute: 37% complete
End Progress
Progress: 2013-03-19 14:36:45.69
Source: Load Sandbox Table
Pre-Execute: 50% complete
End Progress
之后它再次冻结.
解决方案 (在这里发布这个是因为我还有 5 个小时无法回答我自己的问题,我会在被允许的情况下回答.)
我终于明白了.
事实证明,验证存在问题,但不仅仅是 SSIS 元素通过了验证,如问题的第四个失败的解决方案中所述.
CONNECTIONS 也得到验证并拥有自己的 Delay Validation 属性,该属性需要设置为 true.
之后,执行时间从 40 多分钟或不运行到整个过程的不到一分钟(这只是更大过程的一个步骤)
我希望遇到同样问题的人可以轻松找到这个解决方案,因为有很多人遇到了这个问题,而且几乎没有在线发布解决方案.
SOLUTION (Posting this here because I can't answer my own question for another 5 hours, I'll do it when I'm allowed to.)
I finally got it.
It turns out there is an issue with the validation, but not only SSIS elements go through that validation, as stated in the fourth failed solution of the question.
The CONNECTIONS also get validated and have their own Delay Validation property, which needs to be set to true.
After that the excecution time went from 40+ mins or no running to less than a minute for the full process (This is just one step of a much bigger process)
I hope people with this same problem can find this solution easily because there's a lot of people running into this problem and nearly no solutions posted online.
简而言之:检查任务中涉及的所有元素,包括数据库连接的延迟验证属性是否设置为 True.
In a nutshell: Check that all your elements involved in the task, including the DB connections have Delay Validation Property set to True.
推荐答案
我终于明白了.事实证明,验证存在问题,但不仅仅是 SSIS 元素通过该验证,如问题的第四个失败的解决方案中所述.CONNECTIONS 也得到验证并拥有自己的 Delay Validation 属性,该属性需要设置为 true.之后,执行时间从 40+ 分钟或不运行到整个过程的不到一分钟(这只是更大过程的一个步骤)我希望遇到同样问题的人可以轻松找到此解决方案,因为遇到此问题的人很多,而且几乎没有在线发布解决方案.
I finally got it. It turns out there is an issue with the validation, but not only SSIS elements go through that validation, as stated in the fourth failed solution of the question. The CONNECTIONS also get validated and have their own Delay Validation property, which needs to be set to true. After that the excecution time went from 40+ mins or no running to less than a minute for the full process (This is just one step of a much bigger process) I hope people with this same problem can find this solution easily because there's a lot of people running into this problem and nearly no solutions posted online.
简而言之:检查任务中涉及的所有元素(包括数据库连接)是否将延迟验证属性设置为 True.
In a nutshell: Check that all your elements involved in the task, including the DB connections have Delay Verification Property set to True.
这篇关于SSIS 数据流任务在预执行阶段的执行中挂起的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SSIS 数据流任务在预执行阶段的执行中挂起
基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01