mazimum size of a database in mysql? when we create a table
then how many tables actually created? write there name?



mazimum size of a database in mysql? when we create a table then how many tables actually created?..

Answer / nirajkumar

If the operating system or filesystem places a limit on the
number of files in a directory, MySQL is bound by that
constraint. The efficiency of the operating system in
handling large numbers of files in a directory can place a
practical limit on the number of tables in a database. If
the time required to open a file in the directory increases
significantly as the number of files increases, database
performance can be adversely affected.
The amount of available disk space limits the number of
tables.
MySQL 3.22 had a 4GB (4 gigabyte) limit on table size. With
the MyISAM storage engine in MySQL 3.23, the maximum table
size was increased to 65536 terabytes (2567 – 1 bytes).
With this larger allowed table size, the maximum effective
table size for MySQL databases is usually determined by
operating system constraints on file sizes, not by MySQL
internal limits.
The InnoDB storage engine maintains InnoDB tables within a
tablespace that can be created from several files. This
allows a table to exceed the maximum individual file size.
The tablespace can include raw disk partitions, which
allows extremely large tables. The maximum tablespace size
is 64TB.
The following table lists some examples of operating system
file-size limits. This is only a rough guide and is not
intended to be definitive. For the most up-to-date
information, be sure to check the documentation specific to
your operating system.
Operating System File-size Limit
Linux 2.2-Intel 32-bit 2GB (LFS: 4GB)
Linux 2.4+ (using ext3 filesystem) 4TB
Solaris 9/10 16TB
NetWare w/NSS filesystem 8TB
Win32 w/ FAT/FAT32 2GB/4GB
Win32 w/ NTFS 2TB (possibly larger)
MacOS X w/ HFS+ 2TB

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

What does mysql flush privileges do?

0 Answers  


A company wants to store their invoices in a database. They already have their customers and articles in that database. Both customer and article are each identified by an unique integer value. Please create the SQL statements for creating the necessary table(s) for storing the invoices in a MySQL database. An invoice should hold information like invoice number, customer, date, article(s) and quantity etc.

1 Answers  


What are procedures in mysql?

0 Answers  


What is the maximum size of mysql database?

0 Answers  


How do you login to MySql using Unix shell?

0 Answers  


What is join in mysql? What are the different types of join?

0 Answers  


How to use sum function in where clause in mysql?

0 Answers  


How to control the max size of a heap table?

0 Answers  


How to calculate the difference between two time values?

0 Answers  


how fastest access of data can be done from database ?

3 Answers  


Explain data type TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP .

2 Answers   Zensar,


How to rename an existing column in a table?

0 Answers  


Categories