Skip to content

Commit 027d8ae

Browse files
authored
Merge pull request #110086 from ajlam/master
address MicrosoftDocs/azure-docs#51494
2 parents c0c834d + 2b7454e commit 027d8ae

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

articles/mariadb/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: mariadb
77
ms.topic: conceptual
8-
ms.date: 3/18/2020
8+
ms.date: 4/1/2020
99
---
1010
# Limitations in Azure Database for MariaDB
1111
The following sections describe capacity, storage engine support, privilege support, data manipulation statement support, and functional limits in the database service.
@@ -142,6 +142,10 @@ Review the [MariaDB documentation](https://mariadb.com/kb/en/server-system-varia
142142
|Memory Optimized|16|16777216|1024|1073741824|
143143
|Memory Optimized|32|16777216|1024|1073741824|
144144

145+
### time_zone
146+
147+
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-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.
148+
145149
## Storage engine support
146150

147151
### Supported

articles/mariadb/howto-configure-server-parameters-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: mariadb
77
ms.devlang: azurecli
88
ms.topic: conceptual
9-
ms.date: 3/18/2020
9+
ms.date: 4/1/2020
1010
---
1111
# Customize server configuration parameters by using Azure CLI
1212
You can list, show, and update configuration parameters for an Azure Database for MariaDB 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.
@@ -53,10 +53,10 @@ This code resets the **slow\_query\_log** configuration to the default value **O
5353

5454
### Populating the time zone tables
5555

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

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

articles/mariadb/howto-create-users.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 3/18/2020
8+
ms.date: 4/2/2020
99
---
1010

1111
# Create users in Azure Database for MariaDB
@@ -18,6 +18,9 @@ SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, PROCESS, REFERENCES, INDEX
1818

1919
Once the Azure Database for MariaDB server is created, you can use the first server admin user account to create additional users and grant admin access to them. Also, the server admin account can be used to create less privileged users that have access to individual database schemas.
2020

21+
> [!NOTE]
22+
> The SUPER privilege and DBA role are not supported. Review the [privileges](concepts-limits.md#privilege-support) in the limitations article to understand what's not supported in the service.
23+
2124
## Create additional admin users
2225
1. Get the connection information and admin user name.
2326
To connect to your database server, you need the full server name and admin sign-in credentials. You can easily find the server name and sign-in information from the server **Overview** page or the **Properties** page in the Azure portal.

articles/mariadb/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: mariadb
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 MariaDB by using the Azure portal
@@ -63,10 +63,10 @@ Other server parameters that are not listed here are set to their MariaDB out-of
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();

articles/mysql/howto-create-users.md

Lines changed: 4 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/2/2020
99
---
1010

1111
# Create users in Azure Database for MySQL server
@@ -19,6 +19,9 @@ SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, PROCESS, REFERENCES, INDEX
1919

2020
Once the Azure Database for MySQL server is created, you can use the first server admin user account to create additional users and grant admin access to them. Also, the server admin account can be used to create less privileged users that have access to individual database schemas.
2121

22+
> [!NOTE]
23+
> The SUPER privilege and DBA role are not supported. Review the [privileges](concepts-limits.md#privilege-support) in the limitations article to understand what's not supported in the service.
24+
2225
## How to create additional admin users in Azure Database for MySQL
2326

2427
1. Get the connection information and admin user name.

0 commit comments

Comments
 (0)