Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

12
votes
7answers
5k views

Getting a modified preorder tree traversal model (nested set) into a <ul>

I am trying to get my data which is hierarchically set up with a tree traversal model into an < ul> in order to show on my site. Here is my code: function getCats($) { // retrieve all children ...
11
votes
7answers
5k views

How do you sort a tree stored using the nested set model?

When I refer to nested set model I mean what is described here. I need to build a new system for storing "categories" (I can't think of better word for it) in a user defined hierarchy. Since the ...
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
3answers
253 views

Dealing with nested sets in mysql?

I have decided to follow http://www.artfulsoftware.com/mysqlbook/sampler/mysqled1ch20.html So now I am looking for some help with the code. I am using their data for my testing, So, I visualized the ...
7
votes
3answers
862 views

How do you convert a parent-child (adjacency) table to a nested set using PHP and MySQL?

I've spent the last few hours trying to find the solution to this question online. I've found plenty of examples on how to convert from nested set to adjacency... but few that go the other way ...
6
votes
8answers
409 views

Getting nested set model into a <ul> but hiding “closed” subtrees

Based on Getting a modified preorder tree traversal model (nested set) into a <ul> One of answers gave right code to display full tree. What i need is to always show first level (depth=0) and ...
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
2answers
3k views

MongoDB nested sets

What're the best practices to store nested sets (like trees of comments) in MongoDB? I mean, every comment can have a parent comment and children-comments (answers). Storing them like this: { ...
6
votes
4answers
833 views

Does allowing a category to have multiple parents make sense? Are there alternatives?

Short question: How should product categories that appear under multiple categories be managed? Is it a bad practice to do so at all? Background info: We have a product database with categories likes ...
6
votes
5answers
3k views

How to render all records from a nested set into a real html tree

I'm using the awesome_nested_set plugin in my Rails project. I have two models that look like this (simplified): class Customer < ActiveRecord::Base has_many :categories end class Category < ...
6
votes
3answers
2k views

Improving scalability of the modified preorder tree traversal algorithm

I've been thinking about the modified preorder tree traversal algorithm for storing trees within a flat table (such as SQL). One property I dislike about the standard approach is that to insert a ...
6
votes
1answer
1k views

Are nested intervals a viable solution to nested set (modified pre-order traversal) RDBMS performance degredation?

Among the known limitations of Joe Celko's nested sets (modified pre-order traversal) is marked degredation in performance as the tree grows to a large size. Vadim Tropashko proposed nested ...
5
votes
2answers
110 views

MySQL & nested set: slow JOIN (not using index)

I have two tables: localities: CREATE TABLE `localities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `parent_id` int(11) DEFAULT NULL, ...
5
votes
2answers
79 views

Problem joining tables in SQL

SELECT MID, FAD.FirstOpenedDate ,LCD.LastCloseDate FROM mwMaster.dbo.Merchant M JOIN ( SELECT MerchID, MIN(moddate) AS FirstOpenedDate FROM ...
5
votes
2answers
123 views

Indexes and Nested Sets

I am using a nested set to represent a hierarchy in my application, and am wondering where the best place to put indexes (clustered or otherwise) is. I am using Microsoft SQL Server 2008. ...
5
votes
1answer
475 views

recursive query for adjacency list to preorder tree traversal in SQL?

I am migrating data from one database schema to another. The old schema has a categorization system based on an adjacency list, with id, category, and parent_id. If one category is under a second, ...
5
votes
4answers
782 views

How to get structed result using nested set in MySQL and PHP?

There is no limitation on the depth. How to get the structured branch or even entire tree? The definition is from here: Managing Hierarchical Data in MySQL
5
votes
5answers
2k views

How to create a sortable interface with 'acts as nested set' in RubyOnRails

I've been implementing some nice interactive interfaces that can sort lists in my m rails app for models that use acts_as_list. I have a sort function that gets called and sets the position for each ...
5
votes
2answers
1k views

Have you extended nested sets for hierarchical data modeling involving multiple parent nodes for a child node? What are your experiences?

I am looking to use this concept in one of my upcoming project. More info: Managing Hierarchical Data in MySQL. Please share your experiences good or bad with examples. I am adding more information ...
4
votes
1answer
167 views

Sorting / Grouping records for pagination with many association-based restrictions

I'm working on an application which acts as a places directory and (currently, but maybe not always) allows filtering of a particular businesses' venues based upon 1 city, 1 neighborhood, and 1 ...
4
votes
2answers
356 views

get all products of category and child categories (rails, awesome_nested_set)

having an e-commerce application under development i am trying to get my head around the following problem: I have my categories realized through the awesome_nested_set plugin. If I list my articles ...
4
votes
4answers
453 views

Nested routing in Ruby on Rails

My model class is: class Category < ActiveRecord::Base acts_as_nested_set has_many :children, :foreign_key => "parent_id", :class_name => 'Category' belongs_to :parent, :foreign_key ...
4
votes
3answers
2k views

Ruby on Rails - Awesome nested set plugin

Is there a simple way to display the entire nested set when using this plugin? What I would like to do is display an unordered list of root nodes with another unordered list inside each child that ...
4
votes
1answer
863 views

How to Query Nested Set model with multiple roots plus filtering

How do you query a nested set model with multiple roots, such trees in the same table? Currently, I added an extra column called the "Root" indicating the ID of the root node for all sub-tree nodes, ...
4
votes
2answers
727 views

Mysql: Optimizing finding super node in nested set tree

I have hierarchical data in a nested set model (table:projects): My table (projects): id, lft, rgt 1, 1, 6 2, 2, 3 3, 4, 5 4, 7, 10 5, 8, 9 6, 11, 12 7, 13, 14 ... Pretty printed: 1 2 3 4 ...
4
votes
2answers
2k views

PHP RecursiveIteratorIterator and nested sets

I have a set of objects in a hierachy. There's a top "root" node and that has child nodes, which in turn have child nodes etc. I'm trying to save this structure into a DB using the nested set model, ...
4
votes
5answers
6k views

Searching for the best PHP nested sets class (PEAR class excluded)

I'm looking for a PHP (with MYSQL) nested sets class with all needed functions. For example: createLeftNode, createRightNode,createRootNode, createSubNode,deleteNode and moveTree. Not only 1 left, 1 ...
3
votes
5answers
103 views

jquery add new li to nested set model

What is the best way to insert a new li element into a specific position of a nested set model? For example, the following list: <ol class="nested"> <li id="list_1"></li> ...
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), ...
3
votes
1answer
321 views

Using awesome_nested_set dynamically adding extra children

I've got a nested model called categories and I have created a nested form to allow creation of a category and sub categories in one form. This works fine if you pre-build the children in your new ...
3
votes
4answers
130 views

Showing users in tree structure?

I have a database table called users This table has two columns (that are important) uuid, and parentUuid Here are the rules for the table: If a user invites another user, the invited users ...
3
votes
4answers
464 views

Rails - Comments w acts_as_nested_set - When Deleting a Dependent Record is Deleting Destroy Data

I have the following Models: class Group < ActiveRecord::Base has_many :threads, :dependent => :destroy class Thread < ActiveRecord::Base has_many :comments, :as => :commentable, ...
3
votes
1answer
411 views

Ordering category select menu alphabetically with awesome_nested_set

Using awesome_nested_set with Rails 3, I've created a hierarchical categories system. To display the category selector in the view, I've used the following code: <%= form.select :parent_id, ...
3
votes
2answers
817 views

How to repair a corrupted MPTT tree (nested set) in the database using SQL?

I have an MPTT tree of over 100,000 records stored in MySQL using lft, rght and parent_id columns. Now the left/right values became corrupted, while the parent ids are still intact. It would require ...
3
votes
3answers
632 views

Can someone describe the nested set model from a C#/LINQ perspective?

I know the nested set model doesn't pertain to the C# language or LINQ directly... it's what I'm using to develop my web app. For hierarchical data (categories with sub-categories in my case), I'm ...
3
votes
3answers
288 views

Query to search tree in database

I have a table in my database representing a tree. The data is stored using nested sets. I want to write a query to search the tree and return just the nodes that match a pattern, along with their ...
3
votes
6answers
3k views

MySQL Nested Sets - How to find parent of node?

I have your run of the mill nested set hierarchy type setup with the following columns: table name: myset columns: id, name, lft, rgt Does anyone know a query to determine the parent of a node? ...
3
votes
4answers
1k views

PHP: Sort an array

I've got an array with data from a MySQL table in nested set model I'd like to get sorted, not only alphabetical but also with the child nodes directly after the parent node. Example - array to be ...
3
votes
4answers
2k views

Building hierarchy objects from flat list of parent/child

I have a list of items in a hierarchy, and I'm attempting to parse this list out into an actual hierarchy of objects. I'm using modified pre-order tree traversal to store/iterate through this list, ...
2
votes
0answers
89 views

Moving “root” or parent nodes - Doctrine NestedSet extension

I'm trying to replicate example from gedmo nested-set extension blog, where there are many parent nodes. There you are able to create as many movable parent nodes as well as children (which is typical ...
2
votes
1answer
146 views

Nested set INSERT operation for SQLite

I am trying to implement the nested-set model for a sqlite database. So far I have implemented getting leaf nodes, finding subordinates etc. I am using this tutorial as a reference However, I am stuck ...
2
votes
1answer
533 views

rails ancestry nested form

I've just started using Ancestry instead of awesome_nested_set and I would like to create a nested form so that I can create a parent account and many children accounts all in the one form. The ...
2
votes
1answer
482 views

Fetching doctrine nested set with one query

I am looking a way to fetch a nested set in one db query. schema.yml Category: actAs: NestedSet: hasManyRoots: true rootColumnName: root_id columns: name: string(255) ...
2
votes
2answers
357 views

Which Hierarchical model should I use? Adjacency, Nested, or Enumerated?

I have a table which contains a location of all geographical locations in the world and their relationships. Here is a example that shows the hierarchy. You will see that the data is actually stored ...
2
votes
1answer
159 views

Propel: Aggregate columns with nested sets… how?

I'm sure I'm missing something as this seems like something that should be simple to do using the nested_set behavior. I have listings which sit in multiple categories. The categories are managed ...
2
votes
3answers
85 views

What should I use for a collection of different objects in matlab?

This is illegal in Matlab a = [[1];[2 3]] In languages that allow this, this is called nested arrays. I found a way of doing the same in Matlab: a = {[1];[2 3]} What is this called? How ...
2
votes
2answers
85 views

Whats the fasted way to extract an array of nested objects from an array of objects in Ruby ?>

I have an array of Elements, and each element has a property :image. I would like an array of :images, so whats the quickest and least expensive way to achieve this. Is it just iteration over the ...
2
votes
3answers
1k views

Move node in Nested Sets tree

I am working on an adjacency list with mySQL and can not (atleast by myself) do the thinking needed to make a decent enough query to be able to move a set of nodes (together with eventual children ...
2
votes
1answer
312 views

building a navigation with nested sets, from the selected node up

I have the following tree structure using nested sets with lft & rgt values. node node node node node (selected) node node node node I'd like to build a ...
2
votes
2answers
205 views

Is it considered bad design to combine the adjancey list model and the nested sets model?

I'm working on building a tree structure in MySQL and have been experimenting with different ways of representing the data. However, no matter how I slice it, there are shortcomings. The nested ...

1 2 3 4