You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-single-database-get-started-template.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,23 @@ A single database has a defined set of compute, memory, IO, and storage resource
31
31
32
32
### Review the template
33
33
34
-
The template used in this quickstart is from [Azure Quickstart templates]()
34
+
The template used in this quickstart is from [Azure Quickstart templates](https://azure.microsoft.com/resources/templates/101-sql-logical-server/)
35
35
36
-
The following JSON file is the template that is used in this article. The template is stored in [GitHub](https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/SQLServerAndDatabase/azuredeploy.json). More Azure SQL database template samples can be found in [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Sql&pageNumber=1&sort=Popular).
More Azure SQL database template samples can be found in [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Sql&pageNumber=1&sort=Popular).
49
+
50
+
### Deploy the template
39
51
40
52
Select **Try it** from the following PowerShell code block to open Azure Cloud Shell.
41
53
@@ -50,7 +62,7 @@ $adminPassword = Read-Host -Prompt "Enter the SQl server administrator password"
@@ -69,15 +81,15 @@ az group create --location $location --name $resourceGroupName
69
81
70
82
az group deployment create -g $resourceGroupName --template-uri "D:\GitHub\azure-docs-json-samples\SQLServerAndDatabase\azuredeploy.json" `
71
83
--parameters 'projectName=' + $projectName \
72
-
'adminUser=' + $adminUser \
73
-
'adminPassword=' + $adminPassword
84
+
'administratorLogin=' + $adminUser \
85
+
'administratorLoginPassword=' + $adminPassword
74
86
75
87
Read-Host -Prompt "Press [ENTER] to continue ..."
76
88
```
77
89
78
90
* * *
79
91
80
-
## Query the database
92
+
## Validate the deployment
81
93
82
94
To query the database, see [Query the database](./sql-database-single-database-get-started.md#query-the-database).
83
95
@@ -112,3 +124,4 @@ az group delete --name $resourceGroupName
112
124
-[Connect and query using Azure Data Studio](https://docs.microsoft.com/sql/azure-data-studio/quickstart-sql-database?toc=/azure/sql-database/toc.json)
113
125
- To create a single database using Azure CLI, see [Azure CLI samples](sql-database-cli-samples.md).
114
126
- To create a single database using Azure PowerShell, see [Azure PowerShell samples](sql-database-powershell-samples.md).
127
+
- To learn how to create Resource Manager templates, see [Create your first template](../azure-resource-manager/templates/template-tutorial-create-first-template.md).
0 commit comments