0
votes
3answers
207 views
LLBL Gen Pro 2.6 and Auditing
I am using LLBL Gen Pro v2.6 and am attempting to create a means of auditing changes made to the database. Now, I know that LLBL Gen has auditing built into it using AuditorBase an …
0
votes
1answer
10 views
SQLServer 2008 - Configuring Service Broker between instances
Hi,
I've been using the scripts from this website to help configure Service Broker based auditing. The first stage - setting up SB between databases on the same instance works fin …
0
votes
2answers
242 views
MappedSuperclass Alternatives in Grails
In many past projects, I used this JPA / Hibernate approach to add auditing capabilities to a system. It's very effective and unobtrusive.
Is there a Grails @MappedSuperclass alte …
0
votes
1answer
26 views
Auditing and model lifecycle management for instances and their associations?
I am trying to write an application to track legal case requests. The main model is Case, which has_many Subjects, Keywords, Notes, and Evidences (which, in turn, has_many Custody …
0
votes
3answers
113 views
SQL Server user name functions — CONFUSED
Consider this T-SQL:
CREATE USER my_test_user WITHOUT LOGIN;
SELECT USER_NAME(), USER, SUSER_SNAME(),SYSTEM_USER, suser_name();
EXECUTE AS USER = 'my_test_user' WITH NO REVERT;
SE …
0
votes
1answer
6 views
Site Security Audit
Can anyone recommend a site security audit service? One thats simple to sign up to online and audit sites for xss, sqlinjection, buffer overflow, etc etc.
Thanks
1
vote
1answer
66 views
How can I do generic field and component-level change tracking in NHibernate?
In my application, I've got a few different types of entities that I have a requirement to do field-level change tracking on. I've googled for this and only can come up with exampl …
1
vote
3answers
153 views
Audit Triggers: Use INSERTED or DELETED system tables
Guys,
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 approa …
0
votes
1answer
137 views
linq datacontext GetModifiedMembers in Attach scenario
I am trying to implement Optimistic Locking in an asp.net MVC application, as well as provide audit trailing.
The audit framework relies on being able to call DataContext.GetModif …
3
votes
5answers
169 views
How should I track changes on any object in asp.net mvc (nhibernate)?
I am looking for a good way to track down every change that is made on an object.
We are building a custom framework and we need to have a history (kind of) about who changed whic …
3
votes
3answers
83 views
Best way of recording activity from a user in the database?
Hi,
I am building an application that perform checks on users on specific days. I need to keep track of how many times these checks are performed against that particular user.
My …
0
votes
3answers
162 views
SQL Server 2008 Change Data Capture, who made the change?
I asked a question on SOF a week or so ago about auditing SQL data changes. The usual stuff about using triggers came up, there was also the mention of CDC in SQL Server 2008.
I' …
3
votes
2answers
173 views
Complex NHibernate Auditing
I'm using the IPostUpdateEventListener interface to do update audit logging now, grabbing the old and new values, then storing each updated field in an "Audit" table and all that j …
4
votes
2answers
500 views
What tool or scripts do you use to audit a Linux box?
I use the following tools for my auditing needs
A) System Auditing and Hardening (One time)
1) Linux Security Auditing Tool (Security centric,Text based output )
2) Dmidecode ( …
0
votes
1answer
90 views
How can I set a username for a Postgresql audit trigger?
I am using a trigger in PostgreSQL 8.2 to audit changes to a table:
CREATE OR REPLACE FUNCTION update_issue_history() RETURNS trigger as $trig$
BEGIN
INSERT INTO issue_his …
