Azure SQL Database
An Azure relational database service.
5,920 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have an Azure SQL database and I have firewall rules on the database to allow certain IPs, where can I look for detailed logs to see if an IP source is getting blocked?
This entire subject is a web of lies.
You can use this article:
Or you can use this different KQL query to find blocked IP addresses.
AzureDiagnostics
| where ResourceId == "<your-database-resource-id>"
| where Category == "FirewallRule"
| where Properties_s == "Blocked"
| project TimeGenerated, Resource, Properties