Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Costin17068271
Partner - Contributor
Partner - Contributor

tDynamoDBInput filter URGENT

I need to Extract data from tDynamoDBIput_1 with a where on a string field

I do Not know what to?

column name is updated_at , String , and it contains value such as "1609924966.854416"

I need to extract only rhe rows that are equal to that, please assist

I tried all sort of combinations in the advanced filter expression

input_row.updated_at == "1609924966.854416"

"updated_at = 1609924966.854416"

"updated_at =" +1609924966.854416

Please help it is urgent

Labels (3)
3 Replies
ashif2
Creator II
Creator II

Please refer the below link :

 

https://help.talend.com/r/uE4nfgukzGB3spr2j5jG4w/H7mXtOe5luCER0uz_j~PtQ

 

define the filter with placeholder :

 

"input_row.updated_at == :value"

:value is the placeholder.

 

Then give the value for placeholder as mentioned in the document.

Costin17068271
Partner - Contributor
Partner - Contributor
Author

Thank you For your quick reply,

 

I need a where based on column not key, the data on that particular table,

is a numeric value under the column updated_at

 

Please advise

 

Thank you

Costin17068271
Partner - Contributor
Partner - Contributor
Author

This is the correct and working solution :