79525054

Date: 2025-03-21 09:47:13
Score: 1
Natty:
Report link

To create Zone Redundant Azure SQL database(Hyper Scale with 1 replica):

Modify the command to use a valid SKU, such as HS_Gen5_4 or higher (e.g., HS_Gen5_8, HS_Gen5_16).

New-AzSqlDatabase -ResourceGroupName "trial" -ServerName "msazserver" -DatabaseName "Database01" -Edition "Hyperscale" -HighAvailabilityReplicaCount 1 -ZoneRedundant -BackupStorageRedundancy Zone -RequestedServiceObjectiveName HS_Gen5_4

Change the server, resource group and database name accordingly.

  1. Create a New SQL Database
  2. In Compute + Storage section, click on Configure Database.

  1. Under Service Tier, choose Hyperscale

  1. Select Yes to make database zone dedundant with 1 Replica.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mihir Saxena