I need to access database of a remote application. And keep track of modification of data on daily basis. Also all the tables don’t have timestamp field and I’m not allowed to use triggers as well. How can this be done?
I need to access database of a remote application. And keep track of modification
Share
Usually tables have a PRIMARY KEY, like an index. Do a periodic run of a script (daily), like a script that
show tablesquery to list all tablesrun an algorithm like
do a
diff(linux) between todays file and yesterday’s file to get a list of changes.