I have a table that contains sensitive data, and in accordance with the data protection policy, we must keep a record of each read / write data, including the identifier of the row and the user who accessed the table. Recording does not cause problems using triggers, but triggers are not supported for SELECT .
What is the best way to do this? I looked at the rules, but I canβt get them in the INSERT in the table, and I tried to log every request, but this does not look like a log SELECT . Ideally, for security, I would like to keep the log in a table in the database, but file entry is also good.
Thanks,
David
source share