This question may seem to be a possible duplicate of some other questions that are related to this topic. I've found some similar questions(some questions were asked years back and discussion on the topic seemed to be almost over). But no feasible solutions were found for my problem. I've a database with plenty of tables with huge amount of data in it. I need to log each and every changes that is happening to the datas that are stored in the tables of the particular database.
For example, I have a table for storing employee details.
id employeename
1 ab
And, this data is changed to
id employeename
1 cd
So i need to log this data.
ie, employeename
ab
is changed to
cd
in the table employee details
I need to log the data every time a change is made to the contents stored in the tables. Is it really possible? If so, how can I do that? What are the steps involved in it? I'm pretty concerned about the size of the log files in such a case. In such a situation what can be a good alternative? I'm using postgresql8.4. Any good suggestion will help me a lot. Thanks in advance.
Very generic trigger function, found there: https://www.cybertec-postgresql.com/en/tracking-changes-in-postgresql/
Table to store the history:
The trigger:
Apply the trigger:
Here is the example of a trigger, than logs such changes: Audit trigger.