Guus2005
AWF VIP
- Local time
- Today, 10:39
- Joined
- Jun 26, 2007
- Messages
- 2,631
Firstly, i normalised 90% of the databases i build. I always normalise up to the BCNF.
In the past i came accross a hierarchical database which consists of 1 main table with the fields Parent, Child, Value. It is extremely dynamic. You can have as many levels until you reach the record limit or the database 2GB limit whichever comes first.
I believe any database could be setup to a single table like this. But ofcourse it comes with a prize. It reduces speed considerably when you have to recursively read all levels to get somewhere.
Normalising to a single table has a name which eludes me for the moment and having that name, what is "normal" normalisation called and are there more types and when are they used?
Thanks!
In the past i came accross a hierarchical database which consists of 1 main table with the fields Parent, Child, Value. It is extremely dynamic. You can have as many levels until you reach the record limit or the database 2GB limit whichever comes first.
I believe any database could be setup to a single table like this. But ofcourse it comes with a prize. It reduces speed considerably when you have to recursively read all levels to get somewhere.
Normalising to a single table has a name which eludes me for the moment and having that name, what is "normal" normalisation called and are there more types and when are they used?
Thanks!