A transitive closure table is a method for storing hierarchical information in a flat database. It supports referential integrity like adjacency list, but also supports querying hierarchies of arbitrary depth like nested sets.

learn more… | top users | synonyms

0
votes
0answers
18 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 ...
2
votes
1answer
85 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
70 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 ...
1
vote
0answers
44 views

Finding closures in a DB table of a given depth with SQLite

I have the following table: ( I am using sqlite) .schema T CREATE TABLE T (i TEXT, j TEXT, v INTEGER); select * from T; i |j |v x |y |1 x |z |1 y |a |1 z |b |1 a |c |1 c |d |1 I need to find the ...
1
vote
0answers
89 views

Django ORM and Closure Tables

I'm trying to model data that's organised as a hierarchical tree using a closure table. The entries that will represent nodes in the tree are nothing fancy and are defined as follows. class ...
2
votes
2answers
130 views

Deadlocks when concurrent editing a closure tree hierarchy

How can I avoid database deadlocks when using closure_tree to concurrently manipulate a set of models with common attributes on a hierarchical structure? They present in the following flavors: When ...
0
votes
1answer
83 views

SQL query to find final overridden id in adjacency list / closure table

I have an adjacency list table called attribute (which also has a closure table called attribute_closure mapped for ease of recursion). Each entry in the attribute table is one of 4 hierarchical ...
1
vote
2answers
137 views

Finding Least Common Ancestor from a Transitive Closure Table

I have a table representing the transitive closure of an organizational hierarchy (i.e., its a tree with a single root): create table ancestry ( ancestor integer, descendant integer, ...
2
votes
1answer
414 views

Sorting a subtree in a closure table hierarchical-data structure

I would like to ask you to help me with the problem with sorting of the hierarchical data structure stored as a closure table. I wanted to use this structure to store my website menu. Everything ...
2
votes
1answer
105 views

Implementing version history with a closure table schema

I have a custom CMS implementation that stores content nodes in two tables as described in the "closure table" section at http://www.slideshare.net/billkarwin/models-for-hierarchical-data and using ...
1
vote
1answer
329 views

Finding the transitive closure of a graph

I am trying to calculate a transitive closure of a graph. Let`s consider this graph as an example (the picture depicts the graph, its adjacency and connectivity matrix): Using Warshall's algorithm, ...
1
vote
1answer
677 views

How can I display tree structure in HTML from closure table

I'm storing some hierarchical data in MySQL. For various reasons, I've decided to use closure tables (instead of nested sets, adjacency lists, and the like). It's been working great for me so far, ...
0
votes
2answers
347 views

How can I create a closure table using data from an adjacency list?

I have a database containing a hierarchy of categories stored using the adjacency list model. The hierarchy is 3 levels deep (not including an imaginary root node) and contains approx 1700 nodes. ...
2
votes
0answers
92 views

How to build a self referencing table with composite key in fluent api and EF

I'm building a hierarchical Database with "closure table" to build the tree It is a self referencing table, and the two keys should become the primary key. The Problem is, I end up with 5 columns, ...
1
vote
0answers
286 views

Closure Tables - Is this enough data to display a tree view?

Here is the table I have created by testing the closure table method. | id | parentId | childId | hops | | | | | 270 | 6 | ...
1
vote
1answer
214 views

MySql closure table won't support duplicate sub-category for different parents

I have been going around in circles with this closure table for awhile. The problem I have is with the second occurrence of a descendant. I have instances of sub-categories that appear in more than ...
2
votes
2answers
225 views

Finding the “deepest” child in a hierarchical query

I need some help querying hierarchical data. Here is the single, simple, table, where parent_id references id and may be null for root entries. create table edition ( id NUMBER(20), ...
1
vote
1answer
127 views

Unique name constraint accross siblings in a closure tree

I'm wondering how to enforce a unique constraint for the names of sibling nodes when using a closure table in MySQL to model a hierarchy. This is my schema: create table spaces ( id int not null, ...
-1
votes
1answer
477 views

codeIgniter closure table model

This is the class I am working with: https://gist.github.com/2174233 I have two tables: one table contains users and the other - closures. When I use get_children() method (let's say from the root ...
3
votes
4answers
515 views

PostgreSQL pass data from recursive CTE onto function

I have the following problem: I am trying to discover all possible paths from source node (node_s) to target node (node_t). The format of the original table with graph edges is simple: | node_x | ...
2
votes
1answer
487 views

Moving in Closure Table with Multiple Parents

I have the following DAG A --> B | | v v C --> D Here is the closure table | Ancestor | Descendant | Depth | --------------------------------- | A | A | 0 | | A ...
6
votes
1answer
3k views

MySQL Closure Table hierarchical database - How to pull information out in the correct order

I have a MySQL database holding hierarchical data using the Closure Table method. A simple sample database create script follows the question. My issue at the moment is how do I pull data out of the ...
6
votes
1answer
732 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 ...
6
votes
2answers
1k views

hierarchical data in a database: recursive query vs. closure tables vs. graph database

I'm starting on a new project that has some hierarchical data and I'm looking at all the options for storing that in a database at the moment. I am using PostgreSQL, which does allow recursive ...
0
votes
3answers
1k views

Closure Table the best SELECT QUERY

I am developing threaded comments system for MySQL and PHP. I chose Closure Table pattern, but I have problem. I need query (queries) to get whole tree. How to do that? I have searched a lot about ...
0
votes
1answer
662 views

update table based on subquery of table

I have am using a closure table for some page heirarchy. I want to be able to delete a page and update the level of the children it leaves. par child level 1 1 0 1 2 1 2 2 0 1 3 ...
1
vote
0answers
518 views

MySQL Query for Closure Table

Current USER table: Field Type id int(11) firstname varchar(64) lastname varchar(64) status varchar(5) permission smallint(5) Current USER_RELATIONS ...
1
vote
1answer
178 views

Does SQLAlchemy support “closure tables?”

I've been reading about closure tables as a way of modeling hierarchies over SQL. Does [SQLAlchemy] have any built-in support for creating and traversing hierarchical collections of object instances ...
1
vote
1answer
551 views

Print a Complete Transitive Closure Tree

On our online shop (PHP/MySQL), for our category structure we are using a transitive closure table (ancestor, descendant, length) as described by Bill Karwin. I am finding it very flexible and ...
1
vote
1answer
571 views

What's the best way to update a closure table?

I have a table relating records using the adjacency list method (table A), and another table relating the same records using a closure table (table B). They both capture the same graph, so they both ...
4
votes
3answers
266 views

How can I speed up queries that are looking for the root node of a transitive closure?

I have a historical transitive closure table that represents a tree. create table TRANSITIVE_CLOSURE ( CHILD_NODE_ID number not null enable, ANCESTOR_NODE_ID number not null enable, ...
1
vote
3answers
452 views

How do I query for all the nodes between two nodes in a tree?

I have a hierarchical database strucutre, e.g. columns ID and PARENT_ID defined for each row, with the top level rows having a NULL PARENT_ID. I have all the relationships from this table flattened ...
3
votes
4answers
1k views

How to get the parent given a child in SQL SERVER 2005

I have a table like this childid parentid ------------------------ 1 0 2 1 3 2 4 2 5 3 6 4 7 0 8 7 9 8 10 1 If I give a childid as 5, the parentid will be ...