How to audit database user password changes in oracle 11g?
I want to record how many times or which user accounts passwords were changed using Oracle database auditing techniques. I also want to record any password changes done to system user account.
View ArticleSQL Server Logon Auditing and Reporting the data from a DB Table
Is it possible to configure a SQL Server database to write audit information for logons (success and failure) to a database table that can be queried?The requirement is to be able to generate a monthly...
View ArticleMS SQL Server Enterprise 2016 is truncating the audited select statements,...
TL;DR;I am getting SELECT as the audit output instead of the actual (suspected) query SELECT DISTINCT CONVERT(varchar, DecryptByPassphrase(getkey(N'key1'), FIELD1)) as DECRYPTED_FIELD1 FROM view1 WHERE...
View ArticleHow to audit a specific query in Oracle
I want to audit a specific SQL query in Oracle. However I think we can audit only users or table level.For example I want to audit 'audit statements', such as who run the "AUDIT CREATE SESSION by...
View ArticleExtended Events Login audit - Reduce login noise
We are looking for the optimal sql login audit solution, with usable filtering.Thus far we have looked into Server Audits and profiler but have concluded that extended eventslook most promising, unless...
View ArticleCheck when a privilege was granted - PostgreSQL
Is there any information_schema view that can tell when an object privilege was granted?The pg_namespace view doesn't have that.select *from pg_namespacejoin lateral ( SELECT * from aclexplode(nspacl)...
View ArticleAn INSERT statement triggers the SQL Server Audit to write it down in the...
Background:I am trying to keep a track record of what users are querying in the database. One option I found is to create a Server and Database Audit Specification. I did not want to include INSERT...
View ArticleAudit all insert, delete, update and select statements on a schema in Oracle...
I cannot understand how to create a Unified Audit policy in order to audit all INSERT, UPDATE, DELETE and SELECT statements performed on all the objects within a specific schema.The goal is to track...
View ArticleMySQL - Information_schema Events - How persistent or retention is managed
I'm a MS SQL guy and understand agent job history.I'm now working with MySQL.I've searched hi and low but I can't find any solid info on how event data within information_schema.events is persisted,...
View ArticleIs it possible to audit query results in SQL Server?
I want to find out if it is possible to audit the results of any query that gets executed on an instance of SQL Server. We currently have C2 auditing enabled, but this only showed what query was...
View ArticleMSSQL - How to log every rpc_completed event into a table?
I want to log the Execution Time and Parameters for every stored procedure call on my database.What I reached by searching is to use extended events as the latest method with minimum performance...
View ArticleHow can I link together auditing of the sql and before and after values for...
I had a number of triggers that used to work in Oracle 8i, that worked to capture both the before, and after values of a row, as well as the sql used to do the update.(I realize there would be cases...
View ArticleSQL Server DML auditing - Triggers vs SQL Server Audit Feature (vs temporal...
I am looking to implement an auditing process on an instance I have on SQL Server 2017. However, I am not finding a complete conclusion on which auditing feature would be best to use for a DB with a...
View ArticleAudit table and foreign key
I have a database with multiples tables that must be audited.As an example, I have a table of objects defined with a unique ID, a name, and a description.The name will always be the same. It is not...
View ArticleOracle Fine-Grained Access (FGA) auditing excluding one source
I want to audit DML statements coming from other places than application user "tomcat" (OS_USER attribute). I want to focus only on developers or support team changing data in any way.DML Trigger...
View ArticleHow to send alert on SQL Shutdown due to Audit Failure
Looking for a way to implement this STIG. What method should I use to monitor SQL Server, when it is shutdown due to "Shutdown on Audit Failure"?SQL Server must provide an immediate real-time alert to...
View ArticleFiltering for user transactions in Azure Log Analytics
We have audit logging in Azure Log Analytics set up for an Azure SQL Database we operate. I would like to query these logs to view user transactions to track down queries that have unintended...
View ArticleProblem with enabling System Audit (Firebird's Trace and Audit Services)
I would like to enable System Audit on my Firebird 2.5.9.27139 (x64) database (Windows 10), to inspect all queries performed on it.I've already read some docs about what the configuration file should...
View ArticleHow can I use macros for revision tracking in Access 2016?
When a field is updated, I want a macro to add information about that change to an audit table. All I need is what changed (table, record, field), the old and new values, and the date/time of the...
View ArticleMS SQL Server Enterprise 2016 is truncating the audited select statements,...
TL;DR;I am getting SELECT as the audit output instead of the actual (suspected) query SELECT DISTINCT CONVERT(varchar, DecryptByPassphrase(getkey(N'key1'), FIELD1)) as DECRYPTED_FIELD1 FROM view1 WHERE...
View Article