I am having a hard time figuring out how to make this process work. Basically I'm checking for dateconditions to determine whether records from one table should be updated to match the same records in another table .
I am using SQL executor to determine what the latest date is in TableA and TableB and comparing the dates to each other. Using the Matcher, I determine that if they match, the Workspace can end there. If they DON'T match, then I want the workspace to continue, using the date value from TableB as a variable in order to select everything from TableB that has that date or later and match it up to TableA to set the colum values in TableA = to the colum values in TableB.
I don't know how to select from the NotMatched the date from TableB only, and then to re-use that date to run another selection against TableB to select everything that should be used to update TableA.
I hope this makes sense.
Thanks for your consideration!