Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating a web application, where I need to store info of 5,000,000 people and the info is of 6 categories. I'm using MySQL as my database. My question is, which is better:

1) Create 6 databases with the name of 6 categories and create 5,000,000 tables in it corresponding to info of each user. Hence, [6 databases with 5,000,000 tables each]. Info on each user would be split into 6 different databases.

2) Create 5,000,000 databases that represent complete user info with 6 tables each of the specified category. Hence, [5,000,000 databases with 6 tables each]. Info on the user would be in a single database.

Please explain the pros and cons of both options with respect to performance and implementation.

Can I create as much as 5,000,000 databases in MySQL? If yes, is it efficient?

share|improve this question
97  
Why not have 5000000 servers as well? – Kemo Feb 1 '11 at 15:05
15  
Databases are intended to store lots of records. I think you need to revisit your database schema. There's no need to create 5000000 tables or databases in this case. – M. Dudley Feb 1 '11 at 15:07
who has created 5000000 tables – user1432124 May 17 '12 at 11:39

3 Answers

up vote 38 down vote accepted

You only need three tables:

  • people (stores every person)
  • categories (stores all the categories)
  • people_categories (stores the link between a category and a person)
share|improve this answer
gr8 schema.. but if i do so, i may need to create around 150 fields. is it efficient. I'm doing all of this for a social networking site.. – Noddy Cha Feb 1 '11 at 15:42
also tell me max limit for number of rows and fields that may be added???? because, for each and every update on users profile, i may need to create a new field.. this field holds my users data.. – Noddy Cha Feb 1 '11 at 15:50
See Piskvor's answer regarding adding new fields each time you extend the profile – a_horse_with_no_name Feb 1 '11 at 16:06
1  
@Noddy Cha: You seem to be confusing the column and the data it holds: for the update on users profile, you'd be updating the data in the column, not adding a new column. If there's a change of what types of information should be on users' profiles, yes, you'll need to change the database schema. In my experience, this doesn't happen too often. – Piskvor Feb 1 '11 at 16:21
1  
@ - a_horse_with_no_name and Piskvor : Thanks a lot guys.. u ppl made my basic layout of my project.. really thanks a lot.. – Noddy Cha Feb 1 '11 at 17:20

Neither - why would you even create that as separate databases? Just create tables to store the same type of data (e.g. users, categories, user info, ...) and use the users' ID to look up the relevant parts.

Example:

users
id | name    | ...
1    Noddy   | 
2    Piskvor |

user_info
user_id | email               | some_other_field
1         a@example.com         ...
2         piskvor@example.org   foobar

categories
user_id | category_id | name
1         1             Noddy's category
2         1             something else

SQL databases are quite capable of dealing with tables of millions of rows; handling hundreds of thousands of tables will make you insane in short order.

share|improve this answer
why have users and user_info in separate tables? – Rob van Wijk Jun 23 '12 at 11:45
1  
@RobvanWijk primarily because some of the user_info information will be optional, but all of the user information will be mandatory. This makes management and use of the data easier (in my experience), and can add performance for things that you know you'll need (you'll definitely need to call the user table) as it'll be narrower (less fields, more likely to be smaller data types), and better indexed (no nulls). – iain Jul 15 '12 at 15:11

Creating so much databases is a bad idea... MySQL is designed and optimized to work with one database at a time, so just use it this way.

I wonder how would you do any search within 5000000 databases, unless by opening/closing your databases one by one, 5000000 times...?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.