About 17,200,000 results
Open links in new tab
  1. How can I get the size of a MySQL database? - Stack Overflow

    Nov 14, 2009 · If you use MySQL Workbench, you can check the database size as follows: Open MySQL Workbench and connect to your MySQL server. Go to the "Navigator" pane on the left. …

  2. How to Get True Size of MySQL Database? - Stack Overflow

    You can get the size of your Mysql database by running the following command in Mysql client. SELECT sum(round(((data_length + index_length) / 1024 / 1024 / 1024), 2)) as "Size in GB" …

  3. How to Check the Size of a Database in MySQL

    May 28, 2018 · This table includes information about the data length, index length, as well as other details such as collation, creation time, etc. You can use the information in this table to …

  4. Checking MySQL Database Size in Linux - GeeksforGeeks

    Jul 3, 2024 · SELECT table_schema "Database_Name" SUM (data_length + index_length) / (1024 * 1024) AS "Database Size in MB" FROM information_schema.TABLES GROUP BY …

  5. Easy Ways to Check Database Size in MySQL: 5 Steps (with …

    Aug 9, 2019 · This wikiHow teaches you how to check the size of a MySQL database. You can check the size of a database using MySQL Workbench, or by running a query in MySQL.

  6. How to Check MySQL Database and Table Sizes - Releem

    In this article, we'll walk you through a series of SQL commands that allow you to check the size of databases, tables, and indexes directly using the MySQL command line interface. This …

  7. Determining the size of MySQL databases and tables - A2 Hosting

    This article demonstrates how to check the size of MySQL databases and tables by using the phpMyAdmin web interface or the command-line "mysql" program.

  8. How do I find the size of a MySQL database? - Server Fault

    If you're looking for the actual size the database takes up on disk just find the size of the data/dbname directory.

  9. Mysql Database size in GB (Example) - Coderwall

    Feb 21, 2018 · To get database size information in GB run SQL query: SELECT table_schema AS "Database", Round(Sum(data_length + index_length) / 1024 / 1024 / 1024, 1) AS "Size in GB" …

  10. Tutorial MySQL - Checking the Database Size [ Step by Step ]

    Learn how to check the size of a MySQL database in 5 minutes or less.

  11. Some results have been removed
Refresh