Skip to content

Commit 5adb918

Browse files
authored
Merge pull request #109922 from ajlam/master
fix MicrosoftDocs/azure-docs#51496
2 parents 2a32044 + 23e536d commit 5adb918

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

articles/mysql/concepts-limits.md

Lines changed: 5 additions & 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: conceptual
8-
ms.date: 3/18/2020
8+
ms.date: 4/1/2020
99
---
1010
# Limitations in Azure Database for MySQL
1111
The following sections describe capacity, storage engine support, privilege support, data manipulation statement support, and functional limits in the database service. Also see [general limitations](https://dev.mysql.com/doc/mysql-reslimits-excerpt/5.6/en/limits.html) applicable to the MySQL database engine.
@@ -145,6 +145,10 @@ Review the [MySQL documentation](https://dev.mysql.com/doc/refman/5.7/en/server-
145145
|Memory Optimized|16|16777216|1024|1073741824|
146146
|Memory Optimized|32|16777216|1024|1073741824|
147147

148+
### time_zone
149+
150+
The time zone tables can be populated by calling the `mysql.az_load_timezone` stored procedure from a tool like the MySQL command line or MySQL Workbench. Refer to the [Azure portal](howto-server-parameters.md#working-with-the-time-zone-parameter) or [Azure CLI](howto-configure-server-parameters-using-cli.md#working-with-the-time-zone-parameter) articles for how to call the stored procedure and set the global or session-level time zones.
151+
148152
## Storage engine support
149153

150154
### Supported

articles/mysql/howto-configure-server-parameters-using-cli.md

Lines changed: 3 additions & 3 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: conceptual
9-
ms.date: 3/18/2020
9+
ms.date: 4/1/2020
1010
---
1111
# Customize server parameters by using Azure CLI
1212
You can list, show, and update configuration parameters for an Azure Database for MySQL server by using Azure CLI, the Azure command-line utility. A subset of engine configurations is exposed at the server-level and can be modified.
@@ -49,10 +49,10 @@ This code resets the **slow\_query\_log** configuration to the default value **O
4949

5050
### Populating the time zone tables
5151

52-
The time zone tables on your server can be populated by calling the `az_load_timezone` stored procedure from a tool like the MySQL command line or MySQL Workbench.
52+
The time zone tables on your server can be populated by calling the `mysql.az_load_timezone` stored procedure from a tool like the MySQL command line or MySQL Workbench.
5353

5454
> [!NOTE]
55-
> If you are running the `az_load_timezone` command from MySQL Workbench, you may need to turn off safe update mode first using `SET SQL_SAFE_UPDATES=0;`.
55+
> If you are running the `mysql.az_load_timezone` command from MySQL Workbench, you may need to turn off safe update mode first using `SET SQL_SAFE_UPDATES=0;`.
5656
5757
```sql
5858
CALL mysql.az_load_timezone();

articles/mysql/howto-server-parameters.md

Lines changed: 3 additions & 3 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: conceptual
8-
ms.date: 3/18/2020
8+
ms.date: 4/1/2020
99
---
1010

1111
# How to configure server parameters in Azure Database for MySQL by using the Azure portal
@@ -63,10 +63,10 @@ Other server parameters that are not listed here are set to their MySQL out-of-b
6363

6464
### Populating the time zone tables
6565

66-
The time zone tables on your server can be populated by calling the `az_load_timezone` stored procedure from a tool like the MySQL command line or MySQL Workbench.
66+
The time zone tables on your server can be populated by calling the `mysql.az_load_timezone` stored procedure from a tool like the MySQL command line or MySQL Workbench.
6767

6868
> [!NOTE]
69-
> If you are running the `az_load_timezone` command from MySQL Workbench, you may need to turn off safe update mode first using `SET SQL_SAFE_UPDATES=0;`.
69+
> If you are running the `mysql.az_load_timezone` command from MySQL Workbench, you may need to turn off safe update mode first using `SET SQL_SAFE_UPDATES=0;`.
7070
7171
```sql
7272
CALL mysql.az_load_timezone();

0 commit comments

Comments
 (0)