Skip to content

Commit f318582

Browse files
committed
blocking issues
1 parent c2acf48 commit f318582

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

articles/mysql/reference-stored-procedures.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Database for MySQL Stored Procedures
2+
title: Azure Database for MySQL stored procedures
33
description: This article introduces stored procedures specific to Azure Database for MySQL.
44
author: ajlam
55
ms.author: andrela
@@ -10,7 +10,9 @@ ms.date: 09/19/2019
1010

1111
# Azure Database for MySQL Stored Procedures
1212

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
1416

1517
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.
1618

@@ -26,12 +28,16 @@ The following stored procedures are used to set up or remove Data-in Replication
2628

2729
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).
2830

29-
## Other Stored Procedures
31+
## Other stored procedures
3032

3133
The following stored procedures are available in Azure Database for MySQL to manage your server.
3234

3335
|**Stored Procedure Name**|**Input Parameters**|**Output Parameters**|**Usage Note**|
3436
|-----|-----|-----|-----|
3537
|*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.|
3638
|*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

Comments
 (0)