Skip to content

Commit 41fbc37

Browse files
committed
Add Kusto query update
1 parent 17d8857 commit 41fbc37

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/sql-server/azure-arc/manage-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,15 +276,15 @@ For more examples of Azure Resource Graph Queries, see [Starter Resource Graph q
276276

277277
#### List Arc-enabled SQL Server instances subscribed to ESU
278278

279-
The following example shows how you can view all eligible [!INCLUDE [sssql11-md](../../includes/sssql11-md.md)] instances and their ESU subscription status.
279+
The following example shows how you can view all eligible [!INCLUDE [sssql11-md](../../includes/sssql11-md.md)] or [!INCLUDE [sssql14-md](../../includes/sssql14-md.md)] instances and their ESU subscription status.
280280

281281
```kusto
282282
resources
283283
| where type == 'microsoft.azurearcdata/sqlserverinstances'
284284
| extend Version = properties.version
285285
| extend Edition = properties.edition
286286
| extend containerId = tolower(tostring (properties.containerResourceId))
287-
| where Version contains "2012"
287+
| where Version in ("2012", "2014")
288288
| where Edition in ("Enterprise", "Standard")
289289
| where isnotempty(containerId)
290290
| project containerId, SQL_instance = name, Version, Edition

0 commit comments

Comments
 (0)