Hi,
I am working on a project that requires me to pull newly created records that are populated in a bronze dataset into a silver dataset. I am working to automate this process and with my limited python knowledge have created a model builder, but am stuck at a particular point in the logic.
I am unsure how to use the Select by Attribute, or Select by Date functions with a variable date input. I need to find a way to take the date of the oldest record of the silver dataset, then go to the bronze data set and pull everything that is newer then that date.
I've been toying around with creating a new field on the bronze data set indicating its been pulled or not, then pull all records that don't have a value in this field, then write in this field that its been pulled. But was wondering if there was a more elegant way.
Again, I have limited python knowledge.
Thanks for any direction.