tags:

views:

37

answers:

2
+1  Q: 

Check MySql Space

Is there a command to check how much room MySql has left?

A: 

Confusing, It will depends on your hard disk space.

If you have space in you Hard Drive where you have been installed mysql server, You can store million ++ records.

Muneer
+1  A: 

Usually, MySQL is not limiting the space it can use. You can use all the space your hard disk(s) contain.

There are a few exceptions though, for really big tables. For example the MyISAM Storage Engine, there is a Max_Data_Length which determines how much data a table can handle (depending on number of bytes used for pointers)... but by default 4Gb per table is no problem, and from MySQL 5 a table can store 256TB.

Konerak