For questions relating to hierarchical or nested data.

learn more… | top users | synonyms

1
vote
1answer
31 views

Commodity Futures Hierarchical Data Structure

I for the life of me cant seem to get the structure I want and have it function properly, so in a fit of rage I come to you guys. Setup: I have a Directory called Futures_Contracts and inside is ...
0
votes
0answers
18 views

D3.js Treemap error

When you try to visualize big hierarchical data with Zoomable TreeMap(http://bost.ocks.org/mike/treemap/), it says Uncaught TypeError: Cannot set property 'z' of undefined. This problem has been ...
0
votes
1answer
31 views

Load an XML string into a Vaadin Tree

I am doing a project in Vaadin and need to do the following. I make a server request and get an XML string in response. And, I know nothing about how this XML file will look at run time. I need to ...
0
votes
0answers
17 views

Denormalize data in firebase for lat lng

New to hierarchical database, If I want to get nearby objects with a given latitude and longitude. How do I store the objects in firebase? This is what I'm guessing, let me know if I'm right or ...
1
vote
1answer
51 views

SQL (SQL Server 2008) hierarchical query and subtree query for specific results

I have a question on writing a query for a subtree of results returned from a hierarchical query. Essentially I have to pull data from a table that has organizations and sub organizations. The orgs ...
0
votes
1answer
49 views

Designing app to load, edit, and save hierarchical data

I am writing a GUI that will be integrated with SAP Business One. I'm having a difficult time determine how to load, edit, and save the data in the best way possible (reliable, fast, easy). I have ...
-2
votes
0answers
14 views

clustering issues- fail to clust a large set of data [closed]

I have a large sets of data with around 100K paired data-values if I failed in the hierarchy clustering methods, even with some data points from this dataset( ~ 5000 paired data) Any other clustering ...
0
votes
0answers
94 views

How can I commit changes in second datagridview in hierarchical datasource?

I have the following two classes: Customer: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Sandbox { public class Customer { public ...
0
votes
1answer
47 views

Global mapping of one subscript dimension to another database

I have a vendor defined database (about 140GB total) on Caché 2007. It uses the old style MUMPS programming environment and accesses globals directly in a hierarchical style. There is one global that ...
0
votes
1answer
45 views

How can I convert the following flat records to a hierarchical structure in SQL Server?

I have the following record in Table 1: L1 L1DESC L2 L2DESC L3 L3DESC L4 L4DESC L5 L5DESC L6 L6DESC 10 L1 101 L2 101A L3 101A27 L4 101A27B L5 ...
1
vote
1answer
26 views

expected result not getting

i have three tables which are shown in this demo: sql fiddle demo These are expected conditions and result Here you can check this activity_id and region_id in demo and get unit_id As ...
0
votes
1answer
48 views

How to return the hierarchy from a table using sql server query or code?

I have been asked these two questions and were not able to answer, I figured it involves a simple SELECT query that is being used with recursion. Represent a windows directory hierarchy in a ...
0
votes
1answer
28 views

how to combine these two query

this query is works for activity $query1 = "select t.entity_id, t.parent_id, t.length,gu.measurement_unit_id from tree t left join units u on t.parent_id = u.region_id and ...
0
votes
0answers
21 views

Database model: doubly linked list [migrated]

I am not sure if I get this right. I'm designing a database model for use in an application, and I'm stuck at a doubly linked list (model first; there is no code yet). There's an order. An order has ...
0
votes
0answers
33 views

mongodb multiple categories, each with its own hierarchy tree

I have a collection categories with such schema: _id: ObjectId, name: String, parent: ObjectId and another collection products, with a reference: name: String, category: [ObjectId, ObjectId, ...] ...
0
votes
1answer
51 views

Limit the depth of hierarchical query

I am having a hierarchical table like below. I want to set the FLAG attribute based on the CODE values. The possible Code values are R, NR, RN and NF. The FLAG will be set to 'Y' iff the corresponding ...
0
votes
1answer
30 views

Calculating Treversal Tree items level

I have a database that has category names. The columns are ID | CategoryName | ParentID. I'm using row_array() from the CodeIgniter model, and I want to add a level key to that row array. I have a ...
0
votes
0answers
52 views

Paginating hierarchical data using closure tables (MySQL)

I am trying to query paged hierarchical comments sorted by score. score is an integer, and the comments table has a self-referential parent_id column. Each page should have at least one root comment ...
0
votes
0answers
20 views

FluentNHibernate get hierarchical data correctly c#

I am having trouble retrieving hierarchical data of categories and subcategories using FNH. This is how my CategoryModel looks like public class Category { public virtual long CategoryId ...
0
votes
0answers
43 views

Oracle 11g Hierarchical Query Inter-Row Calculations

Is there anyway to have interrow calculations done within a hierarchical query? I have a requirement to explode a BOM, but determine the 'rolled-up' usage of each child component, based on the usage ...
1
vote
1answer
27 views

What is best way to store hierchical data in Mysql for more than one root?

i have read so many blogs and links to save the hierarchical data in mysql database like nested set modal *Transitive Clousure Modal* Child Parent Hierchy . but i am little bit confuse can any body ...
1
vote
0answers
40 views

Hierarchical caching structure in .net 4.0

I want to store objects in cache in a hierarchical structure (so a whole tree branch can be removed at once if the object expires). For this I made a custom hierarchic structure, where the elements ...
1
vote
2answers
76 views

Retrieve hierarchy from a table like this

I'm using MySql with PHP and have all my data in a table like this: "id" "name" "description" "level" "parent" "country" "maxLevel" "1" "Kitchenware" "Kitchenware ...
0
votes
1answer
31 views

sorting hierarchical datas in Asp.Net

My database structure is: Table Name: Category Columns: CategoryID | CategoryName | ParentID I want to list all categories by their children and their childrens' children also. I'm using WITH for ...
0
votes
1answer
54 views

Hierarchical Category sorting with subCategory's ID

I have problem about the hierarchical category sort in mssql.I have sql code that lists category with their level in the following code segment. WITH TempCtgry (CtgryID, CtgryName, ParentCtgryId, ...
0
votes
1answer
66 views

Error in R: multi effects models

I'm having a few issue's I'd appreciate some help with. head(new.data) WSZ_Code Treatment_Code Year Month TTHM CL2_FREE BrO3 Colour PH TURB seasons 1 2 3 1996 1 30.7 ...
0
votes
1answer
39 views

Using bottom-up or top-down search to find the best path from hierarchical data

I have the following table structure, Create Table Nodes ( NodeID int, ParentNodeID int, // null if root node NodeText nvarchar(100), NodeCost int ) Now I need to do a sort of ...
1
vote
1answer
120 views

Optimal way to model documents hierarchy in CouchDB

I'm trying to model document a hierarchy in CouchDB to use in my system, which is conceptually similar to a blog. Each blog post belongs to at least one category and each category can have many posts. ...
3
votes
3answers
118 views

Database Schema for User Tagging using Nested Set/Adjacency List

I have seen many posts on building database schemas for object tagging (such as dlamblin's post and Artilheiro's post as well). What I cannot seem to find in my many days of research is the schema ...
0
votes
0answers
8 views

Is there any database IDE that can handle tree-structured data?

The problem of handling tree-structured data in code / database has already been studied there: What is the most efficient/elegant way to parse a flat table into a tree? However, as a developper ...
1
vote
1answer
57 views

Oracle: convert tree structure to XML

I have a simple tree structure, where child elements are connected to parent elements, that I need to convert to XML. Currently, I use recursive function calls to implement this (i.e. to retrieve the ...
0
votes
2answers
32 views

MySQL return all records in a hierarchical struture

I've got a simple hierarchical table 'Groups' where I store the parent-id of each child. I'm trying to query each member of the table Groups with the following query: SELECT groups.name AS 'Group ...
0
votes
0answers
52 views

C++ multi-threaded data management

I am looking for conceptual advice regarding managing a large quantity of data in a computer vision project of mine. I am having trouble a) conceptualizing and b) implementing a concept of ...
0
votes
1answer
120 views

How to create hierarchical json using data from a psql database?

I am using php to connect to my psql database and have some initial code to connect to a database, access a table and set a column to an array etc. I, however, have been struggling to get my data into ...
2
votes
1answer
110 views

Rendering a tree from a closure table SELECT statement?

[previous question] I'm trying to add reddit-like comments to an app, and I decided to go with the closure table pattern for database organization. My app database looks somewhat like this: posts ...
0
votes
1answer
103 views

Running a SELECT query on a closure table with a JOIN?

I have an app set up which has nested comments attached to posts. I decided to use the closure table method (slide 40) for the comments due to how cheap hard disk space is versus how easy it seems to ...
0
votes
0answers
11 views

What are 'Details' and 'Extended' keywords in Binding statement?

In the expression {Binding Path=Orders_Order Details Extended, Source={StaticResource customersOrdersViewSource}} what do the keywords 'Details' and 'Extended' do? I can't find anything about this ...
1
vote
1answer
57 views

Oracle Hierarchical Query on Linked List Table

I have the following table that implements a linked list. I want to query starting with rate_sequence_id of 1, and get the next record linked to it, which is 30 in this case. So the query should ...
0
votes
0answers
78 views

Hierarchical data ComboBox with empty first row

I have a ComboBox with hierarchical data - items are not all together, but are divided into groups. Example: If I click to the ComboBox, there are many items, but divided into groups - the ...
0
votes
2answers
64 views

How to select limited rows and their related data? [closed]

The Question This is more a PHP question. How to select limited rows and their related data in a tree structure? Lets say I want to select the first 2 contacts in my contacts list and all of their ...
1
vote
2answers
105 views

why is this group_concat not working?

I don't understand why this GROUP_CONCAT is not working, as far as the outer query is concerned there are 3 rows returned so I want to group_concat by that but it doesn't like it... ...
0
votes
1answer
73 views

groups and sub-group up to 5 level database structure

i was wondering what is the best structure for a table in mysql, The structure needs to have: Parent (level 0) -region (inside regions are)(level 1) -countrys (inside countrys are)(level 2) ...
1
vote
0answers
300 views

VB.Net 2010 / SQL Server 2012 - Populate Treeview with hierarchyid data (Winforms)

I'm looking for a flexible way to populate a treeview in a WinForms application with data from a SQL Server 2012 database. Here's the structure of the data: CREATE TABLE [dbo].[tblCommodity]( ...
3
votes
2answers
156 views

Resampling Within a Pandas MultiIndex

I have some hierarchical data which bottoms out into time series data which looks something like this: df = pandas.DataFrame( {'value_a': values_a, 'value_b': values_b}, index=[states, ...
0
votes
1answer
83 views

Distributed database for tree structured data?

I'm looking for a database that is designed to handle tree structured data. I've looked into Neo4j and it's nice, but it doesn't really support sharding. Couchbase on the other hand isn't really built ...
1
vote
5answers
2k views

Auto-populating Select Boxes using jQuery & AJAX in asp.net MVC

1-problem: I need to enable users to select one or more things from a large amount of information that is grouped into a hierarchical structure for selection, data entry, were data could have a depth ...
8
votes
5answers
235 views

How to find the hierarchy path for a tree representation

I have a tree hierarchy look this built into a table with the parent_id pointing to the previous root node. I am iterating through all root nodes (root1, root2) and I am setting path to either root1 ...
2
votes
1answer
92 views

Hierarchical tree in SQL database - different database server types

I have to store a hierarchical tree into a SQL database. After a search here on the site I found a couple solutions, but I still need some help. In short, I have “inputs” that must be routed to ...
0
votes
0answers
89 views

Hierarchical Binding Through Data Attributes

Can I setup grouping in a mobile listview using the data initialization approach? For instance, I can wire up binding like so: <ul id="list1" data-role="listview" data-bind="source:list" ...
0
votes
1answer
84 views

Wrapping hierarchical data around li tags with doctrine2-nestedset

I am using https://github.com/blt04/doctrine2-nestedset to manage my hierarchical data. It manages hierarchy with following database structure: categories -id -root -lft -rgt -name I need to ...

1 2 3 4 5 13