This content has been marked as final.
Show 3 replies
-
1. Re: How to audit a table data which has add/update/delete operations inside a stored procedure.
adamw Jun 17, 2013 10:05 AM (in response to varun14)Envers will only work if the operations are performed through Hibernate.
If you have stored procedures, you have to rely on hand-written triggers or modifying the stored procedures.
Adam
-
2. Re: How to audit a table data which has add/update/delete operations inside a stored procedure.
varun14 Jun 18, 2013 1:07 AM (in response to adamw)Thanks Adam for reply.
I will look for a better solution using trigger or other which fits best.As I get it will post here for reference.
-
3. Re: How to audit a table data which has add/update/delete operations inside a stored procedure.
varun14 Oct 4, 2013 6:19 AM (in response to varun14)As you said Adam, I have created my own function and called it in every procedure where the direct operations are performed on my table.
Also I have created new audit table to audit the direct insert/update/delete at database level.While displaying the audit reports the join of my audit table and envers audit table is taken.
Thank you...