I'm doing a project where we want to store the changes users make to a database so that they can be reverted. At first, this seemed like a good idea but the more and more I think about it, the more I realize that each update/delete/insert is going to have a lot of overhead.
So here is our design. We will store all the changes in a single table that will have date, tableID, userID, and then a text field that will contain a bunch of xml for each field that has changed (maybe the old values and the new values). So, I think this is ok.
The problem is populating the change log table. I was thinking of either
(1)creating a stored procedure for it and forcing users to call the procedure themselves before making an update
(2)creating a trigger that will automatically put the changes in the appropriate xml formate and then populate the DB
I'm pretty sure I'm going to go with method (2) but am just wonding if this is a horrible idea or a good idea
So here is our design. We will store all the changes in a single table that will have date, tableID, userID, and then a text field that will contain a bunch of xml for each field that has changed (maybe the old values and the new values). So, I think this is ok.
The problem is populating the change log table. I was thinking of either
(1)creating a stored procedure for it and forcing users to call the procedure themselves before making an update
(2)creating a trigger that will automatically put the changes in the appropriate xml formate and then populate the DB
I'm pretty sure I'm going to go with method (2) but am just wonding if this is a horrible idea or a good idea