Tagged Questions

For questions relating to hierarchical or nested data.

learn more… | top users | synonyms

96
votes
12answers
10k views

What is the most efficient/elegant way to parse a flat table into a tree?

Assume you have a flat table that stores an ordered tree hierarchy: Id Name ParentId Order 1 'Node 1' 0 10 2 'Node 1.1' 1 10 3 'Node 2' 0 ...
61
votes
4answers
6k views

What are the Options for Storing Hierarchical Data in a Relational Database?

Good Overviews Generally speaking you're making a decision between fast read times (e.g. nested set) or fast write times (adjacency list). Usually you end up with a combination of the options below ...
37
votes
1answer
1k views

Backbone with a tree view widget

I'm evaluating the Backbone javascript framework for use in a project that will display a hierarchical model in a tree view widget (think the Windows file browser). I love how Backbone thinks about ...
16
votes
10answers
11k views

Expressing recursion in LINQ

I am writing a LINQ provider to a hierarchal data source. I find it easiest to design my API by writing examples showing how I want to use it, and then coding to support those use cases. One thing I ...
13
votes
6answers
541 views

How can I break referential integrity briefly, within a transaction, without disabling the foreign key constraint?

I have a table with 3 columns: ID, PARENT_ID, NAME PARENT_ID has a foreign key relationship with ID in the same table. This table is modeling a hierarchy. Sometimes the ID of a record will ...
11
votes
3answers
3k views

Storing hierarchical data in Google App Engine Datastore?

Can someone illustrate how I can store and easily query hierarchical data in google app engine datastore?
10
votes
2answers
318 views

efficient function to retrieve a queryset of ancestors of an mptt queryset

Does anybody have an efficient algorithm to retrieve all ancestors of an mptt queryset? The best I could think of so far is something like this: def qs_ancestors(queryset): if ...
8
votes
9answers
7k views

MySQL: Move node in nested set

I'd need a MySQL query that moves a node and all it's children within a nested set. I found this site, but that function just seems so illogical - there's no universeid or treeid in a nested set ...
7
votes
2answers
203 views

How can I visualize hierarchical data?

I have some data like the following: A A1 12 A A2 23 A A3 AA1 1 A A3 AA2 2 B B1 2 B B2 1 Is there a way to visualize this information in ggplot? I am looking for something like this: |--A1---12 ...
7
votes
3answers
694 views

Hierarchical SQL Problem

