SQL Managed Instance - get SQL version?

AirGordon 7,150 Reputation points
2023-11-30T13:04:01.7+00:00

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

Azure SQL Database
{count} votes

1 answer

Sort by: Most helpful
  1. SUNOJ KUMAR YELURU 15,256 Reputation points MVP Volunteer Moderator
    2023-11-30T14:51:26.0133333+00:00

    Hello @AirGordon

    Connect vis SSMS (SQL Server Management Studio) and run the classic commands SELECT @@VERSION

    User's image

    --Please don't forget to **upvote** and **Accept Answer** if the reply is helpful--
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.