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 |
What is the return type of mysqli_query?
What does TIMESTAMP ON UPDATE CURRENT_TIMESTAMP data type do?
How do I exit mysql?
What is blob in mysql?
How do you stop an access query?
How will show all records containing the name "sonia" and the phone number '9876543210'
What is difference b/w composit key n primary key and forigion key?
What is a left join mysql?
How do you flush privileges?
How do I create a database in mysql workbench?
How can you move the master database
What is save point in mysql?