From bdb30c4e4da86c9d4c21d7fe448c32f4678b5181 Mon Sep 17 00:00:00 2001 From: Deepak Date: Mon, 23 Dec 2024 19:43:05 +0530 Subject: [PATCH] updated docs --- ...em-design-google-com-into-browser-press-enter.md | 2 +- docs/databases/indexing/mysql-indexing.md | 8 +++++++- ...happens-when-you-type-a-URL-into-a-browser.webp} | Bin 3 files changed, 8 insertions(+), 2 deletions(-) rename docs/media/{What happens when you type a URL into a browser? copy.webp => What-happens-when-you-type-a-URL-into-a-browser.webp} (100%) diff --git a/docs/computer-science/interview-question/system-design-google-com-into-browser-press-enter.md b/docs/computer-science/interview-question/system-design-google-com-into-browser-press-enter.md index 787521894f2..ba8a22ec4ec 100644 --- a/docs/computer-science/interview-question/system-design-google-com-into-browser-press-enter.md +++ b/docs/computer-science/interview-question/system-design-google-com-into-browser-press-enter.md @@ -1,6 +1,6 @@ # System Design - What happens when you type google.com into your browser's address box and press enter? -![What happens when you type a URL into a browser?](../../media/What%20happens%20when%20you%20type%20a%20URL%20into%20a%20browser?.webp) +![What happens when you type a URL into a browser?](../../media/What-happens-when-you-type-a-URL-into-a-browser.webp) Ever wondered what exactly happens when you type google.com into your browser's address box and press enter? diff --git a/docs/databases/indexing/mysql-indexing.md b/docs/databases/indexing/mysql-indexing.md index 16810c3176d..bb382d97e84 100755 --- a/docs/databases/indexing/mysql-indexing.md +++ b/docs/databases/indexing/mysql-indexing.md @@ -395,7 +395,13 @@ https://www.eversql.com/how-to-find-unused-indexes-in-a-mysql-database ## Full table scans -`select * from sys.x$statements_with_full_table_scans;` +```sql +select * from sys.x$statements_with_full_table_scans;` + +select * from sys.`x$statement_analysis`; + +select * from sys.`x$statements_with_runtimes_in_95th_percentile`; +``` ## Rebuilding or Repairing Tables or Indexes diff --git a/docs/media/What happens when you type a URL into a browser? copy.webp b/docs/media/What-happens-when-you-type-a-URL-into-a-browser.webp similarity index 100% rename from docs/media/What happens when you type a URL into a browser? copy.webp rename to docs/media/What-happens-when-you-type-a-URL-into-a-browser.webp