Skip to content

Commit 588021c

Browse files
committed
Column name change
1 parent b6f4cef commit 588021c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

samples/manage/azure-hybrid-benefit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This script provides a simple solution to analyze and track the consolidated uti
2424
|HADR Ent vCores|Total vCores used by HADR replicas running SQL Server Enterprise edition|
2525
|Developer vCores|Total vCores used by SQL Server Developer edition|
2626
|Express vCores|Total vCores used by SQL Server Express edition|
27-
|Unregistered SQLVM vCores|Total vCores used by SQL Server VM that are not registered with SQL IaaS Agent Extension |
27+
|Unregistered vCores|Total vCores used by SQL Server in Virtual Machines that are not registered with SQL IaaS Agent Extension |
2828
|Unknown vCores|Total vCores used by Azure SQL Server resources with an unknown edition or service tier|
2929

3030
The following resources are in scope for the license utilization analysis:

samples/manage/azure-hybrid-benefit/sql-license-usage.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ if ($useDatabase){
277277
[HADR_ENT_vCores] [int] NULL,
278278
[Developer_vCores] [int] NULL,
279279
[Express_vCores] [int] NULL,
280-
[Unregistered_SQLVM_vCores] [int] NULL,
280+
[Unregistered_vCores] [int] NULL,
281281
[Unknown_vCores] [int] NULL)"
282282
[String] $insertSQL = "INSERT INTO [dbo].[$tableName](
283283
[Date],
@@ -294,7 +294,7 @@ if ($useDatabase){
294294
[HADR_ENT_vCores],
295295
[Developer_vCores],
296296
[Express_vCores],
297-
[Unregistered_SQLVM_vCores],
297+
[Unregistered_vCores],
298298
[Unknown_vCores])
299299
VALUES
300300
('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}','{9}','{10}','{11}','{12}','{13}','{14}','{15}' )"
@@ -320,7 +320,7 @@ if ($useDatabase){
320320
}
321321

322322
[System.Collections.ArrayList]$usageTable = @()
323-
$usageTable += ,(@("Date", "Time", "Subscription Name", "Subscription ID", "AHB ECs", "PAYG ECs", "AHB Std vCores", "AHB Ent vCores", "PAYG Std vCores", "PAYG Ent vCores", "HADR Std vCores", "HADR Ent vCores", "Developer vCores", "Express vCores", "Unregistered SQLVM vCores", "Unknown vCores"))
323+
$usageTable += ,(@("Date", "Time", "Subscription Name", "Subscription ID", "AHB ECs", "PAYG ECs", "AHB Std vCores", "AHB Ent vCores", "PAYG Std vCores", "PAYG Ent vCores", "HADR Std vCores", "HADR Ent vCores", "Developer vCores", "Express vCores", "Unregistered vCores", "Unknown vCores"))
324324
}
325325

326326
$global:VM_SKUs = @{} # To hold the VM SKU table for future use

0 commit comments

Comments
 (0)