Skip to content

Commit c9b40f1

Browse files
authored
Merge pull request #183522 from savjani/master
what's new update
2 parents 8a18eeb + e091aec commit c9b40f1

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

articles/mysql/single-server-whats-new.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,26 @@ Azure Database for MySQL is a relational database service in the Microsoft cloud
1616

1717
This article summarizes new releases and features in Azure Database for MySQL - Single Server beginning in January 2021. Listings appear in reverse chronological order, with the most recent updates first.
1818

19+
## December 2021
20+
21+
This release of Azure Database for MySQL - Single Server includes the following updates:
22+
23+
- **Query Text removed in Query Performance Insights to avoid unauthorized access**
24+
25+
Starting December 2021, you will not be able to see the query text of the queries in Query performance insight blade in Azure portal. The query text is removed to avoid unauthorized access to the query text or underlying schema which can pose a security risk. The recommended steps to view the query text is shared below:
26+
27+
- Identify the query_id of the top queries from the Query Performance Insight blade in Azure portal
28+
- Login to your Azure Database for MySQL server from MySQL Workbench or mysql.exe client or your preferred query tool and execute the following queries
29+
30+
```sql
31+
SELECT * FROM mysql.query_store where query_id = '<insert query id from Query performance insight blade in Azure portal'; // for queries in Query Store
32+
SELECT * FROM mysql.query_store_wait_stats where query_id = '<insert query id from Query performance insight blade in Azure portal'; // for wait statistics
33+
```
34+
35+
- You can browse the query_digest_text column to identify the query text for the corresponding query_id
36+
37+
The above steps will ensure only authenticated and authorized users can have secure access to the query text.
38+
1939
## October 2021
2040

2141
- **Known Issues**
@@ -91,4 +111,4 @@ In addition, consider the following points of contact as appropriate:
91111
92112
- Learn more about [Azure Database for MySQL pricing](https://azure.microsoft.com/pricing/details/mysql/server/).
93113
- Browse the [public documentation](./single-server/index.yml) for Azure Database for MySQL – Single Server.
94-
- Review details on [troubleshooting common errors](./howto-troubleshoot-common-errors.md).
114+
- Review details on [troubleshooting common errors](./howto-troubleshoot-common-errors.md).

0 commit comments

Comments
 (0)