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: 
HookemHorns
Contributor
Contributor

Data flow

So I created a data flow recently that I believe to be a little clunky. I have several dbinputs, create tables, and dboutputs. I basically create a table that I want to insert into, select what I want in dbinput and then insert it into said created table using dboutput. This will create a lot of tables and I was wondering if there was a way where I could create these tables in memory and only create one final table at the end that I could have inserted into the database? What tool should I use in the palette?

Labels (3)
1 Solution

Accepted Solutions
vikramk
Creator II
Creator II

Hi @Not defined Not defined​ ,

If you want to cache to memory, you could possibly use tBufferInput and tBufferOutput, thashinput and thashoutput components as pairs will help you cache the data to memory as output and you can retrieve whenever you need from cache again. Please go through below url.

https://help.talend.com/reader/wDRBNUuxk629sNcI0dNYaA/Rqfj~ssCzCvBc~_TNU7Psg

Please mark it as solution if it helps.

 

View solution in original post

2 Replies
vikramk
Creator II
Creator II

Hi @Not defined Not defined​ ,

If you want to cache to memory, you could possibly use tBufferInput and tBufferOutput, thashinput and thashoutput components as pairs will help you cache the data to memory as output and you can retrieve whenever you need from cache again. Please go through below url.

https://help.talend.com/reader/wDRBNUuxk629sNcI0dNYaA/Rqfj~ssCzCvBc~_TNU7Psg

Please mark it as solution if it helps.

 

HookemHorns
Contributor
Contributor
Author

Hi @Vikram Kumar​

My example is a little bit different since I'll be outputting the final result to a db table. Also I don't get how you can read these tables from memory. Sorry little new at Talend and trying to piece everything together. Trying to duplicate a data flow I currently have in magic ETL (DOMO). Thanks!