Tagged Questions
The audit-tables tag has no wiki summary.
4
votes
4answers
653 views
Advice for minimizing locking on an append only table in MS SQL Server?
I'm writing some logging/auditing code that will be running in production (not just when errors are thrown or while developing). After reading Coding Horror's experiences with dead-locking and ...
3
votes
1answer
170 views
Data history tracking best practice
we need to keep track of data modification during the time on some table. We need some advice about how to achieve this task. We have two streets to follow in our mind.
1) Create a table with the ...
3
votes
1answer
709 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 | ...
2
votes
2answers
104 views
Query help when using audit table
Assuming I have two tables, one with the following columns called lease_period:
tenant_trading_name, suite_id, lease_id, building_id
and another, called lease_period_audit with the following:
...
2
votes
3answers
244 views
How to design a SQL db with undo-redo?
I'm trying to figure out how to design my DB tables to allow Undo-Redo.
Pretend you have a tasks table with the following structure:
id <int>
title <varchar>
memo <string>
...
2
votes
1answer
449 views
Updating a table (with audit trigger using Service Broker) in a Transaction
We have implemented Auditing capability using service broker and have implemented triggers on the tables that need to be audited. The issue we are facing is when we try to update an auditable table ...
2
votes
3answers
999 views
Audit Triggers: Use INSERTED or DELETED system tables
The topic of how to audit tables has recently sprung up in our discussions... so I like your opinion on whats the best way to approach this. We have a mix of both the approaches (which is not good) in ...
1
vote
1answer
452 views
Comparing values between two rows of data and only showing the columns that are different
In a previous application version we were using a particular field for a primary key, but because the field may represent different identities across various systems we have made it a non significant ...
1
vote
4answers
648 views
Is this a good design for an audit table with tons of records?
I have a table that tracks inventory data by each individual piece. This is a simplified version of the table (some non-key fields are excluded):
UniqueID,
ProductSKU,
SerialNumber,
OnHandStatus,
...
0
votes
3answers
44 views
'Getting only updates' Design
My system needs to get only the updates from the server. How do I design my database? Have an audit table or is there any other design mechanism? What I'm planning is to send an update id from my ...
0
votes
3answers
94 views
SQL-Server Trigger on update for Audit
I can't find an easy/generic way to register to an audit table the columns changed on some tables.
I tried to do it using a Trigger on after update in this way:
First of all the Audit Table ...
0
votes
0answers
24 views
SQL Server 2005 Auditing
Background
I have a production SQL Server 2005 server to which 4 different applications connect and make changes.
There are no foreign keys and in some cases no primary keys.
Unfortunately throwing ...
0
votes
1answer
34 views
How do I write to an external audit database in SQL Server 2008?
I have a SQL Server 2008 database with 10 windows users who all have permissions to Insert, Update and Delete tables. Each table has a trigger that writes to an audit table in a different database.
...
0
votes
3answers
633 views
TransactionScope + Audit Table + Commit Transaction In Stored Procedure
My company is using SQL Server 2008. I am facing a Audit Table with transaction problems.
I have a stored procedure.
create proc MySP
as begin
insert into MY_TABLE values('Value1');
begin ...
0
votes
1answer
268 views
Audit Table DB Design : Does creating Audit Tables for Join Tables make sense
we are creating separate audit tables for those entity tables which need auditing using triggers on PostgreSQL 8.4.
<Family> <Contact> <Family_Contact> <Address>
We have ...
0
votes
2answers
164 views
Web Application Auditing
How can I audit a web application specifically database changes, when the application is connecting to the database as a system account?
I would like to use a simple database trigger to write to an ...
0
votes
1answer
1k views
Getting trigger to insert changed column values only in audit table
I'm using a trigger to store changes in an audit table, I only want to store the values from columns that have been changed.
BEGIN
IF NEW.history_of_repair_trigger_fired = 1 THEN
INSERT INTO ...