Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to log data change in postgresql?

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.

like image 613
harry Avatar asked Dec 09 '12 08:12

harry


1 Answers

Here is the example of a trigger, than logs such changes: Audit trigger.

like image 110
Ihor Romanchenko Avatar answered Oct 02 '22 14:10

Ihor Romanchenko