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
In which language it is written?
What are the functions of commit and rollback statements?
Which is better sqlite or mysql?
How to use mysqldump to create a copy of the database?
What is database in php mysql?
Where is the myisam table stored?
how we will Show selected records sorted in an ascending (asc) or descending (desc).
How can you filter the duplicate data while retrieving records from the table?
How to create trigger in mysql workbench?
What is relational database in mysql?
What is mysql data directory?
Can you tell the reasons for selecting lamp(linux, apache, mysql, php) instead of any other combination of software programs, servers, and operating system?
How to create a new table in mysql?
What are the advantages of myisam over innodb?
Is mysql free for enterprise?