I am creating a table with both a self referencing foreign key and a hierarchyid.
Is there a simpler way to fill the hierarchyid than creating it for every node somehow like the following?
DECLARE @ID INT = 9
UPDATE dbo.Tree
SET Path = ( SELECT Path
FROM dbo.Tree
WHERE ID = 3).GetDescendant(( SELECT PATH
FROM dbo.Tree
WHERE ID = @ID - 1
), NULL)
WHERE ID = @ID
In this example the parent node has ID 3 and 8 and 9 are children of 3.
Best solution I could find by now is setting the root node where
ParentID = -1
and then executing the following script.