Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Microsoft Access x Talend

I need to extract from a database access .mdb multiple tables, generating a .csv file for each table and then uploading to an azure blob. For this I used an access -> tFilleOutputDelimited -> tAzureStoragePut connection. Is there a component that can pull multiple tables at once to create multiple .csv files?

Note: The way I'm doing I have to do the same procedure for each table separately.

Labels (5)
1 Solution

Accepted Solutions
fdenis
Master
Master

on mdb you must have table liste.
try to use "SELECT * FROM MSysObjects WHERE Type=1 AND Flags=0"
then you will retrieve table liste.

View solution in original post

4 Replies
fdenis
Master
Master

if you have a file with the liste of table to extract.
then use a tFileInput, tFlowToIterate then add iterate Link to RoadShow.
regards,
Anonymous
Not applicable
Author

Thanks for the help, but that still does not solve. I have a .mdb with many tables, where I need to have an output in .csv file, however for each table a .csv file is generated

fdenis
Master
Master

on mdb you must have table liste.
try to use "SELECT * FROM MSysObjects WHERE Type=1 AND Flags=0"
then you will retrieve table liste.
Anonymous
Not applicable
Author

Thank you very much