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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Unarchive then move data

I have a task, namely:
From the Informix database, I should get the list of names of files, then fetch from an archive, copy these files into a Temp directory, unpack and then move these files to the input directory.
I think I can use for that the next components:
iInformixInput -> tJava (since I can create dynamic list of filenames and write in a context variable) -> tFileCopy (to copy the data into Temp directory) -> tFileUnarchive (to unpack the file and move to Input directory).
Its a good idea? Or someone already has experience with such tasks and can suggest another alternative to me?

Labels (3)
1 Solution

Accepted Solutions
vapukov
Master II
Master II

subJob1 - iInformixInput -> tJFlowToIterate->tJavaFlex(dummy) - onComponentOk ->

subjob2 - tFileCopy -> tFileUnarchive

View solution in original post

2 Replies
vapukov
Master II
Master II

subJob1 - iInformixInput -> tJFlowToIterate->tJavaFlex(dummy) - onComponentOk ->

subjob2 - tFileCopy -> tFileUnarchive

Anonymous
Not applicable
Author

Thank you very much for your quick response. I try to realize your proposal. 🙂