How to check if Azure SQL Managed Instances are enrolled (or not) on November 2022 Feature Wave? by info.odysseyx@gmail.com August 13, 2024 written by info.odysseyx@gmail.com August 13, 2024 0 comment 4 views 4 We’ve recently received several questions from customers about how to ensure that all Azure SQL Managed Instances in their subscription are registered. Feature Wave November 2022. Solve your problems with Resource Graph Queries! Running this query is very easy in the Azure Portal. Just follow these instructions: This article Learn how to run Kusto queries against a resource graph. Use the query below. resources | where type =~ "microsoft.sql/virtualclusters" | extend parsed_properties = parse_json(properties) | extend version = tostring(parsed_properties.version) | extend NovemberFeatureWave2022Enabled = iif(['version'] == '2.0','Yes','No') | extend childResources = tostring(parsed_properties.childResources) | mv-expand childResource = parse_json(childResources) | extend subscriptionId = tostring(split(childResource, "https://techcommunity.microsoft.com/")[2]) | extend resourceGroup = tostring(split(childResource, "https://techcommunity.microsoft.com/")[4]) | extend managedInstance = tostring(split(childResource, "https://techcommunity.microsoft.com/")[-1]) | project subscriptionId, resourceGroup, managedInstance, VirtualCluster=name, NovemberFeatureWave2022Enabled | order by ['subscriptionId'], resourceGroup, VirtualCluster, managedInstance The output shows whether the instance is registered at the subscription level. Source link Share 0 FacebookTwitterPinterestEmail info.odysseyx@gmail.com previous post Top Consultant Job Opportunities in India with Teamlease Digital – Apply Now next post Project Coordinator Peace, Youth and CSO Empowerment & Swahili Culture – Kenya You may also like Copilot for Microsoft Fabric – Starter Series Healthcare Focus September 12, 2024 More ways to sell through the marketplace with professional services September 11, 2024 Two upcoming Copilot and M365 for SMB Community offerings September 11, 2024 Copilot for Microsoft 365 Adoption Trainings September 11, 2024 Omdia’s perspective on Microsoft’s SSE solution September 11, 2024 Extend Viva Connections with pre-built 3rd party Adaptive cards September 11, 2024 Leave a Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.