How to store directory / hierarchy / tree structure in the database? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:39:42Z http://stackoverflow.com/feeds/question/144344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database 4 How to store directory / hierarchy / tree structure in the database? roman m 2008-09-27T19:59:24Z 2008-11-17T14:09:03Z <p>How do i store a directory / hierarchy / tree structure in the database? Namely MSSQL Server.</p> <p>@<a href="#144370" rel="nofollow">olavk</a>: Doesn't look like you've seen my own answer. The way i use is way better than recursive queries :)</p> <p>p.p.s. <a href="http://www.developerfusion.co.uk/show/4633/2/" rel="nofollow">This is</a> the way to go!</p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/144346#144346 1 Answer by roman m for How to store directory / hierarchy / tree structure in the database? roman m 2008-09-27T19:59:32Z 2008-09-27T19:59:32Z <p>This is more of a bookmark for me than a question, but it might help you too. I've used <a href="http://www.developerfusion.co.uk/show/4633/2/" rel="nofollow">this article's</a> approach to store a directory / tree structure in the database. </p> <p>There are some useful code snippets in the article as well.</p> <p>Hope this helps.</p> <p><strong>I'm not affiliated with that website in any way</strong></p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/144370#144370 3 Answer by olavk for How to store directory / hierarchy / tree structure in the database? olavk 2008-09-27T20:14:31Z 2008-09-28T19:31:00Z <p>Are you using Ms SQL 2005? <a href="http://msdn.microsoft.com/en-us/library/ms186243.aspx" rel="nofollow">Recursive queries</a> in 2005 makes queryring hierarchical data much more elegant.</p> <p>Edit: I do think materialized paths are a bit of a hack. The path contain non-normalized redundant data, and you have to use triggers or something to keep them updated. Eg. if a node changes parent, the whole subtree have to have their paths updated. And subtree queries have to use some ugly substring matching rather than an elegant and fast join.</p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/144376#144376 0 Answer by Sklivvz for How to store directory / hierarchy / tree structure in the database? Sklivvz 2008-09-27T20:17:49Z 2008-09-27T20:17:49Z <p>The typical way is a table with a foreign key (e.g. "ParentId") onto itself.</p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/144383#144383 1 Answer by Lars Truijens for How to store directory / hierarchy / tree structure in the database? Lars Truijens 2008-09-27T20:23:08Z 2008-09-27T20:23:08Z <p>There also is the Nested-Set Model of Trees which has some advantages over the ParentID model. See <a href="http://www.dbmsmag.com/9603d06.html" rel="nofollow">http://www.dbmsmag.com/9603d06.html</a></p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/144396#144396 3 Answer by Troels Arvin for How to store directory / hierarchy / tree structure in the database? Troels Arvin 2008-09-27T20:27:59Z 2008-09-27T20:27:59Z <p>There are <a href="http://troels.arvin.dk/db/rdbms/links/#hierarchical" rel="nofollow">many ways</a> to store hierarchies in SQL databases. Which one to choose depends on which DBMS product you use, and how the data will be used. As you have used the MSSQL2005 tag, I think you should start considering the "Adjacency List" model; if you find that it doesn't perform well for your application, then have a look at <a href="http://vadimtropashko.wordpress.com/2008/08/09/one-more-nested-intervals-vs-adjacency-list-comparison/" rel="nofollow">Vadim Tropashko's comparison</a> which highlights differences between models with a focus on multiple performance characteristics.</p> http://stackoverflow.com/questions/144344/how-to-store-directory-hierarchy-tree-structure-in-the-database/295641#295641 3 Answer by Mr. Brownstone for How to store directory / hierarchy / tree structure in the database? Mr. Brownstone 2008-11-17T14:09:03Z 2008-11-17T14:09:03Z <p>If using Sql Server 2008 is an option: maybe you should check out new <a href="http://msdn.microsoft.com/sl-si/library/bb677173(en-us).aspx" rel="nofollow">hierarchyid</a> data type.</p>