maximum database size of mysql database

Answer Posted / pandu

Run the below query you can get the Data Base Size in MySQL.

If you run the query which is given below in MySQL Query
Browser then you will get the two columns first will display
the Data Base Name and the second will display the Data Base
Size in MB.

SELECT table_schema "Data Base Name", sum( data_length +
index_length ) / 1024 / 1024 "Data Base Size in MB"
FROM information_schema.TABLES GROUP BY table_schema ;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where MyISAM table will be stored and also give their formats of storage?

834


Is mysql owned by oracle?

716


What is pragma autonomous_transaction?

632


What is the phantom problem?

724


How do I edit a table in mysql?

667


What is difference between mongodb and mysql?

658


How do I disable mysql?

684


What is the use of mysql workbench?

745


Is sql similar to mysql?

648


How to set the time zone for MySQL to particular country time?

2929


How do I remove a user from mysql?

756


How do I start mysql database?

665


What is delimiter $$?

718


table a has records 1,1,1,1 table b has records 1,1,1,1,1,1 what would be out if perform join for all cases

1032


How do I find users in mysql?

771