Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
8k views

best design for a changelog / auditing database table?

i need to create a database table to store different change log/auditing (when something was added,deleted,modified,etc). i dont need to store particularly detailed info, so i was thinking something ...
13
votes
4answers
3k views

Database design for audit logging

Every time I need to desing a new database I spend quite some time thinking on how I should set up the database schema to keep an audit log of the changes. Some questions have already been asked here ...
13
votes
5answers
8k views

Counting the number of deleted rows in a SQL Server stored procedure

In SQL Server 2005, is there a way of deleting rows and being told how many were actually deleted? I could do a select count(*) with the same conditions, but I need this to be utterly trustworthy. ...
13
votes
7answers
6k views

Data Auditing in NHibernate and SqlServer

I'm using NHibernate on a project and I need to do data auditing. I found this article on codeproject which discusses the IInterceptor interface. What is your preferred way of auditing data? Do you ...
13
votes
6answers
4k views

Suggestions for implementing audit tables in SQL Server?

One simple method I've used in the past is basically just creating a second table whose structure mirrors the one I want to audit, and then create an update/delete trigger on the main table. Before a ...
11
votes
3answers
2k views

django AuditTrail vs Reversion

I am working on an new web app I need to store any changes in database to audit table(s). Purpose of such audit tables is that later on in a real physical audit we can asecertain what happened in a ...
10
votes
4answers
2k views

Ideas on database design for capturing audit trails

How can I maintain a log of the data in my DB? I have to maintain a log of every change made to each row. That means that I can't allow DELETE and UPDATE to be performed. How can I keep such a log?
9
votes
4answers
1k views

What's the best approach in auditing a big java/j2ee web application

I have to audit a large web Java/J2ee application that has evolved over several years. It's been written by some other company, not the one I'm working for. In it's current state it has become hard to ...
8
votes
6answers
2k views

History tables pros, cons and gotchas - using triggers, sproc or at application level

I am currently playing around with the idea of having history tables for some of my tables in my database. Basically I have the main table and a copy of that table with a modified date and an action ...
8
votes
6answers
4k views

How do you implement audit trail for your objects (Programming)?

I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on OnSaving ...
7
votes
5answers
106 views

How to audit a JEE project?

I've to audit the code-architecture quality and maintainability (in the end t obe sure we have what we paid for) a JEE web project based on JSF/CDI/EJB3.0/JPA (just to name some of the technologies ...
7
votes
5answers
1k views

Audit Logging Strategies

I am trying to decide on the best method for audit logging within my application. The main reason for the log is reporting the sequence of events (changes). I have a hierarchy of Objects, I need to ...
7
votes
3answers
2k views

SQL Server: Modifying the “Application Name” property for auditing purposes

As we do not implement the users of our applications as users in SQL server, when the application server connects to a database each application always uses the same credentials to attach to each ...
6
votes
1answer
1k views

Implementing Audit Log / Change History with MVC & Entity Framework

I am building in a Change History / Audit Log to my MVC app which is using the Entity Framework. So specifically in the edit method public ActionResult Edit(ViewModel vm), we find the object we are ...
5
votes
1answer
285 views

Hibernate Envers for EclipseLink (Entity Auditing)

I have been looking at Hibernate Envers for entity auditing. I'm using EclipseLink but I'd like something similar. I've seen some implementations that involve creating a SessionCustomizer to handle ...
5
votes
3answers
190 views

What's the best tool for Javascript security auditing?

Something that can at least scan a batch of .js files looking for eval statements and other questionable code. Maybe just a regex pattern would do it, but I'd like to find a more sophisticated (and ...
5
votes
1answer
229 views

Audit many-to-many relationship in NHibernate

I have implemented listeners to audit changes to tables in my application using IPreUpdateEventListener and IPreInsertEventListener and everything works except for my many-to-many relationships that ...
5
votes
4answers
170 views

Is their an elegant way to track the modification of all columns of one table in SQL Server 2008

There is a table in my database containing 100 columns. I want to create a trigger to audit the modification for every update operation. What I can think is to create the update clause for all ...
5
votes
6answers
610 views

Difference in Auditing and Logging?

I have been coming across these two words more often but i didn't see much difference in these? I mean want to know are they used interchangeably or there are some differences in those two? Thanks.
5
votes
2answers
673 views

Advice on Change Tracking in Sql Server 2008

My client is looking for a way to do a full audit trails (full view of historical data on all tables) on the application. Other than using the old fashioned way of having table copies or storing ...
5
votes
5answers
4k views

Creating audit triggers in SQL Server

I need to implement change tracking on two tables in my SQL Server 2005 database. I need to audit additions, deletions, updates (with detail on what was updated). I was planning on using a trigger ...
5
votes
4answers
6k views

Implementing Audit Trail- Spring AOP vs.Hibernate Interceptor vs DB Trigger

I found couple of discussion threads on this- but nothing which brought a comparison of all three mechanism under one thread. So here is my question... I need to audit DB changes- ...
5
votes
4answers
4k views

Implementing Audit Trail for Objects in C#?

I'm looking for ideas on how to implement audit trails for my objects in C#, for the current project,basically I need to: 1.Store the old values and new values of a given object. 2.Record creation of ...
4
votes
1answer
326 views

Implementing efficient audit trail of record changes in Google App Engine - design patterns

I have a quite common design problem: I need to implement a history log (audit trail) for records in Google App Engine. The history log has to be structured, i.e I cannot join all changes into some ...
4
votes
4answers
832 views

Business Audit log - recommended library or approach?

do you know any good Java library for audit logging? Or at least good book/article to help choose good approach to build audit log for an application? Library requirements: - define common audit ...
4
votes
8answers
4k views

