Questions tagged [auditing]
330 questions
0
votes
0 answers
Grails Audit-Logging Plugin
I use grails audit plugin for logging any domain data change
I am doing simple test to test out this plugin. Inserting/Updating grails form. My update failed with data out of bound. That save was failed, but still auditLog recorded that data in the…

monal86
- 433
- 2
- 11
- 26
0
votes
1 answer
SQL Server 2008 Auditing - reports
Other than using SQL statement like
SELECT * FROM fn_get_audit_file('C:\SQLSvrAuditing*', default, default), are there good reporting available for SQL Server auditing? Even if there are useful query templates, it will be helpful.

frosty
- 2,421
- 6
- 26
- 47
0
votes
1 answer
Oracle : Trigger to Update
I have two tables as follows
Emp(eno, ename, sal)
salHistory( empNo, ename, oldSal, newSal, salDif)
What I want to know is how to create a trigger (Name of the trigger is salary_change) that should be fired whenever the "Emp" table get UPDATE…

Harindu
- 11
- 3
0
votes
1 answer
Giving only a specific application access to a network share
My company has a situation where we have a special release of an internal desktop server app for one of our clients to run. The application needs access to a specific network share which for auditing/security purposes we can't let the client…

danr44z
- 1
0
votes
1 answer
Detecting malware code inside open source projects
I would like to know if there is an effective way to audit source codes of open-source projects without having to examine all the plaintext files every time the application gets updated, and when a new source is putted available for download.
I…

Bole Grat
- 71
- 10
0
votes
1 answer
What is the best way to log and query heavy transactional data?
I have an ESB that processes lots of transactions per second (5000). It receives all types of request in different type of formats (xml, json, csv, and some are formatless). As you can imagine that is a lot of requests being processed.
The problem…

Lekkie
- 355
- 5
- 18
0
votes
1 answer
Active Directory Domain Services Auditing
I'll try to explain my goal as good as I can;
I want to trigger a script whenever there is a new computer added to a Organizational Unit.
To do this i need to activate the logging of this event under the local security policy/audit policy. I guess…

KjetilJar
- 55
- 1
- 1
- 7
0
votes
1 answer
Creating a user without deleting, updating and altering privileges in MySQL
I have to provide direct access to my database to some users for auditing purposes, and should add a restriction to avoid that these new users don't have deleting, updating and altering privileges.

richardtk_1
- 751
- 3
- 11
- 33
0
votes
2 answers
How to append field to already defined table in web2py?
Given a table xyz that I have defined via db.define_table('xyz'..) that I can reference as db.xzy, how can I add a new field to this already defined table object?
The usage case that I'm thinking off is I want to add a created field to several…

User
- 62,498
- 72
- 186
- 247
0
votes
1 answer
SQL Server Logging Denied Access
I was wondering if anyone knew if the logging capabilities of SQL Server extended to tracking user attempts to query information on which they do not have access. For example, if a user attempts to query an object or schema on which he lacks…

dmedz
- 191
- 3
- 5
- 14
0
votes
1 answer
Client identifier in jboss httpinvoker (auditing)
I am using httpinvoker in JBoss 4.0.4 (little old) for EJB invocations.
Since there are so many clients that make calls to my server, I want to identify the clients for each call in server.
Is there a way to do this with JBoss httpinvoker?
I could…

Suraj Chandran
- 24,433
- 12
- 63
- 94
0
votes
1 answer
Is it practical using cursors when it comes to database auditing (only on SQL Server)
I've been researching on SQL Cursors recently and a colleague of mine said that Cursors are best used for auditing. I tried to look for materials over in the internet but no luck.
Can anyone explain why Cursor is good for auditing despite its…

Lyx Wong
- 3
- 2
0
votes
1 answer
Oracle Trigger created using JDBC doesnt fire
I have created triggers over JDBC that doenot fire. I have checked its validity in the user_objects table and its valid and enabled. I tried creating trigger using the sqlplus console and it successfully fired, so where I could be going wrong? Any…

Rishabh Kumar
- 527
- 4
- 14
0
votes
1 answer
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 CustodyLogs). Since the application is legal-related, there are some…

Otto
- 1
0
votes
1 answer
What's the way to go when inserting values to multiple tables?
I'm inserting some values onto employees table using this in the controller:
$this->Employee->create();
if ($this->CoreProgram->save($this->request->data)) {
$this->Session->setFlash('Program has been…

Propeller
- 2,465
- 6
- 35
- 49