Hi
New to FME. Familiar with ETL/ELT tools.
I would like to read rows from a Postgres DB and load them into Snowflake DB.
I want to do it incrementally, i.e. read from Postgres only the rows that have changed since the last time the Workspace run. I have some timestamp field in the table, named "last_updated".
The query should look like: "select * from table where last_updated > /previous_max_last_updated",
I thought maybe doing it using a special management table, that will hold the values of last_updated for each source table, but it will require some more reader and writer in the workspace.
Is there a way to hold variables from session to session? I mean, from 1 workspace run to the next?
Thanks!