If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > size question

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-10-04, 22:29
eq1986 eq1986 is offline
Registered User
 
Join Date: Jul 2004
Posts: 3
size question

Will having 150ish tables in my DB make it slow? If not, how many would, if ever?

And is there a max to tables in a DB, max to columns or rows in tables?

Thanks
Reply With Quote
  #2 (permalink)  
Old 07-11-04, 16:53
eq1986 eq1986 is offline
Registered User
 
Join Date: Jul 2004
Posts: 3
Anybody know?
Reply With Quote
  #3 (permalink)  
Old 07-11-04, 23:38
yellowmarker yellowmarker is offline
Registered User
 
Join Date: Jul 2004
Location: Dundee, Scotland
Posts: 107
In answer to your question, the number of tables in the MySQL database will not make it slow.

MySQL handles large databases. The MySQL company know of users that use MySQL Server with 60,000 tables and about 5,000,000,000 rows.

Assume:
- A table cannot contain more than 1000 columns.
- Up to 32 indexes per table are allowed. Each index may consist of 1 to 16 columns or parts of columns.
- 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.
- By default, MySQL tables have a maximum size of about 4 GB. You can check the maximum table size for a table with the SHOW TABLE STATUS command or with the myisamchk -dv table_name.
Reply With Quote
  #4 (permalink)  
Old 07-12-04, 00:55
eq1986 eq1986 is offline
Registered User
 
Join Date: Jul 2004
Posts: 3
Wow.

Thanks for the info, that makes me feel so much better.
Reply With Quote
  #5 (permalink)  
Old 09-23-04, 21:00
ManUtdFans2003 ManUtdFans2003 is offline
Registered User
 
Join Date: Jan 2004
Location: Australia
Posts: 42
How do I know the current table size ?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On