The hierarchyid tag has no wiki summary.
0
votes
2answers
75 views
Find all nodes that have children with hierarchyid
Given this table:
CREATE TABLE Employee
(
EmpId INT PRIMARY KEY IDENTITY,
EmpName VARCHAR(100) NOT NULL,
Position HierarchyID NOT NULL
)
INSERT INTO Employee (EmpName, Position)
VALUES ...
1
vote
0answers
38 views
What is the best way to show the data in hierarchical display in SQL (HIERARCHYID is not working properly)?
What is the best possible way to show the data in hierarchical display, i have used HIERARCHYID in sql but i am not able to get the data properly when it's level exceeds to more than 10 (horizontal ...
1
vote
1answer
128 views
SqlHierarchyID casting from Datarow
I am trying to retrieve a SqlHierarchyID data-type in C#, from a DataRow that has been fetched from a SQL Server database. After the database call, if I write the following:
var id = ...
1
vote
2answers
90 views
HierarchyId Has Descendants Query
Given the following schema and data:
CREATE TABLE ##Nodes
(
NodeCode hierarchyid,
NodeName varchar(10)
)
INSERT INTO ##Nodes VALUES ('/','RootNode')
INSERT INTO ##Nodes VALUES ...
1
vote
1answer
171 views
HierarchyId in KendoUI TreeView
i am new to KendoUI so i was wondering if/how i can use data represented with the new HierarchyId datatype in my sql server database in my KendoUI TreeView.
Are there any suggestions on how to ...
1
vote
1answer
174 views
How to Populate a Set Collection of Children from HierarchyId in nHibernate
I have the parent side of the mapping, but am unsure how to properly map the children side.
Parent Mapping
<many-to-one name="Parent" class="NHibernate.Map.OrganizationUnit, CentralDataLayer">
...
6
votes
1answer
366 views
SQL Server Nested set vs Hierarchyid performance
I have a hierarchical data. The most common queries will be "get parent branch for node" and "get subtree of node". Updates and inserts are not likely to occur often. I am choosing between nested sets ...
1
vote
1answer
610 views
HierarchyID - Get all children of a list of nodes
Two tables:
Team
----
TeamID int
TeamNode hierarchyid
TeamUser
--------
TeamID int
UserID int
And I have a query to get the immediate teams a user belongs to:
SELECT *
FROM
Team INNER ...
0
votes
1answer
248 views
What native dotNet data type is most appropriate for conveying SQL Server hierarchyId values?
Specifically we have a SQL Server stored procedure that accepts a hierarchyId as a parameter, and typically we have a SOAP layer on our stored procs that allows them to be called via SOAP.
The SOAP ...
1
vote
1answer
214 views
How to find leaf nodes under a subtree using HierarchyId?
I am maintaining a tree structure using SQL Server 2008 HierarchyId. My table structure is like this:
CREATE TABLE [Employee](
[Id] [int] IDENTITY(1,1) NOT NULL,
[HId] [hierarchyid] NOT NULL,
[Lvl] ...
0
votes
0answers
519 views
Two Parents is Too Many in my BOM using SQL Server HierarchyID - What is workaround for cheeseburgers and baconburgers?
Kent Tegels wrote an excellent article at http://msdn.microsoft.com/en-us/magazine/cc794278.aspx concerning Common Table Expressions (CTE) for Bills of Material (BOM) with parts list along with an ...
1
vote
1answer
264 views
Generating a unique node id for use with SQL Server hierarchyId
Setup :
MyTable (
NodeId varchar(10),
ParentNodeId varchar(10),
NodeName varchar(50)
)
NodeId is not numeric and can take any form. Majority are in the form Z123456 but some are 12345.
...
1
vote
1answer
142 views
SQL: Finding the Lowest Common Ancestor of hierarchyids
I have a dataset containing (among others) the values hierarchyids and the Parent-hierarchyids.
For another query I need the lowest common ancestor of the hierarchyids and since I am fairly new to sql ...
0
votes
0answers
101 views
Getting the first common parent with hierarchyid
I want to get the highest common parent in my hierarchy.
For example this hierarchy:
1
|_2
--|_3
|_4
--|_5
--|_6
----|_7
Now I give the IDs for Element 3 and 7 to a function and want to get back the ...
1
vote
1answer
675 views
Find all leaf node records using hierarchyid
How would I go about querying for only records that are "only leaf nodes"
(ie. no children)?
I have tried a query like this:
select *
from TableA tt
where tt.HierarchyId.GetDescendant(null, null) ...
0
votes
3answers
87 views
How to locate row within a hierarchy
I'm trying to check if a specific ID can be located within a hierarchy.
I have a list of categories stored in a hierarchical fashion.
Example
(0x, 0, 1, 'root'),
(0x58, 1, 2, 'Market ...
1
vote
0answers
79 views
SQL Server - Partition Table with hierarchyid
Is there any limitation with tables that contain hierarchyid columns? Does it limit any of the functionality like partitioning etc? I can't seem to find anything that says there is, but wanted to ...
0
votes
1answer
761 views
Can SQL Server Hierarchy type method IsDescendantOf accept multiple input values?
I am using the HierarchyId data type for the storage of locations. A user may be limited by location (LocationId). If the user has more than 1 location limit the IsDescendantOf method on the ...
1
vote
3answers
307 views
SQL Server INNER JOIN with hierarchyid
I have two tables, one table is the items container, which holds all data related to the products. The other table is for categories, in which the data is organised using hierarchies.
The goal of the ...
2
votes
3answers
1k views
How to build object hierarchy from SQL query? (for WPF TreeView)
thanks for taking the time out to read this post.
I'm having trouble trying to build a hierarchial object when getting data from my SQL database.
Please note that I am a little bit of a newbie ...
0
votes
1answer
139 views
SQL Azure HierarchyId support?
I was wondering if anyone could confirm for certain whether SQL Azure supports hierarchy nodes and how comparable it is to SQL 2008's Hierarchy ID in terms of performance/scalability.
Basically we ...
1
vote
2answers
1k views
HierarchyID Aggregate Functions in T-SQL
I've been asked to query a time logging database, to display all the work done for given projects. Each project is broken into tasks, each of which may itself be broken into tasks. The task ...
2
votes
3answers
657 views
Sql Hierarchy ID Sorting By Level
Is it possible to sort sql data in a hierarchy by it's hierarchy id, and then for each level sort it say alphabetically?
So say we have an Employees Table that lists the organizational hierarchy ...
1
vote
1answer
251 views
Update SQL Server HierarchyId in after insert trigger
I'm developing a message center in a information system, and today user Eric suggested use hierarchyid datatype to track the message reply, because the objective is to show as a Outlook or Gmail ...
3
votes
3answers
1k views
Sql HierarchyId How do I get the last descendants?
Using sql hierarchy Id how do I get all of the rows that have no children (that is the last decendants)?
Say my table is structured like this:
Id,
Name,
HierarchyId
And has these rows:
1, ...
1
vote
1answer
771 views
Updating all HierarchyID nodes in SQL Server 2008
I am importing data from one database to another. The hierarchyid column must also be ported over with the relationships intact.
If the target table is empty, it's easy. When the target contains ...
0
votes
1answer
177 views
Use hierarchyid to store address of a customer
I have a table named 'AddressDemo' to store address of a customer with the following fields,
CREATE TABLE [dbo].[AddressDemo](
[AddressID] [int] IDENTITY(1,1) NOT NULL,
[State] [nvarchar](50) NULL,
...
4
votes
1answer
867 views
Represent File System in DB (using hierarchyid in SQL Server 2008)
I haven't found any specific examples of this but I am interested in representing a whole directory structure with updates, etc using the hierarchyid datatype. This is a common use case cited for the ...
7
votes
3answers
481 views
How can two hierarchies be efficiently merged in SQL Server?
I have two tables with hierarchyid fields, one of which is a staging table with new data that needs to be merged into the other (that is, a set of nodes that need to be added to the main tree, some of ...
2
votes
1answer
389 views
List menu hierarchy using SQL Server hierarchyid
I try to build a menu using the datatype hierarchyid.
I have the root node and the current selected node. now I want to list of all elements that are related wetween root and selected node AND there ...
0
votes
2answers
282 views
how to change a parent id of child and subchilds in hierarchyid
id hierid
---------------------
2 | /2/
7 | /2/7/
8 | /2/8/
11 | /2/7/11/
13 | /2/8/13/
17 | /2/8/17/
37 | /2/8/37/
i want to change the root of this to /3/ that ...
2
votes
3answers
1k views
How to show all recursive results with hierarchyid sql
I have a table categories:
ID | NAME | PARENT ID | POSITION | LEVEL | ORDER
----------------------------------------------------------------------------
1 | root ...
2
votes
1answer
347 views
Is there any examples of storing social network graph in hierarchyid in sql server 2008
I have been investigating an approach towards to store our social graph data which obviously is going to be huge when time evolves. The graph is a bidirectional graph, meaning, two nodes are always ...
3
votes
4answers
3k views
HierarchyID How to get all Parent from a child
i've a Problem with the hierarchyID and UserRights for a Menu. I only want to give the User the Right for Level 4 for example and my QUery should automaticly select all Parent from the Level 4 Child.
...
1
vote
1answer
857 views
Populate hierarchyid column in existing parent-children relationship table?
I search for a way to populate an existing parent-children table:
Tabelle: Categories
-------------------
Columns: CategoryID
ParentID
I upgrade my sql server to 2008 R2. And now i added ...
0
votes
2answers
427 views
Represent tree structure in Sql Server including Virtual paths
Hi I want to create a tree structure in a sql database. I need to have the following properties.
Fast Select
Easy to Select with only a string like Cat2/Cat4 -> Returns Cat5 & Cat6
Support of ...
3
votes
1answer
1k views
Who is using Microsoft Entity Framework in production?
I do like many of the fatures of EF but not getting why EF is not a 1st class citizen of SQL Server especially HierarchyId, spatial data and others.
I spent some time using the EF code first ctp and ...
4
votes
1answer
1k views
Generating HierarchyID
I would like to insert the hierarchyId like this
/ - CEO (Root)
/1/ - Purchase Manager
/2/ - Sales Manager
/1/1/ - Purchase Executive
/2/1/ - Sales Executive
This is what the hierarchy i would ...
6
votes
2answers
4k views
HierarchyID in Entity Framework not working
We are using WCF Data Service based on an Entity Framework model for our application.
In this we need to add the table with a column of type HierarchyId. When I add that table to the EDMX file, the ...
0
votes
1answer
765 views
How do I build a c# treeview from SQL Hierarchyid?
I'm developing an C# .NET Windows Form application that 'll manage a hierarchical tree-view structure. (I have a single SQL table with a hierarchyid column. The data set is small ~300 rows/nodes at ...
2
votes
2answers
510 views
Hierarchyid Problem
I have a table with hierarchyid column. It is like:
[NAME] [PATH]
Ahmet /
Aliye /1/
Selen /1/1/
Erdem /2/
Bilge /2/1/
Aydin /2/2/
Tomrs /2/2/2/
I want to see NAMES like:
[NAMES_WITH_HIERARCHY]
...
3
votes
1answer
2k views
Cannot insert duplicate key in object (GetReparentedValue / hierarchyid)
Using examples I found on the web I have created a function which reparents children using the GetReparentedValue.
However when I have ran the code I get the following error: Cannot insert duplicate ...
0
votes
1answer
554 views
Updating “Hierarchyid” in SQL Server
I've used Hierarchyid data type in one of my tables in SQL Server.
Now I want to change the father of one of the rows, but when I change that all its descendant HierarchyId's must change according to ...
1
vote
1answer
939 views
Convert a string to a hierarchyid in C#
I need to be able to convert a string to a hierarchyid in c#.net - I cannot use stored procedures.
When I pass in the path (string) the query fails as the path is stored like this '/' instead of /
...
16
votes
2answers
1k views
SQL 2008 HierarchyID support in NHibernate
Searched various NHibernate lists and haven't come up with a definitive answer. The SQL2008 dialect doesn't appear to have support for the HierarchyID data type - new date and time types only.
Does ...
0
votes
1answer
78 views
Ordering in dropdown in MVC
I've a problem with a dropdown in a view in MVC. The option-elements in the dropdown comes from a table and should be ordered by a hierarchyId column. I've made a view which orders correctly, but when ...
7
votes
2answers
4k views
How do you get all ancestors of a node using SQL Server 2008 hierarchyid?
Given a table with a hierarchyid type column, how do you write a query to return all rows that are ancestors of a specific node?
There is an IsDescendantOf() function, which is perfect for getting ...
0
votes
1answer
376 views
Should I worry about running out of HierarchyIDs?
When you ask for a new HierarchyID between two others, the result gets progressively longer. For example, between 2/5.6 and 2/5.7 there's only 2/5.6.1 and other 4 component paths. The HierarchyID ...
0
votes
2answers
722 views
SQL 2008 HierarchyID - Select X descendants down
How can I query a table which has a column of data type HIERARCHYID and get a list of descendants X levels deep under an employee?
Here is the current structure:
CREATE TABLE [dbo].[Employees](
...
8
votes
2answers
3k views
Question about SQL Server HierarchyID depth-first performance
I am trying to implement hierarchyID in a table (dbo.[Message]) containing roughly 50,000 rows (will grow substantially in the future). However it takes 30-40 seconds to retrieve about 25 results.
...
