From 9b97ce324878439c7d42066cf8e029a29d62c18d Mon Sep 17 00:00:00 2001 From: HAMIDOUN Houssain <32491303+Hossain007@users.noreply.github.com> Date: Mon, 15 Jun 2026 13:46:33 +0200 Subject: [PATCH 1/2] Update NVA deployment instructions and subnet creation Added steps to create the required subnets which was missing. Without it, azure will pick up defaults and students will likely not have the right subnets to do the lab. --- .../includes/5-exercise-create-nva-vm.md | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/learn-pr/azure/control-network-traffic-flow-with-routes/includes/5-exercise-create-nva-vm.md b/learn-pr/azure/control-network-traffic-flow-with-routes/includes/5-exercise-create-nva-vm.md index b88edd5efd5..31f63922ff0 100644 --- a/learn-pr/azure/control-network-traffic-flow-with-routes/includes/5-exercise-create-nva-vm.md +++ b/learn-pr/azure/control-network-traffic-flow-with-routes/includes/5-exercise-create-nva-vm.md @@ -10,6 +10,37 @@ In the following steps, you'll deploy an NVA. You'll then update the Azure virtu [!INCLUDE[](../../../includes/azure-optional-exercise-subscription-note.md)] +## Create the required subnets + +1. The public subnet: + + ```azurecli + az network vnet subnet create \ + --resource-group "myResourceGroupName" \ + --vnet-name vnet \ + --name publicsubnet \ + --address-prefixes 10.0.0.0/24 + ``` + +2. The private subnet: + ```azurecli + az network vnet subnet create \ + --resource-group "myResourceGroupName" \ + --vnet-name vnet \ + --name privatesubnet \ + --address-prefixes 10.0.1.0/24 + ``` + +3. The dmz subnet: + ```azurecli + az network vnet subnet create \ + --resource-group "myResourceGroupName" \ + --vnet-name vnet \ + --name dmzsubnet \ + --address-prefixes 10.0.2.0/24 + ``` + + ## Deploy the network virtual appliance To build the NVA, deploy an Ubuntu LTS instance. From a0adf9adde590a0fb4ed966cf6fe0bdc0727af86 Mon Sep 17 00:00:00 2001 From: HAMIDOUN Houssain <32491303+Hossain007@users.noreply.github.com> Date: Tue, 1 Sep 2026 15:16:29 +0200 Subject: [PATCH 2/2] Correct estimated byte size for Salary column Updated the estimated byte size for the Salary column in the Employee table as per this documentation https://learn.microsoft.com/en-us/sql/t-sql/data-types/decimal-and-numeric-transact-sql?view=sql-server-ver17 Precision 10-19 -> 9 storage bytes --- .../includes/3-design-implement-tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn-pr/wwl-data-ai/design-implement-database-objects/includes/3-design-implement-tables.md b/learn-pr/wwl-data-ai/design-implement-database-objects/includes/3-design-implement-tables.md index 881cf35183f..c200f9c60eb 100644 --- a/learn-pr/wwl-data-ai/design-implement-database-objects/includes/3-design-implement-tables.md +++ b/learn-pr/wwl-data-ai/design-implement-database-objects/includes/3-design-implement-tables.md @@ -64,7 +64,7 @@ CREATE TABLE Employee ( FirstName NVARCHAR(50), -- ~2-100 bytes (avg 40) LastName NVARCHAR(50), -- ~2-100 bytes (avg 40) HireDate DATE, -- 3 bytes - Salary DECIMAL(10,2) -- 5 bytes + Salary DECIMAL(10,2) -- 9 bytes ); -- Estimated row size: 4 + 40 + 40 + 3 + 5 = ~92 bytes -- Plus row overhead (~7 bytes) = ~99 bytes per row