Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
9answers
730 views

Audit Tables: Maintaining Referential Integrity - Good or Bad

We are planning on introducing simple Audit Trail in our database using triggers and separate history table for each table that requires auditing. For example consider table StudentScore, it has few ...
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 ...
9
votes
2answers
184 views

How to implement context based DB auditing?

I have a current DB driven application which has several methods for accessing data. Web Application Direct SQL Access users (I'm trying to remove these) Client Server application Batch inputs and ...
8
votes
4answers
1k views

What are good NoSQL and non-relational database solutions for audit/logging database

What would be suitable database for following? I am especially interested about your experiences with non-relational NoSQL systems. Are they any good for this kind of usage, which system you have ...
7
votes
1answer
625 views

Change Data Capture or Change Tracking - Same as Traditional Audit Trail Table?

Before I delve into the abyss of Microsoft documentation any deeper, I'd like to know if someone experienced with Change Data Capture and Change Tracking know if one or both of these can be used to ...
5
votes
4answers
2k views

Audit Trail in web application using sql server

We are developing a web application using asp.net and sql server. We are required to do an Audit trail for the application. As I understand this, an audit trail would basically be for all the Inserts, ...
5
votes
2answers
666 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 ...
4
votes
3answers
350 views

Using a natural key, or using surrogate keys and audit table(s) for auditing/change log

My first question on here so be nice! I am a junior developer with not much experience and am having trouble with this problem. I have a table which needs to be auditable. Let's say this table ...
3
votes
1answer
125 views

How to access current_user from a Rails Notification?

I'm building an audit trail that needs to know which user is currently making the request. My audit trail is built using ActiveSupport::Notifications to receive an even that needs to be audited. What ...
3
votes
1answer
2k views

how to build audit trails in rails app

I have a small rails app. I want to put audit trail in it. Basically when a new user is added. it will insert a row in AuditTrailUsers table with the new user_id created and logged in users' user_id. ...
3
votes
1answer
904 views

Audit trails and implementing HIPAA best practices

Are there any best practices for audit trail implementation for HIPPA starting with database design.
2
votes
1answer
21 views

Creating a global trigger that listens to multiple tables

I want to create a global trigger in Oracle 11g. Which can be used for auditing of around 100 tables. Can multiple tables fire a single trigger. If yes then how can I achieve this?
2
votes
1answer
137 views

Audit trail for JSF application - Global valueChangeListener possible?

I am trying to implement an audit trail functionality for my web application that records: lastModified (timestamp) modifiedBy (user information) userComment (reason for value change) for each of ...
2
votes
1answer
187 views

Are there any additions to Team Foundation Server 2010 that can produce reports about code quality?

Our codebase is in great shape, but I have a bunch of auditors on my back about code quality. They just won't take my word for it /sigh So I'd like to satsify them as to the quality of our work by ...
2
votes
1answer
1k views

Hibernate Interceptors or Events for Audit Trail?

I record a history of all changes to some entities and am about to implement a mechanism similar to Envers to take care of this automatically. My question is whether to use Hibernate interceptors or ...
2
votes
3answers
198 views

Avoid OpenERP audittrail bug

I'd like to manage OpenERP user's activity by installing the audittrail module. After creating some rules ( define which user, which object and which activity (create, update..) will be monitored). I ...
2
votes
1answer
66 views

Can you configure SQL Server 2008 Auditing to keep the audit data on a database other than the one being audited?

We are planning on using the new auditing feature in SQL Server 2008. Is there a way to configure the auditing component to insert audit data to a separate database?
2
votes
1answer
252 views

Storage of auditable fields per entity

I guess it's a good practice to capture auditable fields to track what happened to a particular entity (say createdBy, creationDate, modifiedBy, modifiedDate) I am assuming if an object is never ...
2
votes
5answers
140 views

What options do I have for retaining past values of a java object? An audit log or List<Object>?

Take my domain class for example public class Person { private Integer id; private String name; private String address; private String telephone; //Accessors here.. } This is great for ...
2
votes
4answers
3k views

Best Audit Trail process in asp.net c#?

What is the best way in logging actions, activities, etc done in an asp.net application. Also, which storage is best for logging these? XML? DB? Thank you very much.
1
vote
1answer
113 views

calculating oracle users average session time [closed]

How to write a PL/SQL program to calculate and display the username and average session time for all database users in oracle 11g ? kindly help
1
vote
1answer
124 views

Auditing Changes under MVC & Entity Framework (using sprocs)

I have the challenge of needing to audit data changes made by users of an MVC application. Auditing creation and deletion of records is easy. Updates is proving to be the problem. I'm looking for a ...
1
vote
0answers
112 views

Linq to Entities Auditing Relationship Updates

I am trying to implement generic auditing in my Linq to Entities Object Context. I have achieved this for the most part with the built in ObjectStateEntry approach, however with this I have ...
1
vote
2answers
114 views

Method to implement audit trail per row

I want to add two columns to all my tables [Create Time] & [Modify Time] to capture audit trail .In the future these fields might be used in partitioning the table. Please suggest on what is the ...
1
vote
1answer
255 views

in C#, how to retrieve an audit trail across two SQL Server tables and put them back in the right order

Background Context: i have a database table called Project and a table called ProjectHistory with the same schema. I am using nhibernate so i also have a domain object called Project and a ...
1
vote
1answer
142 views

How can I audit with the Microsoft SQL Server LDF file?

We need an audit log in the product that we are creating. We use SQL Server 2008 R2. I learned that the LDF file keeps an complete log of all transactions that where made*. I've found ApexSQL Log, ...
1
vote
3answers
452 views

Ideas, Tips, Tools, Framework for implementing Audit

I'm looking for Ideas, Tips, Existing Frameworks (based on .NET), Tools and also your experience on what's the best way to implement a good Audit Trail. Our typical Applications are nothing fancy ...
1
vote
2answers
476 views

Java service logging with audit trails

I have a standard Java service running in a Tomcat container, with logging set up using log4j. I'm looking to add some auditing functionality to an admin dashboard. I want to be able to make requests ...
1
vote
2answers
296 views

Turn on DDL auditing

How to audit DDL statements in oracle 10g and clear audited data before 30days... Thank you. IN EDITION: How can I turn on auditing on "ALTER TABLE" statement? when I run AUDIT TABLE; or AUDIT ALTER ...
1
vote
2answers
313 views

How to Activate Audit trail in Siebel 8 for local databases?

How to Activate Audit trail in Siebel 8 for local databases?
1
vote
3answers
269 views

How to log user operations for a asp.net application?

How can we log user operations for a asp.net application. Further what is the approach for saving the log data ? Kindly guide.
1
vote
0answers
215 views

Telerik Open access Audit Trail

How can i best implement an audit trail for an application that uses Telerik open access. I have posted this question on their support but there has been no reply for days (sucks) I have already tried ...
1
vote
2answers
123 views

How to represent successful, failed login and logout events

We have an audit requirement where we need to track user activity (e.g. successful login, logout actions and failed logins). We have defined 3 event types to track this information. What would be a ...
1
vote
1answer
321 views

How would you audit ASP.NET Membership tables, while recording what user made the changes?

Using a trigger-based approach to audit logging, I am recording the history of changes made to tables in the database. The approach I'm using (with a static sql server login) to record which user ...
1
vote
1answer
1k views

MySQL db Audit Trail Trigger

I need to track changes (audit trail) in certain tables in a MySql Db. I am trying to implement the solution suggested here. I have an AuditLog Table with the following columns: AuditLogID, ...
1
vote
3answers
1k views

Audit trail in hibernate with new and old values using an Interceptor

I can easily log last modified date, modified by etc. However, I need old and new value to be logged too. In the interceptor, I can fire a select before postflush starts executing to get the value of ...
0
votes
2answers
25 views

Audit trail techniques

My project is in ASP.NET MVC3, SQL Server 2008 and using Fluent NHibernate. I now have a requirement to audit certain properties of a specific object. i.e. recording the old and new value of the ...
0
votes
1answer
57 views

MongoDB - Getting changes to a document when saving with official .NET driver

Is there a way to get the changes to a document upon saving it with the official MongoDB .NET driver. I am only looking for the delta so that I can Audit the changes. Thanks!
0
votes
1answer
51 views

Django proxy model and AuditTrail

I have a model from which I have created a proxy model so that I can override get_query_set method of the default 'objects' manager. The model implements AuditTrail but the proxy ignores it -- which ...
0
votes
1answer
35 views

How to enable logging for a single user in a Java Service at runtime

Preamble - I am running an online Java Application(Tomcat->Java->Mysql) as SAAS (Software As A Service). This is basically a mobile utility service where a user connects to our service/server using ...
0
votes
3answers
141 views

Using DVCS for an RDBMS audit trail

I'm looking to implement an audit trail for a reasonably complicated relational database, whose schema is prone to change. One avenue I'm thinking of is using a DVCS to track changes. (The benefits I ...
0
votes
1answer
31 views

Strategy for complete website access audit and reporting

I am looking for some pointers to improve on a solution for the below problem. Even though I am working with a Unix toolchain I am more after a general approach rather than an implementation. Here we ...
0
votes
1answer
237 views

Audit Trail Item List 2 BusComp not showing Associate or Disassociate Operations. ver 8.0 +

Our implementation: We have added Auditing using the Audit Trail functionality, to a Bus Comp to monitor a M:M relationship between itself and a child (with the use of an intersection table.) as per ...
0
votes
4answers
250 views

Log inserted/updated/deleted rows in all tables for a given database in SQL Server 2008

Whats the best way to track/Log inserted/updated/deleted rows in all tables for a given database in SQL Server 2008? Or is there a better "Audit" feature in SQL Server 2008?
0
votes
2answers
166 views

How do you create an audit trail for aggregate roots?

I have read several articles online as well as several answers on StackOverflow about creating an audit trail for a database driven application. It seems that the most popular solution is to create ...
0
votes
10answers
509 views

keeping the history of table in java

I need the sample program in Java for keeping the history of table if user inserted, updated and deleted on that table. Can anybody help in this? Thanks in advance.
0
votes
0answers
136 views

i want to create a history table for table xyz [closed]

Possible Duplicate: keeping the history of table in java Hi, i want to create a history table for table xyz if user inserted ,updated and deleted in that particular table.i want to store ...
0
votes
2answers
179 views

Auditing a MySQL table and displaying changes only after approval

I have a small web application with a few tables where users can post and edit data. I also have an application admin which moderates the new posted or edited data. What I would like to do is to audit ...
0
votes
1answer
439 views

How to implement an Audit Log in Sql Server

We have an (asp.net) application that connects to a SQL Server 2008 R2 database using login credentials specifically setup for this application. Our application access/modifies/deletes records via ...
0
votes
1answer
117 views

How to find destroyed data rows using audit trail with SQL

I am using an audit table to find what records a single destructive SQL statement that was run on say '2011-01-01 08:00:00.000'. You can assume that each MyTable record only got updated once on this ...

1 2