Skip to content

Commit 870fc50

Browse files
authored
Merge pull request #108474 from ajlam/master
Update to full screen create
2 parents d77a16e + 16b457f commit 870fc50

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed
31.1 KB
Loading
31.1 KB
Loading

articles/mariadb/quickstart-create-mariadb-server-database-using-azure-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: andrela
66
ms.service: mariadb
77
ms.custom: mvc
88
ms.topic: quickstart
9-
ms.date: 3/18/2020
9+
ms.date: 3/19/2020
1010
---
1111

1212
# Create an Azure Database for MariaDB server by using the Azure portal
@@ -53,7 +53,7 @@ To create an Azure Database for MariaDB server:
5353
5454
![Create server - Pricing tier window](./media/quickstart-create-mariadb-server-database-using-azure-portal/3-pricing-tier.png)
5555

56-
4. Select **Create** to provision the server. Provisioning can take up to 20 minutes.
56+
4. Select **Review + create** to provision the server. Provisioning can take up to 20 minutes.
5757

5858
5. To monitor the deployment process, select **Notifications** on the toolbar (the bell icon).
5959

articles/mariadb/tutorial-design-database-using-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You create an Azure Database for MariaDB server with a defined set of [compute a
4040

4141
![Go to MySQL](./media/tutorial-design-database-using-portal/1-Navigate-to-mariadb.png)
4242

43-
3. Select the **Azure Database for MariaDB** tile, and then select **Create**. Enter or select the required information.
43+
3. Select the **Azure Database for MariaDB** tile. Enter or select the required information.
4444

4545
![Create form](./media/tutorial-design-database-using-portal/2-create-form.png)
4646

@@ -62,7 +62,7 @@ You create an Azure Database for MariaDB server with a defined set of [compute a
6262
> [!TIP]
6363
> With **auto-growth** enabled your server increases storage when you are approaching the allocated limit, without impacting your workload.
6464
65-
4. Select **Create**. In a minute or two, a new Azure Database for MariaDB server is running in the cloud. To monitor the deployment process, select **Notifications** on the toolbar.
65+
4. Click **Review + create**. You can click on the **Notifications** button on the toolbar to monitor the deployment process. Deployment can take up to 20 minutes.
6666

6767
## Configure the firewall
6868

45.2 KB
Loading
45.2 KB
Loading

articles/mysql/quickstart-create-mysql-server-database-using-azure-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: andrela
66
ms.service: mysql
77
ms.custom: mvc
88
ms.topic: quickstart
9-
ms.date: 3/18/2020
9+
ms.date: 3/20/2020
1010
---
1111

1212
# Create an Azure Database for MySQL server by using the Azure portal
@@ -52,7 +52,7 @@ Follow these steps to create an Azure Database for MySQL server:
5252
5353
![Create server - pricing tier window](./media/quickstart-create-mysql-server-database-using-azure-portal/3-pricing-tier.png)
5454

55-
4. Select **Create** to provision the server. Provisioning can take up to 20 minutes.
55+
4. Select **Review + create** to provision the server. Provisioning can take up to 20 minutes.
5656

5757
5. Select **Notifications** on the toolbar (the bell icon) to monitor the deployment process.
5858

articles/mysql/tutorial-design-database-using-portal.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mysql
77
ms.topic: tutorial
8-
ms.date: 12/02/2019
8+
ms.date: 3/20/2020
99
ms.custom: mvc
1010
---
1111

@@ -31,11 +31,13 @@ Open your favorite web browser, and visit the [Microsoft Azure portal](https://p
3131
## Create an Azure Database for MySQL server
3232
An Azure Database for MySQL server is created with a defined set of [compute and storage resources](./concepts-compute-unit-and-storage.md). The server is created within an [Azure resource group](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-overview).
3333

34-
1. Navigate to **Databases** > **Azure Database for MySQL**. If you cannot find MySQL Server under **Databases** category, click **See all** to show all available database services. You can also type **Azure Database for MySQL** in the search box to quickly find the service.
34+
1. Select the **Create a resource** button (+) in the upper left corner of the portal.
35+
36+
2. Select **Databases** > **Azure Database for MySQL**. If you cannot find MySQL Server under the **Databases** category, click **See all** to show all available database services. You can also type **Azure Database for MySQL** in the search box to quickly find the service.
3537

3638
![Navigate to MySQL](./media/tutorial-design-database-using-portal/1-Navigate-to-MySQL.png)
3739

38-
2. Click **Azure Database for MySQL** tile, and then click **Create**. Fill out the Azure Database for MySQL form.
40+
3. Click **Azure Database for MySQL** tile. Fill out the Azure Database for MySQL form.
3941

4042
![Create form](./media/tutorial-design-database-using-portal/2-create-form.png)
4143

@@ -57,7 +59,7 @@ An Azure Database for MySQL server is created with a defined set of [compute and
5759
> [!TIP]
5860
> With **auto-growth** enabled your server increases storage when you are approaching the allocated limit, without impacting your workload.
5961
60-
3. Click **Create**. In a minute or two, a new Azure Database for MySQL server is running in the cloud. You can click **Notifications** button on the toolbar to monitor the deployment process.
62+
4. Click **Review + create**. You can click on the **Notifications** button on the toolbar to monitor the deployment process. Deployment can take up to 20 minutes.
6163

6264
## Configure firewall
6365
Azure Databases for MySQL are protected by a firewall. By default, all connections to the server and the databases inside the server are rejected. Before connecting to Azure Database for MySQL for the first time, configure the firewall to add the client machine's public network IP address (or IP address range).
@@ -90,7 +92,7 @@ mysql -h mydemoserver.mysql.database.azure.com -u myadmin@mydemoserver -p
9092
```
9193

9294
## Create a blank database
93-
Once youre connected to the server, create a blank database to work with.
95+
Once you're connected to the server, create a blank database to work with.
9496
```sql
9597
CREATE DATABASE mysampledb;
9698
```
@@ -106,9 +108,9 @@ Now that you know how to connect to the Azure Database for MySQL database, you c
106108
First, create a table and load it with some data. Let's create a table that stores inventory information.
107109
```sql
108110
CREATE TABLE inventory (
109-
id serial PRIMARY KEY,
110-
name VARCHAR(50),
111-
quantity INTEGER
111+
id serial PRIMARY KEY,
112+
name VARCHAR(50),
113+
quantity INTEGER
112114
);
113115
```
114116

0 commit comments

Comments
 (0)