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

    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. Right-click on the database you want to check. Select "Schema Inspector." The "Schema Inspector" window will show various details, including the estimated size of the database.

  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" FROM information_schema.TABLES WHERE table_schema = "<database_name>"

  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 find the size of a given database or all databases on the server. You can also use the MySQL Workbench GUI to find details about the database (including its size).

  4. How to check MYSQL Database size in phpMyAdmin and via …

    Sometimes it is required to check the MySQL Database size. You can check it from the phpMyAdmin as well as using ssh.

  5. How to Check MySQL Database and Table Size - phoenixNAP

    Sep 29, 2021 · How to Check MySQL Database and Table Size. There are three ways to check MySQL database and table sizes: 1. Using phpMyAdmin. 2. Using the SELECT statement. 3. Using MySQL workbench. All methods provide ways to check the size for: A single database. All databases. Table size for a single database. Table size for all databases.

  6. 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.

  7. MySQL 8: How to get the size of a database - Sling Academy

    Jan 25, 2024 · In MySQL 8, multiple techniques exist to determine the database size, from simple queries to comprehensive reporting. This tutorial will walk you through different methods to find the size of a database in MySQL 8 using code examples.

  8. How to check MySQL database and table sizes - 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.

  9. 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 guide is especially useful if you prefer working with SQL commands over graphical tools like MySQL Workbench or phpMyAdmin.

  10. How to Check MySQL Database & Tables Size - TecAdmin

    Jan 4, 2019 · Check ALL Databases Size in MySQL. This query will calculate size of all databases in mysql server. SELECT table_schema "Database Name", SUM(data_length+index_length)/1024/1024 "Database Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;

  11. Some results have been removed
Refresh