What is maximum size of a database in MySQL?

Answers were Sorted based on User's Feedback



What is maximum size of a database in MySQL?..

Answer / prathiba

The effective maximum table size for MySQL databases is
usually determined by operating system constraints on file
sizes, not by MySQL internal limits.

Is This Answer Correct ?    117 Yes 20 No

What is maximum size of a database in MySQL?..

Answer / vibhor gupta

Operating System File-size Limit
Win32 w/ FAT/FAT32 2GB/4GB
Win32 w/ NTFS 2TB (possibly larger)
Linux 2.2-Intel 32-bit 2GB (LFS: 4GB)
Linux 2.4+ (using ext3 filesystem) 4TB
Solaris 9/10 16TB
MacOS X w/ HFS+ 2TB
NetWare w/NSS filesystem 8TB

Is This Answer Correct ?    78 Yes 8 No

What is maximum size of a database in MySQL?..

Answer / rakesh

Operating System File-size Limit
Win32 w/ FAT/FAT32 2GB/4GB
Win32 w/ NTFS 2TB (possibly larger)
Linux 2.2-Intel 32-bit 2GB (LFS: 4GB)
Linux 2.4+ (using ext3 file system) 4TB
Solaris 9/10 16TB
MacOS X w/ HFS+ 2TB
NetWare w/NSS file system 8TB

Is This Answer Correct ?    27 Yes 7 No

What is maximum size of a database in MySQL?..

Answer / demon

The answer above applies to TABLES in a MySQL DB and not the
DB itself.
Thus the DB can get quite large

Is This Answer Correct ?    20 Yes 6 No

What is maximum size of a database in MySQL?..

Answer / shyam

Hi Pravina.. Regarding ur concern in answer #5.. There is no
such limitation on the db size.

It all depends on the table sizes which in turn depends on
the maximum file size the underlying operating system can
handle (for this refer answer# 3 by Vibhor Gupta). As the
table size increases, the db size too increases proportionally.

Of course you will have a drop in the performance if the db
grows in the range of several tera bytes provided you dont
scale your hardware and software correspondingly. That is
when u decide u cannot let the db grow anymore.. Relatively
for u this point may be the one where your db has reached
its maximum size.

Hope this addresses ur query :)

Is This Answer Correct ?    3 Yes 0 No

What is maximum size of a database in MySQL?..

Answer / garun mishra

The MAX size of mysql database is depends on your operating
System.

Is This Answer Correct ?    2 Yes 0 No

What is maximum size of a database in MySQL?..

Answer / pravina

But the question is still unanswered...

How large can a DB be? There must be some limitation?

Is This Answer Correct ?    8 Yes 8 No

What is maximum size of a database in MySQL?..

Answer / krish

hahah 1 kb ;)
before you work with databases you should know one thing. Database addresses are loaded on to the primary memory. So guess what 32bit OS can only handle max 4gb ram which means only 4gb can be addressed. This results 32bit database can have max size of < 4GB.

If you have a 64bit Database you will be able to address 2^64 bytes. (currently available 256 TB)

krish
source: experience

Is This Answer Correct ?    0 Yes 2 No

What is maximum size of a database in MySQL?..

Answer / pravina

But if according to answer 3 a table can be 2TB then how can
a db size be smaller then that?

Am confused!!

Is This Answer Correct ?    6 Yes 11 No

What is maximum size of a database in MySQL?..

Answer / hmm

upto 5Gb in newer version .

Is This Answer Correct ?    5 Yes 17 No

Post New Answer

More MySQL Interview Questions

What are the applications required to support mysql?

0 Answers  


What are the features of Stored Procedures in MYSQL?

1 Answers  


Is SET Command is SQL Statement..?

4 Answers   BitWise,


What is dump in mysql?

0 Answers  


What?s the difference between query_cache_type 1 and 2?

1 Answers  






What is prepared statement in mysql?

0 Answers  


What are HEAP tables in MySQL?

1 Answers  


What is the function of mysqldump?

0 Answers  


A select query over a large table runs very slow because of the growing number of entries in that table. What different measures could be taken to improve speed?

5 Answers  


How large can a mysql table be?

0 Answers  


What is procedure in mysql?

0 Answers  


What is offset limit?

0 Answers  


Categories