Skip to content

Commit 9d537c7

Browse files
committed
Revert "mysql freshness 7"
This reverts commit 1a63ae3.
1 parent 1a63ae3 commit 9d537c7

5 files changed

+35
-35
lines changed

articles/mysql/sample-scripts-azure-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: mysql
77
ms.devlang: azurecli
88
ms.topic: sample
99
ms.custom: mvc
10-
ms.date: 3/18/2020
10+
ms.date: 12/02/2019
1111
---
1212
# Azure CLI samples for Azure Database for MySQL
1313
The following table includes links to sample Azure CLI scripts for Azure Database for MySQL.

articles/mysql/select-right-deployment-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: kummanish
55
ms.author: manishku
66
ms.service: mysql
77
ms.topic: conceptual
8-
ms.date: 3/18/2020
8+
ms.date: 12/02/2019
99
---
1010

1111
# Choose the right MySQL Server option in Azure

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: andrela
66
ms.service: mysql
77
ms.devlang: azurecli
88
ms.topic: tutorial
9-
ms.date: 3/18/2020
9+
ms.date: 12/02/2019
1010
ms.custom: mvc
1111
---
1212

@@ -117,7 +117,7 @@ mysql -h mydemoserver.mysql.database.azure.com -u myadmin@mydemoserver -p
117117
```
118118

119119
## Create a blank database
120-
Once you're connected to the server, create a blank database.
120+
Once youre connected to the server, create a blank database.
121121
```sql
122122
mysql> CREATE DATABASE mysampledb;
123123
```
@@ -133,9 +133,9 @@ Now that you know how to connect to the Azure Database for MySQL database, compl
133133
First, create a table and load it with some data. Let's create a table that stores inventory information.
134134
```sql
135135
CREATE TABLE inventory (
136-
id serial PRIMARY KEY,
137-
name VARCHAR(50),
138-
quantity INTEGER
136+
id serial PRIMARY KEY,
137+
name VARCHAR(50),
138+
quantity INTEGER
139139
);
140140
```
141141

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

Lines changed: 1 addition & 1 deletion
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: 3/18/2020
8+
ms.date: 12/02/2019
99
ms.custom: mvc
1010
---
1111

articles/mysql/tutorial-provision-mysql-server-using-Azure-Resource-Manager-templates.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: pariks
66
ms.service: mysql
77
ms.devlang: json
88
ms.topic: tutorial
9-
ms.date: 3/18/2020
9+
ms.date: 12/02/2019
1010
ms.custom: mvc
1111
---
1212

@@ -72,28 +72,28 @@ To get the JSON template reference for an Azure Database for MySQL server, go to
7272
}
7373
```
7474
In this request, the values that need to be customized are:
75-
+ `name` - Specify the name of your MySQL Server (without domain name).
76-
+ `location` - Specify a valid Azure data center region for your MySQL Server. For example, westus2.
77-
+ `properties/version` - Specify the MySQL server version to deploy. For example, 5.6 or 5.7.
78-
+ `properties/administratorLogin` - Specify the MySQL admin login for the server. The admin sign-in name cannot be azure_superuser, admin, administrator, root, guest, or public.
79-
+ `properties/administratorLoginPassword` - Specify the password for the MySQL admin user specified above.
80-
+ `properties/sslEnforcement` - Specify Enabled/Disabled to enable/disable sslEnforcement.
81-
+ `storageProfile/storageMB` - Specify the max provisioned storage size required for the server in megabytes. For example, 5120.
82-
+ `storageProfile/backupRetentionDays` - Specify the desired backup retention period in days. For example, 7.
83-
+ `storageProfile/geoRedundantBackup` - Specify Enabled/Disabled depending on Geo-DR requirements.
84-
+ `sku/tier` - Specify Basic, GeneralPurpose, or MemoryOptimized tier for deployment.
85-
+ `sku/capacity` - Specify the vCore capacity. Possible values include 2, 4, 8, 16, 32 or 64.
86-
+ `sku/family` - Specify Gen5 to choose hardware generation for server deployment.
87-
+ `sku/name` - Specify TierPrefix_family_capacity. For example B_Gen5_1, GP_Gen5_16, MO_Gen5_32. See the [pricing tiers](./concepts-pricing-tiers.md) documentation to understand the valid values per region and per tier.
88-
+ `resources/properties/virtualNetworkSubnetId` - Specify the Azure identifier of the subnet in VNet where Azure MySQL server should be placed.
89-
+ `tags(optional)` - Specify optional tags are key value pairs that you would use to categorize the resources for billing etc.
75+
+ `name` - Specify the name of your MySQL Server (without domain name).
76+
+ `location` - Specify a valid Azure data center region for your MySQL Server. For example, westus2.
77+
+ `properties/version` - Specify the MySQL server version to deploy. For example, 5.6 or 5.7.
78+
+ `properties/administratorLogin` - Specify the MySQL admin login for the server. The admin sign-in name cannot be azure_superuser, admin, administrator, root, guest, or public.
79+
+ `properties/administratorLoginPassword` - Specify the password for the MySQL admin user specified above.
80+
+ `properties/sslEnforcement` - Specify Enabled/Disabled to enable/disable sslEnforcement.
81+
+ `storageProfile/storageMB` - Specify the max provisioned storage size required for the server in megabytes. For example, 5120.
82+
+ `storageProfile/backupRetentionDays` - Specify the desired backup retention period in days. For example, 7.
83+
+ `storageProfile/geoRedundantBackup` - Specify Enabled/Disabled depending on Geo-DR requirements.
84+
+ `sku/tier` - Specify Basic, GeneralPurpose, or MemoryOptimized tier for deployment.
85+
+ `sku/capacity` - Specify the vCore capacity. Possible values include 2, 4, 8, 16, 32 or 64.
86+
+ `sku/family` - Specify Gen5 to choose hardware generation for server deployment.
87+
+ `sku/name` - Specify TierPrefix_family_capacity. For example B_Gen5_1, GP_Gen5_16, MO_Gen5_32. See the [pricing tiers](./concepts-pricing-tiers.md) documentation to understand the valid values per region and per tier.
88+
+ `resources/properties/virtualNetworkSubnetId` - Specify the Azure identifier of the subnet in VNet where Azure MySQL server should be placed.
89+
+ `tags(optional)` - Specify optional tags are key value pairs that you would use to categorize the resources for billing etc.
9090

