An Azure relational database service.
Go to Azure Portal (Your SQL Server)
Make sure "Audit all actions and events" is ON or select them manually.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
After enabling SQL Auditing on both the Azure SQL Server and Azure SQL Database, and configuring audit logs to be sent to the Log Analytics workspace, we are not seeing audit events for CREATE, UPDATE, DELETE, DROP, or ALTER operations in the workspace.
Has anyone encountered this issue before? Is there any known configuration or limitation that could cause these audit logs not to appear?
An Azure relational database service.
Go to Azure Portal (Your SQL Server)
Make sure "Audit all actions and events" is ON or select them manually.
Try to run the following simple query first, just provide the subscription ID, resource group and database name on the WHERE clause. Maybe filtering this way you get results.
AzureDiagnostics
| where ResourceId == '/SUBSCRIPTIONS/<your subsciption ID>/RESOURCEGROUPS/<your rsrc grp>/PROVIDERS/MICROSOFT.SQL/SERVERS/<YOURSERVERNAME>/DATABASES/<YOURDBNAME>'
| project event_time_t, statement_s, succeeded_s, affected_rows_d, server_principal_name_s, client_ip_s, application_name_s, additional_information_s, data_sensitivity_information_s
| order by event_time_t desc
| take 100