Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Gaj
Starting Member
2 Posts |
|
Abu-Dina
Posting Yak Master
206 Posts |
Posted - 2008-03-10 : 13:09:56
|
Performance for what? Updating/Inserting data or retrieving data?! The schema design will be different depending on the purpose of your application. Is this an OLTP or OLAP?Are you comfortable with the normalisation? If not then please search the web for tutorials about this concept. There are tones of info online!Good luck! |
 |
|
Gaj
Starting Member
2 Posts |
Posted - 2008-03-18 : 05:05:04
|
Yes I am confortable with normalisation, but I am mainly concerned about retrieval of data...As you can imagine I could potentially end up with a loads of sub types or use the EAV model...or use XML. Now I'm not a swql wiz to be honest I'm more of a beginner, lots of theory no practice but I don't know how best to implement this...Gaj-It.com - Gadget News |
 |
|
Abu-Dina
Posting Yak Master
206 Posts |
Posted - 2008-03-19 : 06:36:34
|
If you are designing an OLAP then you need to research and understand the concept of data warehouse database design. Google for star-schema and snowflake-schema. It should begin to make more sense once you've understood the concepts.Good luck. |
 |
|
mbosch
Starting Member
6 Posts |
Posted - 2008-03-27 : 16:23:15
|
Something like this:Category-CategoryID-CategoryNameProduct-ProductID-ProductName-CategoryIDCategoryAttributes-CategoryAttributeID-CategoryID-CategoryAttributeNameProductCategoryAttributeValues-ProductCategoryAttributeID-CategoryAttributeID-ProductID-AttributeValue |
 |
|
|
|
|