Questions about DB modelling... - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:26:17Z http://stackoverflow.com/feeds/question/333431 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/333431/questions-about-db-modelling 2 Questions about DB modelling... kitsune 2008-12-02T09:17:42Z 2008-12-02T16:11:15Z <p>How would you model these relationships in a db?</p> <p>You have a Page entity that can contain PageElements.</p> <p>A PageElement can for instance be an Article, or a Picture. An Article table obviously has other members / columns than a Picture. An article could have ie. "Title", "Lead", "Body" columns that are all of type nvarchar, while a Picture might have something like "AltText", "Path", "Width", "Height". I like this to be extensible, who knows what PageElements I might need in 3 months? So I guess I'd need a PageElementTypes table.</p> <p>For the relationships, what about tables like these:</p> <p><strong>Pages</strong> with an Id, and other mumbo jumbo. (Create Date, Visible, what not)</p> <p><strong>Pages_PageElements</strong> with PageId and PageElementId.</p> <p><strong>PageElements</strong> with an Id and a PageElementTypeId and more mumbojumbo (SortOrder, Visibility etc.).</p> <p><strong>PageElementTypes</strong> with an Id and a Name (for instance "Article", "Picture", "AddressBlock")</p> <p>Now, should I create a PageElementId column in every Articles, Pictures, AddressBlocks table to finish things up? That's where I'm a bit stuck, it's a simple 1:1 relationship so this should work, but somehow I might miss something.</p> <p><em>Follow up:</em></p> <p>The recommended solutions below with separate attributes would force me to store all attributes as the same type, or not? What If one PageElement has attributes that are nvarchar(255) and some are nvarchar(1000), what if some are integers?</p> <p>If I got the EAV way I would have to create tons of tables for holding the attribute values for all the different data types out there. </p> http://stackoverflow.com/questions/333431/questions-about-db-modelling/333444#333444 0 Answer by Vilx- for Questions about DB modelling... Vilx- 2008-12-02T09:24:40Z 2008-12-02T09:24:40Z <p>The universal solution would be:</p> <pre><code>PageElementType: ID, Name, [Mumbo Jumbo] PageElementTypeParameter: ID, PageElementTypeID, [Mumbo Jumbo] Page: ID, [Mumbo Jumbo] PageElement: ID, PageElementTypeID, [Mumbo Jumbo] PageElementParameters: ID, PageElementID, PageElementTypeParameterID, Value, [Mumbo Jumbo] </code></pre> <p>In human words: There is a table for page element types, and an associated table, which lists possible parameters for each page element (like SRC and ALT for an image; TEXT for an article, etc).</p> <p>Then there is a table with all the pages; an associated table which lists elements in each page; and a table which lists parameter values for each element.</p> http://stackoverflow.com/questions/333431/questions-about-db-modelling/333445#333445 0 Answer by BobbyShaftoe for Questions about DB modelling... BobbyShaftoe 2008-12-02T09:24:41Z 2008-12-02T09:24:41Z <p>I use a different naming convention then you but this is essentially what I would do:</p> <p>PageElementType(PageElementTypeID, PageElementTypeName)</p> <p>PageElement(PageElementID, PageElementTypeID)</p> <p>Article(ArticleID, PageElementID, ...)</p> <p>Picture(PictureID, PageElementID, ...)</p> <p>Page(PageID, ...)</p> <p>PageHasPageElement(PageHasPageElementID, PageID, PageElementID) => {PageID, PageElementID} are unique</p> <p>This what I do and seems to be fairly well normalized and performs fine.</p> http://stackoverflow.com/questions/333431/questions-about-db-modelling/333496#333496 1 Answer by Preets for Questions about DB modelling... Preets 2008-12-02T09:52:29Z 2008-12-02T09:52:29Z <p>Just as you have configured Page Elements, you need to configure the <strong>Attributes</strong> associated with the Page Elements. </p> <p>So we have two items that are extensible Page Elements &amp; their Attributes.</p> <p>I sugges the following tables:</p> <p><strong>Page</strong> : Page ID | ...</p> <p><strong>Page Elements</strong> : Page Element ID | Element Type ID | Page ID | ...</p> <p><strong>Page Element Type</strong> : Element Type ID | Page Element Type Label </p> <p><strong>Page Element Attribute Type</strong> : Attribute Type ID | Element Type ID | Attribute Label </p> <p><strong>Page Element Attributes</strong> : Page Element ID | Attribute Type ID | Attribute Value</p> <p>The <strong>Page Element Attribute Type</strong> table will contain the list of attributes associated with an element. Example :</p> <p><em>Atttibute Type ID 1 | Article | "Title"</em></p> <p><em>Atttibute Type ID 2 | Article | "Lead"</em></p> <p><em>Atttibute Type ID 3 | Picture | "AltText"</em></p> <p>The <strong>Page Element Attributes</strong> table will store the actual value for the attributes assciated with a page element. Example :</p> <p><em>Page Element ID 1 | Attribute Type ID 1 | "Everybody Loves Raymond"</em></p> <p><em>Page Element ID 2 | Attribute Type ID 3 | "World Map"</em></p> http://stackoverflow.com/questions/333431/questions-about-db-modelling/333527#333527 1 Answer by Jason Watkins for Questions about DB modelling... Jason Watkins 2008-12-02T10:10:21Z 2008-12-02T10:10:21Z <p>The two common choices are <a href="http://martinfowler.com/eaaCatalog/singleTableInheritance.html" rel="nofollow">Single Table Inheritance</a> and <a href="http://martinfowler.com/eaaCatalog/classTableInheritance.html" rel="nofollow">Multi Table Inheritance</a>. Other approaches include having <a href="http://martinfowler.com/eaaCatalog/concreteTableInheritance.html" rel="nofollow">tables for each concrete class</a> which I've never used, and what I'd call a meta-table implementation, where the attribute definitions are moved into data rather than any sort of schema. </p> <p>I've had generally good experiences with <a href="http://martinfowler.com/eaaCatalog/singleTableInheritance.html" rel="nofollow">STI</a>, and provided you don't expect a plethora of classes and attributes it's the simplest solution. Simple is very good in my book.</p> <p>Unless new page element types need to be created by users at runtime, I'd avoid the meta-tables approach and anything that begins to look like it. In my experience such code quickly becomes a quagmire and rarely delivers much value compared to a more concrete implementation updated at regular intervals by developers.</p> http://stackoverflow.com/questions/333431/questions-about-db-modelling/333801#333801 0 Answer by kitsune for Questions about DB modelling... kitsune 2008-12-02T12:23:43Z 2008-12-02T12:23:43Z <p>I guess I'll just go with what I got, EAV is no option for me. What I got now is a somewhat hybrid approach.</p>