cloning hierarchical data - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T20:46:45Zhttp://stackoverflow.com/feeds/question/143226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143226/cloning-hierarchical-data1cloning hierarchical dataMaximilian Tyrtania2008-09-27T08:26:43Z2008-09-29T06:00:26Z
<p>Hi,</p>
<p>let's assume i have a self referencing hierarchical table build the classical way like this one:</p>
<p>CREATE TABLE test
(name text,id serial primary key,parent_id integer
references test)</p>
<p>insert into test (name,id,parent_id) values
('root1',1,NULL),('root2',2,NULL),('root1sub1',3,1),('root1sub2',4,1),('root
2sub1',5,2),('root2sub2',6,2)</p>
<p>testdb=# select * from test;</p>
<p>name | id | parent_id
-----------+----+-----------</p>
<p>root1 | 1 | </p>
<p>root2 | 2 | </p>
<p>root1sub1 | 3 | 1</p>
<p>root1sub2 | 4 | 1</p>
<p>root2sub1 | 5 | 2</p>
<p>root2sub2 | 6 | 2</p>
<p>What i need now is a function (preferrably in plain sql) that would take the id of a test record and
clone all attached records (including the given one). The cloned records need to have new ids of course. The desired result
would like this for example:</p>
<p>Select * from cloningfunction(2);</p>
<p>name | id | parent_id</p>
<p>-----------+----+-----------</p>
<p>root2 | 7 |<br />
root2sub1 | 8 | 7</p>
<p>root2sub2 | 9 | 7</p>
<p>Any pointers? Im using PostgreSQL 8.3.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/143313#1433134Answer by njreed.myopenid.com for cloning hierarchical datanjreed.myopenid.com2008-09-27T09:37:04Z2008-09-27T15:30:36Z<p>Pulling this result in recursively is tricky (although possible). However, it's typically not very efficient and there is a <em>much</em> better way to solve this problem.</p>
<p>Basically, you augment the table with an extra column which traces the tree to the top - I'll call it the "Upchain". It's just a long string that looks something like this:</p>
<pre><code>name | id | parent_id | upchain
root1 | 1 | NULL | 1:
root2 | 2 | NULL | 2:
root1sub1 | 3 | 1 | 1:3:
root1sub2 | 4 | 1 | 1:4:
root2sub1 | 5 | 2 | 2:5:
root2sub2 | 6 | 2 | 2:6:
root1sub1sub1 | 7 | 3 | 1:3:7:
</code></pre>
<p>It's very easy to keep this field updated by using a trigger on the table. (Apologies for terminology but I have always done this with SQL Server). Every time you add or delete a record, or update the parent_id field, you just need to update the upchain field on that part of the tree. That's a trivial job because you just take the upchain of the parent record and append the id of the current record. All child records are easily identified using LIKE to check for records with the starting string in their upchain.</p>
<p>What you're doing effectively is trading a bit of extra write activity for a <em>big</em> saving when you come to read the data.</p>
<p>When you want to select a complete branch in the tree it's trivial. Suppose you want the branch under node 1. Node 1 has an upchain '1:' so you know that any node in the branch of the tree under that node must have an upchain starting '1:...'. So you just do this:</p>
<pre><code>SELECT *
FROM table
WHERE upchain LIKE '1:%'
</code></pre>
<p>This is <em>extremely</em> fast (index the upchain field of course). As a bonus it also makes a lot of activities extremely simple, such as finding partial trees, level within the tree, etc.</p>
<p>I've used this in applications that track large employee reporting hierarchies but you can use it for pretty much any tree structure (parts breakdown, etc.)</p>
<p>Notes (for anyone who's interested):</p>
<ul>
<li>I haven't given a step-by-step of the SQL code but once you get the principle, it's pretty simple to implement. I'm not a great programmer so I'm speaking from experience.</li>
<li>If you already have data in the table you need to do a one time update to get the upchains synchronised initially. Again, this isn't difficult as the code is very similar to the UPDATE code in the triggers.</li>
<li>This technique is also a good way to identify circular references which can otherwise be tricky to spot.</li>
</ul>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/143375#1433750Answer by Mike G. for cloning hierarchical dataMike G.2008-09-27T10:31:28Z2008-09-27T10:31:28Z<p>This sounds like an exercise from "SQL For Smarties" by Joe Celko... </p>
<p>I don't have my copy handy, but I think it's a book that'll help you quite a bit if this is the kind of problems you need to solve.</p>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/143529#1435293Answer by Panos for cloning hierarchical dataPanos2008-09-27T12:18:27Z2008-09-27T12:35:52Z<p>The Joe Celko's method which is similar to the <a href="http://stackoverflow.com/questions/143226/cloning-hierarchical-data#143313">njreed's answer</a> but is more generic can be found here:</p>
<ul>
<li><a href="http://www.dbmsmag.com/9603d06.html" rel="nofollow">Nested-Set Model of Trees</a> (at the middle of the article)</li>
<li><a href="http://www.dbmsmag.com/9604d06.html" rel="nofollow">Nested-Set Model of Trees, part 2</a></li>
<li><a href="http://www.dbmsmag.com/9605d06.html" rel="nofollow">Trees in SQL -- Part III</a></li>
</ul>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/145298#1452980Answer by Maximilian Tyrtania for cloning hierarchical dataMaximilian Tyrtania2008-09-28T05:56:06Z2008-09-28T05:56:06Z<p>Thanks a lot for those answers!
I actually do possess Joe Celko's "SQL for Smarties" (though not the one about hierarchical structures, so thanks, Panos, for those links) and even consulted it before posting my question. Unfortunately he doesn't give advice on how to actually <em>clone</em> hierachical data. Clone, as in, "See, I got this unbalanced tree with lots of subnodes and subsubnodes. I need another one just like that."
I see how using the enumerate path model or the nested sets approach give me effective ways to select and manipulate trees in various ways, but i haven't quite figured out how to do cloning of branches or entire trees...</p>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/146569#1465691Answer by Panos for cloning hierarchical dataPanos2008-09-28T19:41:40Z2008-09-28T19:41:40Z<p><a href="http://stackoverflow.com/questions/143226/cloning-hierarchical-data#145298">@Maximilian</a>: You are right, we forgot your actual requirement. How about a recursive stored procedure? I am not sure if this is possible in PostgreSQL, but here is a working SQL Server version:</p>
<pre><code>CREATE PROCEDURE CloneNode
@to_clone_id int, @parent_id int
AS
SET NOCOUNT ON
DECLARE @new_node_id int, @child_id int
INSERT INTO test (name, parent_id)
SELECT name, @parent_id FROM test WHERE id = @to_clone_id
SET @new_node_id = @@IDENTITY
DECLARE @children_cursor CURSOR
SET @children_cursor = CURSOR FOR
SELECT id FROM test WHERE parent_id = @to_clone_id
OPEN @children_cursor
FETCH NEXT FROM @children_cursor INTO @child_id
WHILE @@FETCH_STATUS = 0
BEGIN
EXECUTE CloneNode @child_id, @new_node_id
FETCH NEXT FROM @children_cursor INTO @child_id
END
CLOSE @children_cursor
DEALLOCATE @children_cursor
</code></pre>
<p>Your example is accomplished by <code>EXECUTE CloneNode 2, null</code> (the second parameter is the new parent node).</p>
http://stackoverflow.com/questions/143226/cloning-hierarchical-data/147674#1476740Answer by Maximilian Tyrtania for cloning hierarchical dataMaximilian Tyrtania2008-09-29T06:00:26Z2008-09-29T06:00:26Z<p>Looks cool, I'll give that a try. Unfortunately I lack rep points to vote up your answer (yet...).</p>
<p>Thanks!</p>