I'm trying to build a mapping that will load data from one database to another, updating destination with all rows from source that have been created since the most recent row in destination.
The query in Source would be something like this:
SELECT
*
FROM table
WHERE table.creation_date > [[destination max creation_date]]
From what I saw in the docs and discussions in the Informatica Cloud communities, the best way to do this would be with a Parameter. But from all that I've seen, the only ways to load parameters are:
- Hardcode it into the mapping
- Load parameters from a XML file
Is there a way to load parameters from ANYWHERE else? Anything except for a file would be great.
Thanks in advance and sorry for awkward writing.