You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/mysql/reference-stored-procedures.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure Database for MySQL Stored Procedures
2
+
title: Azure Database for MySQL stored procedures
3
3
description: This article introduces stored procedures specific to Azure Database for MySQL.
4
4
author: ajlam
5
5
ms.author: andrela
@@ -10,7 +10,9 @@ ms.date: 09/19/2019
10
10
11
11
# Azure Database for MySQL Stored Procedures
12
12
13
-
## Data-in Replication Stored Procedures
13
+
Stored procedures are available on Azure Database for MySQL servers to help manage your MySQL server. This includes managing your server's connections, queries, and setting up Data-in Replication.
14
+
15
+
## Data-in Replication stored procedures
14
16
15
17
Data-in Replication allows you to synchronize data from a MySQL server running on-premises, in virtual machines, or database services hosted by other cloud providers into the Azure Database for MySQL service.
16
18
@@ -26,12 +28,16 @@ The following stored procedures are used to set up or remove Data-in Replication
26
28
27
29
To set up data-in replication between a master and a replica in Azure Database for MySQL, refer to [how to configure data-in replication](howto-data-in-replication.md).
28
30
29
-
## Other Stored Procedures
31
+
## Other stored procedures
30
32
31
33
The following stored procedures are available in Azure Database for MySQL to manage your server.
|*mysql.az_kill*|processlist_id|N/A|Equivalent to [`KILL CONNECTION`](https://dev.mysql.com/doc/refman/8.0/en/kill.html) command. Will terminate the connection associated with the provided processlist_id after terminating any statement the connection is executing.|
36
38
|*mysql.az_kill_query*|processlist_id|N/A|Equivalent to [`KILL QUERY`](https://dev.mysql.com/doc/refman/8.0/en/kill.html) command. Will terminate the statement the connection is currently executing. Leaves the connection itself alive.|
37
-
|*mysql.az_load_timezone*|N/A|N/A|Loads time zone tables to allow the `time_zone` parameter to be set to named values (ex. "US/Pacific").|
39
+
|*mysql.az_load_timezone*|N/A|N/A|Loads time zone tables to allow the `time_zone` parameter to be set to named values (ex. "US/Pacific").|
40
+
41
+
## Next steps
42
+
- Learn how to set up [Data-in Replication](howto-data-in-replication.md)
43
+
- Learn how to use the [time zone tables](howto-server-parameters.md#working-with-the-time-zone-parameter)
0 commit comments