Oracle - Triggers to create a history row on update

First, we currently have the behavior that's desired, but it's not trivial to maintain when any changes to the database are needed. I'm looking for anything simpler, more efficient, or easier to ...
4
votes
1answer
458 views

Snapshot History With Entity Framework

I've been looking at some auditing hooks with Entity Framework. Many of them show old/new value comparisons. This does great for an audit trail but I'm looking to snapshot objects. For example... ...
4
votes
1answer
835 views

Is there a standard way of audit tracking in grails?

Is there a grails plugin or standard way of managing the created_by, created_on, updated_by, updated_on fields for a domain object?
4
votes
9answers
2k views

What reporting is available for svn?

We are in the process of moving to SVN. Unfortunately for us, we are audited periodically, where the auditors require information like: Histories of changes to files History of access to SVN New ...
4
votes
2answers
1k views

Audit trails and implementing SOX/HIPAA/etc, best practices for sensitive data

I consider myself to be relatively proficient in terms of application design, but I've never had to work with sensitive data. I've been wondering about what the best practices were for audit trails ...
3
votes
3answers
175 views

CodeIgniter: SQL Audit of all $this->db->query() method calls?

I'm using CodeIgniter 2+ and would like to Audit all $this->db->query($sql); calls. All of our database calls are thru the query() method; no active record usage. I need to record the $sql queries ...
3
votes
1answer
310 views

How to audit JPA without Hibernate Envers

I need to make an audit module to my Java Web App. I use EclipseLink, not Hibernate (can't use Envers). I searched a lot some way to get the SQL or JPQL that JPA is executing, so I could log something ...
3
votes
3answers
507 views

Auditing record changes in sql server databases

Using only microsoft based technologies (MS SQL Server, C#, EAB, etc) if you needed keep the track of changes done on a record in a database which strategy would you will use? Triggers, AOP on the ...
3
votes
2answers
385 views

SQL - Audit log table design - Which would you prefer?

For a project that the company I'm working on are setting up, we are in need of auditing (storing logs) for various of the tasks (changes made to tables in the system) that users perform. Currently, ...
3
votes
1answer
717 views

“audit create session by session” vs. “audit create session by access”?

When I enabling auditing for create session by the following way: audit create session by session; Then I am querying the following: select * from dba_priv_audit_opts; The result is: USERNAME | ...
3
votes
6answers
266 views

Prevent audit table tampering

We have audit table in our database. Records to this table are done using triggers. Currently, there is nothing that prevents user to log on to database server, open table from management studio and ...
3
votes
2answers
235 views

capture changes to properties of an object

I have multiple business objects in my application (C#, Winforms, WinXP). When the user executes some action on the UI, each of these objects are modified and updated by different parts of the ...
3
votes
1answer
370 views

mysql (almost) complete auditing

I'm looking for a way of making simple event log for my tables. I have few tables that can be changed by various users, and I want to keep track on: - who made the change - when - what was before ...
3
votes
2answers
269 views

Easy way to save basic auditing data on domain objects?

My application uses large trees of domain objects and for most of these objects I'd like to persist some basic information (updatedby, modified time, etc.). I have already added these properties & ...
3
votes
1answer
69 views

SQL Server - What's in that log backup?

So I noticed that one of my log backups is about 1000x larger than normal. I'd like to see what is in there. Is there something I can use to read it? Thanks!
3
votes
2answers
533 views

Add objects to association in OnPreInsert, OnPreUpdate

I have an event listener (for Audit Logs) which needs to append audit log entries to the association of the object: public Company : IAuditable { // Other stuff removed for bravety IAuditLog ...
3
votes
2answers
271 views

Help Auditing in Oracle

I need some help in auditing in Oracle. We have a database with many tables and we want to be able to audit every change made to any table in any field. So the things we want to have in this ...
3
votes
4answers
85 views

Reviewing 3rd Party code for security issues

I've been asked to oversee reviewing some 3rd party code (Freeware C# Sharepoint webpart in this case) before its inclusion on a internal corporate network. The big concerns are malicious code hidden ...
3
votes
3answers
447 views

Secure Software License Usage Audit Log

Folks, We have an intriguing technical challenge. How to write a secure audit file that tracks usage of a software so license fees can be based on usage thereby making it more affordable to those who ...
3
votes
1answer
385 views

What is best practise for getting current username in data access layer?

We recently added auditing to our database. A colleague implemented it using triggers and asked me to call a stored procedure on login to the website. The stored procedure inserts the current ...
3
votes
1answer
907 views

Audit trails and implementing HIPAA best practices

Are there any best practices for audit trail implementation for HIPPA starting with database design.
3
votes
3answers
763 views

How would I use an audit trail to display which fields have ever been edited?

For a project I am working on, I have been asked to create an audit trail of all changes that have been made to records. This is the first time I have had to create an audit trail, so I have been ...
3
votes
4answers
3k views

How should I audit changes in a MySQL table (using MySQL 4)?

I have been asked to audit any/all changes in a MySQL table. Does anyone know of any tools out there to help me do this or do I need to write my own solution? If I write my own audting, my initial ...
2
votes
2answers
64 views

How long will it take to audit 29k lines of Drupal code?

A client is asking how long does it take to audit the security of his Drupal module that is 29k lines long. Does anyone know at least what ballpark I should give him? His main concerns are file ...
2
votes
1answer
65 views

tsql for getting a user's permissions without impersonation

Is there a check I can make to see if a user has modify rights to any object on the server without running the query as that user? I need to create a logon audit report that lists logon times for ...

1 2 3 4 5