Create the dbo.AuditData database view to allow QRadar® to
poll for audit events from a database table by using the JDBC
protocol. The database view contains the audit events from
your server audit specification and database audit specification.
Procedure
- From the Microsoft SQL
Server Management Studio toolbar, click New
Query.
- Type the following Transact-SQL statement:
create view dbo.AuditData as SELECT * FROM sys.fn_get_audit_file ('<Audit File Path and Name>',default,default); GOa
For
example:
create view dbo.AuditData as SELECT * FROM sys.fn_get_audit_file ('C:\inetpub\logs\SQLAudits*’,default,default); GO
- From the Standard toolbar, click Execute.