Created
September 26, 2019 01:25
-
-
Save BelRarr/22bff0427670641c0792e6d896864dc8 to your computer and use it in GitHub Desktop.
cloner une BD Azure SQL Database via PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
New-AzSqlDatabaseCopy -ResourceGroupName "RG_source" ` | |
-ServerName "serveursource.database.windows.net" ` | |
-DatabaseName "MaBD" ` | |
-CopyResourceGroupName "RG_destination" ` | |
-CopyServerName "serveurdestination.database.windows.net" ` | |
-CopyDatabaseName "MaBdClonee" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment