In Production,as per user request,developer will update/insert/delete the data in one or more tables, and others are not aware of these changes (like which tables are updated and how many row got updated) ,and they don't have any idea about How to Track table data changes.
I am planing to create a script to track the changes(update/insert/delete) and insert the new and old data one new table (data_fix_history) table with below details.
- ticket no
- developer name
- old row
- new row if update
- update time
Can you please suggest the how to achieve this requirement?