Questions tagged [auditing]

330 questions
0
votes
1 answer

Meaning of revision in hibernate auditing with envers

In SVN files with the same revisions which are committed together can have clear meaning which are often mentioned at commit message for example some classes may be added to a project with the same revision number to add a certain functionality. But…
Dandelion
  • 744
  • 2
  • 13
  • 34
0
votes
0 answers

User Auditing activity in prime faces

How do I get the header fields ? enter image description here I.e. Me need get message label 'Наименование' for entity field. I do use hibernate and i do know what exist Hibernate ORM Envers. I use reflection for get entity fields name and value. Or…
0
votes
1 answer

NHibernate Audit Interceptor - current and previous values match when auditing a collection

I'm auditing certain values using a NHibernate Audit Inteceptor - I have inherited from the EmptyInteceptor and overridden the OnFlushDirty public override bool OnFlushDirty(object entity, object id, object[] currentState, object[] previousState,…
Andy Clarke
  • 3,234
  • 5
  • 39
  • 66
0
votes
1 answer

FileSystemAuditRule disables inheritance (Powershell script)

I'm using a powershell script to create auditing in a windows directory and all of its subfolders. $DrivePath = $args[0] $AuditUser = "Everyone" $AuditRules = "FullControl" $InheritType = "ContainerInherit,ObjectInherit" $AuditType =…
Reginiano
  • 62
  • 10
0
votes
1 answer

Issue with NHibernate auditing and inherited classes

I have an Animal class that implements IDomainObject. There is another class, Cat, that inherits from Animal. I'm using a Table Per Subclass inheritance strategy for my NHibernate mappings and map the CreatedDate and LastModified properties to…
Chris
  • 2,959
  • 1
  • 30
  • 46
0
votes
0 answers

Symfony3: entity auditing / versioning

I need to track the changes for an entity including oneToMany relations. I've tried Stof Extension Loggable, but I think it doesn't track changes to a linked entity, only deletions or additions. For ex: if my entity Member can have several Address,…
Roubi
  • 1,989
  • 1
  • 27
  • 36
0
votes
1 answer

Hibernate Envers Auditing

I am using Hibernate4 with envers for audit logging purposes. I have a table: PRODUCTS(PRODUCT_ID(primaryKey), PRODUCT_CODE, PRODUCE_DESC, PRODUCT_FEE) Hibernate has created an audit table PRODUCTS_AUD. Whenever there is…
Sonu Agarwal
  • 97
  • 2
  • 12
0
votes
1 answer

Turn off Information Popup

In Toad for Oracle 12.7.1.11, every time I open a synonym in Schema Browser with the Script tab selected, I see the same annoying popup, with this text: To extract audit options, you must either have SELECT privilege on DBA_OBJ_AUDIT_OPTS or log…
Daniel
  • 920
  • 1
  • 11
  • 22
0
votes
1 answer

Rails 4 x paper_trail: undefined method for nil:NilClass after destroy

I just installed the paper_trail gem in my Rails 4 app. So, now I have this in my schema.rb: create_table "versions", force: :cascade do |t| t.string "item_type", null: false t.integer "item_id", null: false t.string "event", …
0
votes
1 answer

Spring Framework auditng fields (CreatedAt, UpdatedAt)

I'm working on a Spring Framework project. For fast development process, I'm using Spring Roo (1.3.2). For several entities, I have requirement to store the creation time and last time it was updated. I've made couple of experiments on Spring Roo…
Nkt
  • 11
  • 4
0
votes
0 answers

How to override DbContext methods in another partial class to avoid loss from auto-generated code in context.cs

I am trying to override SaveChanges() method from DbContext for auditing purpose. When I am overriding it in my application under some partial class MyEntities inheriting DbContext, it works fine without any issue. Also MyEntities class contains few…
0
votes
1 answer

SDN4 - What are recommended strategies for doing auditing?

I am using Spring Data Neo4j 4.0.0.RC1 to build a CRUD application and am interested in auditing EACH and EVERY operation performed on my nodes and relationships, e.g. CRUD. What are some general strategies for accomplishing this? I am aware of the…
simonl
  • 1,240
  • 7
  • 19
0
votes
2 answers

Oracle DBMS_AUDIT_MGMT.CREATE_PURGE_JOB at a specifc time of day

I am trying to figure out how I can create/schedule a DBMS_AUDIT_MGMT.CREATE_PURGE_JOB to execute at a specific time of day, rather than at the interval, which appears to start at the time you execute the CREATE_PURGE_JOB ? The only thing I can…
bbaley
  • 199
  • 6
  • 22
0
votes
3 answers

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 and dependency injection. The question I have is; I need to track not…
wpfeffer
0
votes
4 answers

Auditing in SQL Server 2005 without Triggers

I want to implement auditing in my application. I don't want to add boilerplate code throughout applications and also using trigger will have an impact on the performance which cannot be done as most of the data processed is to be shown in…
XYZ
  • 119
  • 1
  • 12