Hi For many days i am pouding this sql, however i cant figure it out,any of you have suggestion . Basically it is a category table with domains like : id, name(name of category), parent(upper level ...
7
votes
3answers
1k views

Is it a good idea to use MySQL and Neo4j together?

I will make an application with a lot of similar items (millions), and I would like to store them in a MySQL database, because I would like to do a lot of statistics and search on specific values for ...
6
votes
3answers
106 views

How to efficiently store and read back a Hierarchy from cache

My situation is that I'm currently storing a hierarchy in a SQL database thats quickly approaching 15000 nodes ( 5000 edges ). This hierarchy is defining my security model based off a users position ...
6
votes
3answers
148 views

How can two hierarchies be efficiently merged in SQL Server?

I have two tables with hierarchyid fields, one of which is a staging table with new data that needs to be merged into the other (that is, a set of nodes that need to be added to the main tree, some of ...
6
votes
3answers
835 views

IHierarchyData and IHierarchicalEnumerable in Winforms

Currently,I know how to do a lazy implementation of the loading procedure of the nodes in a treeview control, and read the related questions in stackoverflow, but I'm also reading about IHierarchyData ...
6
votes
2answers
2k views

How to store tree structures in Java?

Hierarchical data structures are often stored in relational databases. This kind of storage is flexible but flat, so the tree structure has to be build with each query. I want to store forum posts as ...
6
votes
4answers
480 views

How to SELECT immediate children and ancestors all in the same query

I'm working with a tree structure in MySQL that is respresented using the nested sets model. I'm hoping some of you sql experts can help me with building a SELECT query. I would like to be able to ...
6
votes
6answers
2k views

Implementing a hierarchical data structure in a database

I know there are two approaches: adjacency list and nested tree. It's said that adjacency list can become slow to use on traversal because of numerous queries. But I don't know any realistic figures ...
5
votes
2answers
151 views

What tool generates diagrams from SQL Server hierarchical data?

Is there a tool that works with SQL Server to generate tree-like diagrams from a hierachical data model? I am working with a large geographical hierarchy, and would like to visualize it. Here is an ...
5
votes
3answers
161 views

MySQL: Getting Posts from Categories

I'm trying to learn MySQL so I have created a little blog system. I have 3 tables in MySQL: posts : id | title ---------------- 1 | Post Title 1 2 | Post Title 2 ...
5
votes
1answer
345 views

Add editing to MVVM in a hierarchical data structure

This question is a follow-up of this older one, and it's more of a confirmation than an open question. My ViewModel instance has a private instance of the Model, _modelInst. The ViewModel has ...
5
votes
1answer
622 views

Is there a practical way to use the hierarchyID datatype in entity framework 4?

As it stands now, the CLR UDTs including HierarchyID aren't supported in Entity Framework 4. HierarchyID.ToString() is useful, but breaks down once any item has 10+ siblings (the basic structure is ...
5
votes
7answers
1k views

SQL Server 2005 database design - many-to-many relationships with hierarchy

Note I have completely re-written my original post to better explain the issue I am trying to understand. I have tried to generalise the problem as much as possible. Also, my thanks to the original ...
5
votes
4answers
1k views

Enforce Referential Integrity on Materialized Path?

I'm trying to implement a tree like structure using a Materialized Path model described here: http://www.dbazine.com/oracle/or-articles/tropashko4. Is it possible to enforce referential integrity on ...
5
votes
4answers
977 views

Find duplicate/repeated rows in hierarchical sql

I'm attempting to detect duplicated/repeated values within a hierarchical table. Consider the following (slightly contrived) example: SELECT * FROM emp START WITH mgr IN (SELECT empno FROM emp ...
5
votes
7answers
4k views

Hierarchical Data in MySQL

I've got a sort of tree like thing going on in my MySQL database. I have a database that has categories, and each category has a subcat. I'm keeping all the categories in one table, so the columns ...
5
votes
3answers
3k views

How do I use entity framework with hierarchical data?

I'm working with a large hierarchical data set in sql server - modelled using the standard "EntityID, ParentID" kind of approach. There are about 25,000 nodes in the whole tree. I often need to ...
4
votes
2answers
157 views

How to structure database for quick node access

I am looking for a way to structure database wit VirtualTreeView and SQLite database for quick retrieval of data. With VirtualTreeView there is a OnNodeInit event bu it is not always practical for ...
4
votes
1answer
167 views

MySQL hierarchical data help - Closure Table Method

I'm trying to implement a system in MySQL to store hierarchical data. I've decided to go with the system implemented here as described by Bill Karwin starting on slide number 40. I'm trying to setup ...
4
votes
2answers
888 views

Parent Child Relationships PHP/MYSQL

I have a table like this: id name parent_id I then want to select certain rows based on their id, so something like this: SELECT * FROM TABLE WHERE id IN ('1', '5', '8', '9', '35') ...
4
votes
3answers
106 views

Mysql: Get all the linked rows in a table

I have a table structure kinda like this id | title | next 1 | test | 5 2 | test | 0 3 | test | 0 4 | test | 0 5 | test | 3 Now, as you see 1 points to next item 5 and ...
4
votes
4answers
514 views

SQL query for parent-child chain

I have a single table that can refer to one other member in the table as a parent. That parent could also refer to one other row as its parent...and so on. id col1 col2 parentID 1 ...
4
votes
1answer
2k views

WPF Treeview Databinding Hierarchal Data with mixed types

I have a bit of a complex situation with WPF Treeview Binding. I have spent the last 2 days trying Google it, and this is the closed I came up with, but it doesn't solve the issue. Here is the ...
4
votes
6answers
450 views

How to store a tree in SQL database

I have to store a tree in a database, so what is the best way to do this? Show the method you use and name its pros and cons. (I am using SQL Server 2005)
4
votes
4answers
184 views

How can I create a simple Select for a self referential table?

For example, I have this table: CREATE TABLE perarea ( id_area INT primary key, nombre VARCHAR2(200), id_areapadre INT references perarea(id_area) ); Instead of ...
4
votes
3answers
637 views

Find node level in a tree

I have a tree (nested categories) stored as follows: CREATE TABLE `category` ( `category_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `category_name` varchar(100) NOT NULL, `parent_id` int(10) ...
4
votes
5answers
1k views

Turn database result into array

I have just made the update/add/delete part for the "Closure table" way of organizing query hierarchical data that are shown on page 70 in this slideshare: ...
4
votes
2answers
470 views

Retrieving data with a hierarchical structure in MySQL

Given the following table id parentID name image 0 0 default.jpg 1 0 Jason 2 1 Beth b.jpg 3 0 Layla l.jpg 4 2 ...
4
votes
1answer
1k views

Counting number of children in hierarchical SQL data

for a simple data structure such as so: ID parentID Text Price 1 Root 2 1 Flowers 3 1 Electro 4 2 Rose 10 5 2 ...
4
votes
4answers
459 views

hierarchical .Net file format?

Our company has been for a while looking at a file format to hold a large amount of lab sensor data. Each time they run the instrumentation, it generates a file, which we consume and store in a ...
4
votes
2answers
671 views

Sum of hierarchical data using LINQ?

Is it possible to sum hierarchical data using .NET's LINQ? My data class looks like this: class Node { public decimal Amount; public IEnumerable<Node> Children { get; set; } } So I ...
4
votes
6answers
2k views

C# algorithm for generating hierarchy

I've got a text file that looks like this: { Id = 1, ParentId = 0, Position = 0, Title = "root" } { Id = 2, ParentId = 1, Position = 0, Title = "child 1" } { Id = 3, ParentId = 1, Position = 1, Title ...
4
votes
4answers
1k views

Hierarchical Data Models: Adjacency List vs. Nested Sets

I have a product catalog. Each category consists of different number (in deep) of subcategories. The number of levels (deep) is unknown, but I quite sure that it will not be exceed of 5,6 levels. The ...
4
votes
3answers
1k views

Storing Composite Patterns (Hierarchical Data) in Database

What are 'best-practices' for saving Composite patterns in a Relational Database? We have been using Modified Preorder Tree Traversal. This is very quick to build the whole tree, but very slow to ...
3
votes
2answers
39 views

How to get list of all user's relation from hierarchy?

I have list of users. There is hierarchy defined by field ParentId for each user (few of users are on top of hierarchy - they have null in this field). I don't want to change structure of this table ...
3
votes
2answers
76 views

self referencing table with child table

I have a self-referencing table with content like this: Self-referencing parent table ID ParentID Name --------------------- 1 John 2 1 Mike 3 2 Erin 4 1 ...
3
votes
3answers
96 views

Array “tree” creation from db table

My php function function generateMenu($parent, $level, $menu, $utype) { global $db; $tree = array(); $stmt = $db->prepare("select id, parent, name FROM navigation WHERE menu=? AND ...
3
votes
3answers
63 views

SQL multiple shared WHERE criteria

I'm trying to find a good, efficient way to run a query like this: SELECT * FROM tableA a WHERE a.manager IN ( SELECT id FROM tableB b ...
3
votes
1answer
108 views

How to visualize only the descendants, ancestors, and self of a node in a hierarchy?

In another question I asked about visualizing hierarchical data stored in a table in an SQL Server database. I found a way to visualize the whole hierarchy using GraphViz, with some plumbing in T-SQL ...
3
votes
3answers
253 views

hierarchical/tree database for directories in filesystem

i want to store the directories present on the disk into a database with maintaining their hierarchical/tree structure. Here's a fig, (ROOT) / ...
3
votes
1answer
67 views

How many “entities” are beneath this hierarchical structure. Nested Set/Adjacency (How many POI are inside of England)

Development language and DB: PHP/MySQL I have a table geo_places with something like 8 million geographical locations. These places are all hierarchical, and I use parent_id (adjacency), ...

1 2 3 4 5 8