9191
If you are looking to build an Azure Resource Manager template to automate Azure Database for MySQL deployments for your organization, the recommendation would be to start from the sample [Azure Resource Manager template](https://github.com/Azure/azure-quickstart-templates/tree/master/101-managed-mysql-with-vnet) in Azure Quickstart GitHub Gallery first and build on top of it.
9292

93-
If you a'e new to Azure Resource Manager templates and would like to try it, you can start by following these steps:
94-
+ Clone or download the Sample [Azure Resource Manager template](https://github.com/Azure/azure-quickstart-templates/tree/master/101-managed-mysql-with-vnet) from Azure Quickstart gallery.
95-
+ Modify the azuredeploy.parameters.json to update the parameter values based on your preference and save the file.
96-
+ Use Azure CLI to create the Azure MySQL server using the following commands
93+
If you are new to Azure Resource Manager templates and would like to try it, you can start by following these steps:
94+
+ Clone or download the Sample [Azure Resource Manager template](https://github.com/Azure/azure-quickstart-templates/tree/master/101-managed-mysql-with-vnet) from Azure Quickstart gallery.
95+
+ Modify the azuredeploy.parameters.json to update the parameter values based on your preference and save the file.
96+
+ Use Azure CLI to create the Azure MySQL server using the following commands
9797

9898
You may use the Azure Cloud Shell in the browser, or Install Azure CLI on your own computer to run the code blocks in this tutorial.
9999

@@ -106,9 +106,9 @@ az group deployment create -g $ ExampleResourceGroup --template-file $ {templa
106106
```
107107

108108
## Get the connection information
109-
o connect to your server, you need to provide host information and access credentials.
110-
``azurecli-interactive
111-
z mysql server show --resource-group myresourcegroup --name mydemoserver
109+
To connect to your server, you need to provide host information and access credentials.
110+
```azurecli-interactive
111+
az mysql server show --resource-group myresourcegroup --name mydemoserver
112112
```
113113

114114
The result is in JSON format. Make a note of the **fullyQualifiedDomainName** and **administratorLogin**.
@@ -148,7 +148,7 @@ mysql -h mydemoserver.database.windows.net -u myadmin@mydemoserver -p
148148
```
149149

150150
## Create a blank database
151-
Once you're connected to the server, create a blank database.
151+
Once youre connected to the server, create a blank database.
152152
```sql
153153
mysql> CREATE DATABASE mysampledb;
154154
```
@@ -164,9 +164,9 @@ Now that you know how to connect to the Azure Database for MySQL database, compl
164164
First, create a table and load it with some data. Let's create a table that stores inventory information.
165165
```sql
166166
CREATE TABLE inventory (
167-
id serial PRIMARY KEY,
168-
name VARCHAR(50),
169-
quantity INTEGER
167+
id serial PRIMARY KEY,
168+
name VARCHAR(50),
169+
quantity INTEGER
170170
);
171171
```
172172

0 commit comments

Comments
 (0)