Blog Post

Azure Database Support Blog
1 MIN READ

Lesson Learned #42: Creating an alias for my Azure SQL Database Server

Jose_Manuel_Jurado's avatar
Mar 14, 2019
First published on MSDN on Apr 23, 2018
Today, I've been working on a service request very interesting.

If you need to create an alias for your Azure SQL Server, you have the PowerShell cmdlet called: New-AzureRmSqlServerDnsAlias.

The syntax to use is:

Login-AzureRmAccount
[string]$SubscriptionId = "xxxxxxxxxxxxxxxxxxxxx"
$azureCtx = Set-AzureRMConteXt -SubscriptionId $SubscriptionId
New-AzureRmSqlServerDnsAlias -ResourceGroupname 'Resource group' -ServerName myserver1 -DnsAliasName myserver12





Remember that there is not needed in the servername and dnsaliasname parameters use the domain .database.windows.net just only you need to specify the servername.

Enjoy!
Updated Mar 14, 2019
Version 2.0
No CommentsBe the first to comment