SSIS package (SQL 2014) always fails when debugging in VS2012 but each individual DataFlow tasks succeeds.
I installed SSDTBI tools for SQL 2014 for Visual Studio 2012 Window 8.1 (64 bit) from the links found here
I've created an SSIS project in VS 2012.
I need to import data from a set of FoxPro DBF files into their equivalent tables in SQL 2014.
I installed the Visual FoxPro OLEDB provider from this page
For each DBF file I set up a Container with 2 tasks - 1 to delete the related SQL table and 1 to import the data from the DBF files.
I've set constraints on the containers so that they will import one by one in sequences.
When I execute each container from within Visual Studio they all succeed.
When I try to execute the package though, the first container succeeds and the second container starts executing.
The first sub-task (the delete) succeeds and the spinning icon is displayed next to the second sub-task (import from the DBF file.)
However the output window pops-up saying the package has finished: Canceled.
There are no errors displayed, but I DO find errors in the Event Viewer / Windows Logs / Application log which includes:
Faulting application path: C:\Program Files (x86)\Microsoft SQL Server\110\DTS\binn\DtsDebugHost.exe
Faulting module path: C:\Program Files (x86)\Microsoft SQL Server\110\DTS\PipelineComponents\OleDbSrc.dll
NOTE - That looks like the path for SQL 2012 - not 2014!
I am logged in with privileges to read and write to the folder where the DBF files are stored, and the SQL connection is using Integrated security, and I have full permissions on the staging database.
Why can I execute each container without error but not as the package.
How can I fix this problem to let me execute the package?
I installed SSDTBI tools for SQL 2014 for Visual Studio 2012 Window 8.1 (64 bit) from the links found here
I've created an SSIS project in VS 2012.
I need to import data from a set of FoxPro DBF files into their equivalent tables in SQL 2014.
I installed the Visual FoxPro OLEDB provider from this page
For each DBF file I set up a Container with 2 tasks - 1 to delete the related SQL table and 1 to import the data from the DBF files.
I've set constraints on the containers so that they will import one by one in sequences.
When I execute each container from within Visual Studio they all succeed.
When I try to execute the package though, the first container succeeds and the second container starts executing.
The first sub-task (the delete) succeeds and the spinning icon is displayed next to the second sub-task (import from the DBF file.)
However the output window pops-up saying the package has finished: Canceled.
There are no errors displayed, but I DO find errors in the Event Viewer / Windows Logs / Application log which includes:
Faulting application path: C:\Program Files (x86)\Microsoft SQL Server\110\DTS\binn\DtsDebugHost.exe
Faulting module path: C:\Program Files (x86)\Microsoft SQL Server\110\DTS\PipelineComponents\OleDbSrc.dll
NOTE - That looks like the path for SQL 2012 - not 2014!
I am logged in with privileges to read and write to the folder where the DBF files are stored, and the SQL connection is using Integrated security, and I have full permissions on the staging database.
Why can I execute each container without error but not as the package.
How can I fix this problem to let me execute the package?