How does one track changes in Adobe Campaign's database?
We upload batch files to Adobe Campaign's database each day. We would like to validate changes made to the database. How can we create a workflow to validate that changes or updates that have been made to the various database tables we update each day?
I am not talking about schemas or time stamping, but rather, actual fields (entities within the schema, or fields within the columns and rows in the tables).
For example, if a client's address has been changed, how can we automatically detect that that address field had been updated within our Adobe Campaign's database?
To give you another example, SQL Server 2017, for instance, provides two features that track changes to data in a database: change data capture and change tracking. These features enable applications to determine the DML changes (insert, update, and delete operations) that were made to user tables in a database. Change data capture and change tracking can be enabled on the same database:

Is there a similar function in Adobe Campaign? If not, how we we develop an automated data change track feature?