I have a simple data flow task setup...
When you tried independent data flows, did you add a precedence constraint so that they were executing sequentially rather than in parallel
If the problem shows up when you are only running a single DataReader Source, I'd see if there are any known issues with the ODBC driver.
Corey M. wrote:
When I try them sequentially, it works correctly every time. This is an acceptable workaround, but I am still curious to determine the reason for this strange behavio
My guess is that it's an ODBC driver issue. Perhaps table locking or something like that. Who knows. You'll have to check for any known issues with the ODBC driver provider.
You may wish to try the flowsync transform, placing one FlowSync transform between each source adapter and the union all transform (for a total of two FlowSync transforms).
The FlowSync transform is a speed governor, so a particular source flow doesn't get too far ahead of the other one. For something like union all, one source outpacing another should not be an issue, but you could certainly give it a shot.
To install the transform, you'll need to copy the assembly (FlowSync.dll) into two places and add it to the toolbar.
1. For runtime purposes, copy the FlowSync.dll into the global assembly cache, which is "%windir%\assembly" or typically the directory c:\windows\assembly. For design-time purposes, copy the same FlowSync.dll into the Integration Service PipelineComponents directory, which is typically located at "%ProgramFiles%\Microsoft SQL Server\90\DTS\PipelineComponents", If you're running 64 bit, the design-time installation directory is typically located at "%ProgramFiles(x86)%\Microsoft SQL Server\90\DTS\PipelineComponents".
2. To add flowsync transform to the toolbar, open up BIDS, right click on the toolbox, select "Choose Items...", go to the tab SSIS Data Flow Items, and Select the FlowSync transform, which will then show up appear in the toolbox as an available transform.
Hi Corey,
Mind if I ask you where you got an ODBC driver to access the Unidata database I'm needing to get into one from SSIS myself, but have been unable to locate a driver.
Thanks for any help you can provide!
Jeremy