Run script only for changed features

1681
1
03-21-2011 09:45 AM
by Anonymous User
Not applicable
I have a Python script that runs nightly on an SDE fc.  Is there a way to run my script only on features that have changed? (been edited in some way that day, geometry or attributes).   This way I don't have to run it on the entire feature class each night, and it would be easy to identify the "new" information that I need.
Tags (2)
0 Kudos
1 Reply
MarkWiygul
New Contributor
have you checked out the filecmp module?  It's possible there is a useful method.

>>>import filecmp

>>>help(filecmp)

>>>dir(filecmp)
0 Kudos