Is it necessary to create a database with as few tables as possible
Posted
by
Shaheer
on Programmers
See other posts from Programmers
or by Shaheer
Published on 2011-06-13T14:57:52Z
Indexed on
2012/10/04
15:52 UTC
Read the original article
Hit count: 421
database
|database-design
Should we create a database structure with a minimum number of tables?
Should it be designed in a way that everything stays in one place or is it okay to have more tables?
Will it in anyway affect anything?
I am asking this question because a friend of mine modified some database structure in mediaWiki. In the end, instead of 20 tables he was using only 8, and it took him 8 months to do that (it was his college assignment).
EDIT
I am concluding the answer as: size of the tables does NOT matter, until the case is exceptional; in which case the denormalization may help.
Thanks to everyone for the answers.
© Programmers or respective owner