maximum database size of mysql database
Answers were Sorted based on User's Feedback
Answer / 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 |
How do I delete a table in mysql workbench?
How would you enter characters as hex numbers?
What is required to create mysql database?
If you are assigned a task, to find the information of procedures. What are the basic commands that you will use to do so?
How can I create table in mysql?
maximum size of a database in mysql?
How can you see all indexes defined for a table?
What is the data source name for mysql?
Explain the difference between mysql_fetch_array(), mysql_fetch_object()?
How to execute mysql query in php?
What is the maximum number of columns per table?
What is the current root password of mysql?