Skip to content

Commit 6c38a13

Browse files
authored
Merge pull request #104414 from VanMSFT/20200214_createdb
Updating create db images
2 parents bded350 + 423805f commit 6c38a13

7 files changed

+17
-12
lines changed

articles/sql-database/includes/sql-database-create-single-database.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ author: MashaMSFT
33
ms.service: sql-database
44
ms.subservice: single-database
55
ms.topic: include
6-
ms.date: 11/04/2019
6+
ms.date: 02/14/2020
77
ms.author: mathoma
8+
ms.reviewer: vanto
89
---
910

1011
In this step, you will create an Azure SQL Database single database.
@@ -24,14 +25,14 @@ Create your resource group and single database using the Azure portal.
2425

2526
![Create single database](../media/sql-database-get-started-portal/create-single-database.png)
2627

27-
3. On the **Basics** tab, in the **Project Details** section, type or select the following values:
28+
4. On the **Basics** tab, in the **Project Details** section, type or select the following values:
2829

2930
- **Subscription**: Drop down and select the correct subscription, if it doesn't appear.
3031
- **Resource group**: Select **Create new**, type `myResourceGroup`, and select **OK**.
3132

3233
![New SQL database - basic tab](../media/sql-database-get-started-portal/new-sql-database-basics.png)
3334

34-
4. In the **Database Details** section, type or select the following values:
35+
5. In the **Database Details** section, type or select the following values:
3536

3637
- **Database name**: Enter `mySampleDatabase`.
3738
- **Server**: Select **Create new**, enter the following values and then select **Select**.
@@ -58,18 +59,22 @@ Create your resource group and single database using the Azure portal.
5859
- Optionally, you can also select **Change configuration** to change the hardware generation.
5960
- Select **Apply**.
6061

61-
5. Select the **Additional settings** tab.
62-
6. In the **Data source** section, under **Use existing data**, select `Sample`.
62+
6. Select the **Networking** tab and decide if you want to [**Allow Azure services and resources to access this server**](../sql-database-networkaccess-overview.md), or add a [private endpoint](../../private-link/private-endpoint-overview.md).
63+
64+
![Networking Tab](../media/sql-database-get-started-portal/create-database-networking.png)
65+
66+
7. Select the **Additional settings** tab.
67+
8. In the **Data source** section, under **Use existing data**, select `Sample`.
6368

6469
![Additional SQL DB settings](../media/sql-database-get-started-portal/create-sql-database-additional-settings.png)
6570

6671
> [!IMPORTANT]
6772
> Make sure to select the **Sample (AdventureWorksLT)** data so you can follow easily this and other Azure SQL Database quickstarts that use this data.
6873
69-
7. Leave the rest of the values as default and select **Review + Create** at the bottom of the form.
70-
8. Review the final settings and select **Create**.
74+
9. Leave the rest of the values as default and select **Review + Create** at the bottom of the form.
75+
10. Review the final settings and select **Create**.
7176

72-
9. On the **SQL Database** form, select **Create** to deploy and provision the resource group, server, and database.
77+
11. On the **SQL Database** form, select **Create** to deploy and provision the resource group, server, and database.
7378

7479
# [PowerShell](#tab/azure-powershell)
7580

41 KB
Loading
-215 KB
Loading
-9.5 KB
Loading
-3.73 KB
Loading

articles/sql-database/sql-database-networkaccess-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Be aware of the following Azure Networking terms as you explore Virtual Network
109109

110110
**Subnet:** A virtual network contains **subnets**. Any Azure virtual machines (VMs) that you have are assigned to subnets. One subnet can contain multiple VMs or other compute nodes. Compute nodes that are outside of your virtual network cannot access your virtual network unless you configure your security to allow access.
111111

112-
**Virtual Network service endpoint:** A [Virtual Network service endpoint][vm-virtual-network-service-endpoints-overview-649d] is a subnet whose property values include one or more formal Azure service type names. In this article we are interested in the type name of **Microsoft.Sql**, which refers to the Azure service named SQL Database.
112+
**Virtual Network service endpoint:** A [Virtual Network service endpoint](../virtual-network/virtual-network-service-endpoints-overview.md) is a subnet whose property values include one or more formal Azure service type names. In this article we are interested in the type name of **Microsoft.Sql**, which refers to the Azure service named SQL Database.
113113

114114
**Virtual network rule:** A virtual network rule for your SQL Database server is a subnet that is listed in the access control list (ACL) of your SQL Database server. To be in the ACL for your SQL Database, the subnet must contain the **Microsoft.Sql** type name. A virtual network rule tells your SQL Database server to accept communications from every node that is on the subnet.
115115

@@ -118,7 +118,7 @@ Be aware of the following Azure Networking terms as you explore Virtual Network
118118

119119
The Azure SQL Server firewall allows you to specify IP address ranges from which communications are accepted into SQL Database. This approach is fine for stable IP addresses that are outside the Azure private network. However, virtual machines (VMs) within the Azure private network are configured with *dynamic* IP addresses. Dynamic IP addresses can change when your VM is restarted and in turn invalidate the IP-based firewall rule. It would be folly to specify a dynamic IP address in a firewall rule, in a production environment.
120120

121-
You can work around this limitation by obtaining a *static* IP address for your VM. For details, see [Configure private IP addresses for a virtual machine by using the Azure portal][vm-configure-private-ip-addresses-for-a-virtual-machine-using-the-azure-portal-321w].However, the static IP approach can become difficult to manage, and it is costly when done at scale.
121+
You can work around this limitation by obtaining a *static* IP address for your VM. For details, see [Configure private IP addresses for a virtual machine by using the Azure portal](../virtual-network/virtual-networks-static-private-ip-arm-pportal.md). However, the static IP approach can become difficult to manage, and it is costly when done at scale.
122122

123123
Virtual network rules are easier alternative to establish and to manage access from a specific subnet that contains your VMs.
124124

articles/sql-database/sql-database-single-database-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ ms.devlang:
99
ms.topic: quickstart
1010
author: sachinpMSFT
1111
ms.author: ninarn
12-
ms.reviewer: carlrab, sstein
13-
ms.date: 09/09/2019
12+
ms.reviewer: carlrab, sstein, vanto
13+
ms.date: 02/14/2020
1414
---
1515
# Quickstart: Create a single database in Azure SQL Database using the Azure portal, PowerShell, and Azure CLI
1616

0 commit comments

Comments
 (0)