The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

Tracking changes to continuous form when updates are automated

Access 2007 Form is bound to Qry_ReceiveBoxFiles Bound Field to be revised is called Location Unbound textbox that contains the new value for location called Box_Barcode The user types a box_barcode ...
0
votes
0answers
10 views

Query Audit Trail Quick Books .NET API

We are starting to work with Quickbooks API and needed to query the Audit Log. We need the ability to query the log and determine if a date was entered in the future or the past of the actual entry ...
0
votes
0answers
10 views

CodeFirst, DataBinding and audit trailing deleted items on client side

I have made a sample app here using CodeFirst ADO.NET EF approach. It works well. I just cannot currently solve one issue, namely: to audit trail items deleted in a bound DataGridView. I have ...
0
votes
1answer
52 views

Can I still use AuditReader when I have my own listeners in Envers?

I am trying to do conditional auditing with Envers so, according to documentation, I turned off default Envers event listeners and instead registered my own subclasses. Now I'm trying to read audit ...
0
votes
1answer
78 views

Audit trail setting in oracle 11g

I would like to know how to view the oracle 11g audit setting. i need to check if it is enabled or not. I read audit_trail will help but when i run the query "select * from audit_trail" it returns ...
0
votes
0answers
102 views

To produce an audit trail of information, to keep track on the changes, create a trigger at database level

Suppose there are n number of tables in the database. Whatever insert,update,delete happen across any table in the database have to be captured in a table called "Audit_Trial", where we have the below ...
0
votes
0answers
57 views

Hibernate audit trail aganist user action?

we have requiremnet to log each user action and fields modifeid due to this action. Audit logging is implemented using the hibernate interceptor Inorder to get the user action in the hibernate ...
0
votes
0answers
18 views

Risk Assessment for data flowing through a system

I need the help of developers in highly audited environments. We've been tasked with documenting all the software at our company that has been a small shop for 20+ years and recently has started ...
3
votes
2answers
63 views

How do I design my application such that audit trails cannot be edited or deleted?

I have this problem where I need audit trails (typically stored in DB) to be non-editable and deletable even for DBAs and System Admins. 1 way is to apply encryption and checksums, but this only ...
0
votes
1answer
106 views

I cannot collect audit trail in AVDF 12. What's wrong?

I installed Audit Vault Server 12 (not install firewall) in a oracle linux vmware and activated an agent for Oracle 11g release 2 in windows 7 x64 vmware according to Oracle® Audit Vault and Database ...
0
votes
2answers
74 views

nhibernate session with custom data and event listeners

For a WCF project I'm working on, I need to implement some kind of audit log for the entities we're persisting. Basically the audit trail will consist of 4 mandatory fields CreatedDateTime ...
0
votes
0answers
88 views

WF4 State machine - Skip and Rework pattern and AuditTrail?

We are evaluating WF4 state machine workflow hosted using WorkflowServiceHost to implement similar Order processing workflow with additional state onHold. Almost all the states have transition to ...
0
votes
0answers
143 views

Audit Table design

I have been finding this forum is providing great support for all the questions I have. I have one more question and appreciate your comments or suggestions on this. Let me provide little background ...
0
votes
1answer
272 views

Oracle Fine Grained Auditing for entire schema

I need to log all sql queries running in an Oracle database I have (non-production, running Oracle 11g enterprise). How I would like to do this, is to use Oracle's Fine Grained Auditing, since it logs ...
1
vote
1answer
73 views

The best solution for creating logging system

can someone tell me what the best solution is for creating logging system (Audit trail) !? I'm using vb.net with MSSQL 2005
0
votes
1answer
246 views

MySQL audit trail using triggers and mysql session variables for web user_id. Good solution?

If I do an audit trail using triggers in MySQL, and I use MySQL session variables to store the PHP variables I need to store, something like: SET @user_id = $user_id SET @user_ip = $user_ip_address ...
0
votes
0answers
53 views

Audit- Should we directly update master table

Is is okay to update a record manually by opening a table and updating the record or running script in Production environment and not update the modified date? Also should one use a trigger handle ...
1
vote
1answer
360 views

Storing user_id in the paper_trail versions table

I am using paper trail to audit changes to data and would like to store the user_id of the current user in addition to the "whodunnit" column that paper_trail stores by default. I had no trouble ...
1
vote
1answer
267 views

ORM with built-in audit trail

I am designing an ASP.NET MVC web app with a database backend that requires a full audit trail for regulatory purposes. I've implemented audit trails in the past but it feels like I would be safer ...
0
votes
1answer
77 views

Audit Trailing System in Oracle

I am trying to build an audit trailing system for my Oracle-Java application. I have done lots of search in Google. Found some solutions, mostly suggested to use trigger. But problem using this ...
1
vote
1answer
60 views

Ways to get AuditTrail data in Django

I'd like to know what's the best way to get data from AuditTrail table in views. I'd like to show all the versions of a model's fields using a template and a view. I looked for a way to show it in ...
1
vote
2answers
127 views

Getting original and modified content from a table with an audit trail

I came across the following table structure and I need to perform a certain type of query upon it. id first_name last_name address email audit_parent_id audit_entry_type audit_change_date The ...
0
votes
1answer
169 views

inserting audit logging entry for user login

I am using the grails 1.3.7 with audit logging plugin. I want to capture user login event like "user:PSam logged in at .." in the logs and since plugin does not have onLoad event defined, I am adding ...
0
votes
2answers
82 views

How to do bulk changes in an audited table?

I've got a system where all changes to business objects have to be audited. So an entity MyEntity has a Number property, and when you change this field, the system leaves the original record alone, ...
0
votes
1answer
288 views

Grails onLoad() audit

I see that grails-audit plugins provide way of logging onCreate() onUpdate() events, but I also need to track onLoad() events. Is there any standard way to do it using any plugin? Or I need to ...
0
votes
2answers
827 views

Linq to SQL - Audit Trail (find old values in SubmitChanges)

At the moment I'm looking for a way to find the old values of an entity in the [context].SubmitChanges(). As far as I can tell only the new values show up. Do I really need to do a query to the ...
2
votes
1answer
686 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?
0
votes
1answer
477 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
305 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
158 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 ...
1
vote
1answer
514 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
3
votes
1answer
460 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 ...
1
vote
2answers
512 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 ...
0
votes
1answer
99 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 ...
9
votes
3answers
320 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 ...
4
votes
1answer
301 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 ...
2
votes
3answers
245 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
62 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
920 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
861 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?
2
votes
0answers
227 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
248 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
2answers
324 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 ...
2
votes
1answer
373 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 ...
17
votes
9answers
2k 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 ...
2
votes
3answers
544 views

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 ...
0
votes
10answers
2k 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.
1
vote
1answer
264 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, ...
0
votes
0answers
145 views

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

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
426 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 ...

1 2