-
-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting two database streams from the same database connection in parallel #427
Comments
Just worth to mention, that this is the new beta version which we are using to exercise data transfers from old SQL instance. |
I am working on ODBC and OLEDB at the moment. I will let you know when it is OK. The related issue is this one: #423 |
I realise I didn't answer correctly to your question. So it you want to avoid parallelization, you will have to use |
@paillave could you add |
It will be added... the (complete) documentation is an ongoing project! |
Hello, nice package you have here for ETL in .NET!
I have a question regarding database streams:
Suppose I need to define two streams for two different tables from the same ODBC database connection:
When executing this I get this error from the ODBC driver:
This implies that the cursor for the connection has to be looped through to completion before being able to get another stream. Is there any way that this could be remedied? The source database is an old SQL Server 2000, so we're forced to use ODBC.
Thank you.
BTW, it works if I output one stream to a file and then define a new stream sequentially like this:
The text was updated successfully, but these errors were encountered: