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 12 views 12 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 Biden Battered Over AI Diffusion Policy January 14, 2025 The best thing about CES 2025 January 13, 2025 Meta Scrap fact-checker, eases content restrictions January 8, 2025 2025 Cyber Security Predictions Influenced by AI January 7, 2025 7 Disturbing Tech Trends of 2024 December 19, 2024 AI on phones fails to impress Apple, Samsung users: Survey December 18, 2024 Leave a Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.