Azure SQL Database
An Azure relational database service.
6,326 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm wanting to query SQL Managed Instances in my Azure estate to see which are eligible/using the November 2022 feature wave.
Ideally i want to do this using Azure Resource Graph. So far i have this KQL... and i'm not finding the right metadata. Any help???
resources
| where type == "microsoft.sql/managedinstances"
| where location contains "europe"
| project id, name, sku.tier, sku.capacity, properties.zoneRedundant, properties.storageAccountType, properties.storageSizeInGB, SubnetName=split(properties.subnetId,'/')[-1], properties.subnetId
Hello @AirGordon
Connect vis SSMS (SQL Server Management Studio) and run the classic commands SELECT @@VERSION
--Please don't forget to **upvote** and **Accept Answer** if the reply is helpful--