SSIS Data Flow Task hangs on excecution of Pre-excecute phase

前端 未结 9 566
既然无缘
既然无缘 2020-12-29 21:11

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 th

9条回答
  •  萌比男神i
    2020-12-29 21:29

    Another thing to try, apparently, is to check the "Use 32 bit runtime" checkbox--this is if you see the problem when running the package as a job in your DB server (which is 64-bit, and in my case at least, SQL Server 2008R2). Go to the job, right-click > Properties… > Steps > right-click your SSIS package step > Properties… > General > Execution options (tab) > Use 32 bit runtime.

    I was seeing this problem, but only once I deployed the package to the server (I had a logging provider enabled so I could see it get stuck after the "Pre-Execute" phase). It always ran fine in BIDS (and fine on another server, oddly…still not sure why that is).

    A thread here tipped me off to this solution that seems to work--though my problem shows up intermittently, so YMMV. There are other possible solutions in that thread as well.

提交回复
热议问题