Jump to content
xisto Community
Sign in to follow this  
leiaah

Space Limit/capacity Of Mysql?

Recommended Posts

Hey guys I was wondering if MySQL has a space limit. I know that MSAccess has a limit of 2GB and that SQL Server doesn't, only the harddisk capacity. Do you guys know?

Share this post


Link to post
Share on other sites

MySQL Version 3.22 had a 4 GB (4 gigabyte) limit on table size. With the MyISAM table type in MySQL Version 3.23, the maximum table size was pushed up to 8 million terabytes (2 ^ 63 bytes).
Note, however, that operating systems have their own file-size limits. Here are some examples:

Operating System  File-Size Limit 
Linux-Intel 32 bit  2 GB, 4GB or more, depends on Linux version 
Linux-Alpha  8 TB (?) 
Solaris 2.5.1  2 GB (possible 4GB with patch) 
Solaris 2.6  4 GB (can be changed with flag) 
Solaris 2.7 Intel  4 GB 
Solaris 2.7 UltraSPARC  512 GB


i hope this answer your question.

Notice from snlildude87:
Use the quote tags whenever applicable

Edited by snlildude87 (see edit history)

Share this post


Link to post
Share on other sites

Ummm..okay thanks.  What is MyISAM?  -_-

136154[/snapback]

MyISAM is the default storage engine as of MySQL 3.23. It is based on the ISAM code but has many useful extensions.

 

Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type. An .frm file stores the table definition. The data file has an .MYD (MYData) extension.


That explains why you get more space with myisam....

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.