My client is looking for an interactive functionality to input a list of ID to pull the data once giving they can't run SQL query.
The file input contains a list of ID to pull information about, where users can change as needed.
1) I could convert file input to a text input, and join with the database query. Rrunning into two issues:
a. it takes very long time to join text input and full database query.
b. the flow I created is not pumping the same input from .txt file to output. I can't see anything in output. (attached here).
What did I miss?
Ideally, I would like to use dynamic input tool to modify SQL queries, but when replacing specific string, can it be replaced with a list of ID? how to make this happen?
select * from database. table
where dw_acct_id = '62323327'.
Thank you in advance for any help.