Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
149 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 ...
6
votes
2answers
2k 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. ...
6
votes
4answers
2k views

SQL 2008 HierarchyID with Multiple Root Nodes

I wanted to use the new HierarchyID type in SQL Server 2008 to handle the page relations in a small wiki application. However It would need to have multiple root nodes since every main article/page ...
5
votes
3answers
566 views

Anyone used SQl Server 2008 HierarchialID type to store genealogy data

I have a genealogical database (about sheep actually), that is used by breeders to research genetic information. In each record I store fatherid and motherid. In a seperate table I store complete ...
4
votes
0answers
412 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 ...
4
votes
2answers
822 views

Materialized path pattern VS Hierarchyid

I am reading the SQL server 2008 bible and it says the materialized path pattern is significantly faster then the hierarchyid. Is this really true? How can I make the hierarchyid have equal or better ...
4
votes
2answers
1k views

Some questions about HierarchyId (SQL Server 2008)

I am a newbie in SQL Server 2008 and just got introduced to HierarchyId's. I am learning from SQL Server 2008 - HIERARCHYID - PART I. So basically I am following the article line by line and while ...
3
votes
1answer
202 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 ...
3
votes
1answer
517 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 ...
3
votes
2answers
2k 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 ...
3
votes
1answer
857 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 ...
3
votes
2answers
999 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 ...
3
votes
3answers
520 views

Why is there no equivalent for hierarchyid SQL data type?

I understand it that we have to map this type as binary to get to it in the application code. But why isn't there an exact equivalent with all those type methods? How are we supposed to work with in ...
3
votes
2answers
676 views

How can I do a Cascading Delete with the SQL 2008 HierarchyID data type?

I haven't used the HierarchyID much, so I'm a little unsure. If my table has a HierarchyID, how do I perform a cascading delete? (i.e. delete all 'children' when deleting the 'parent') I assume I ...
2
votes
3answers
58 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, ...
2
votes
1answer
153 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 ...
2
votes
3answers
275 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
196 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 ...
2
votes
3answers
699 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. ...
2
votes
2answers
270 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] ...
2
votes
2answers
2k views

How to find ALL descendants using HierarchyID for SQL Server

I need to find all descendants of a category using HierarchyID for SQL Server. I know how to find direct childs but I would like to find childs of childs of child..etc. Is there a way to do this using ...
1
vote
1answer
59 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 ...
1
vote
2answers
155 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 ...
1
vote
1answer
523 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 / ...
1
vote
1answer
183 views

Error:insert hierarchy values using storedprocedure

I'm getting this error when trying to run a query that inserts results into a table in sql. im passing the table name as parameter,how to give the hierarchy value to the insert statement. here is my ...
1
vote
2answers
665 views

Type 'Microsoft.SqlServer.Types.SqlHierarchyId' is not supported for identity members

I'm getting the above exception while trying to read data from a table using Linq2Sql. Does anyone know what's happening here?
0
votes
2answers
35 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 ...
0
votes
1answer
183 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
69 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, ...
0
votes
2answers
108 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 ...
0
votes
0answers
140 views

SQL Server - How to store hierarchies with versioning, and correspondence between versions?

We need to store this kind of hierarchy, but we have different versions (version of 2008, of 2009, etc.) and we need also to store the correspondence between different versions (ex: B111 in 2008 ...
0
votes
1answer
361 views

Populate hierarchyid in exist parent-children 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
0answers
426 views

SQL Server data type mapping to JDBC data types

I am trying to map all the MS SQL Sever 2008 data types to their corresponding JDBC 4.x data types (using Java.SQL.Types). I was able to get most of them from these resources: 1 - ...
0
votes
0answers
258 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 ...
0
votes
1answer
477 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 ...
0
votes
1answer
213 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 ...
0
votes
1answer
55 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 ...
0
votes
1answer
186 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
357 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]( ...
0
votes
1answer
302 views

SqlMetal, Sql Server 2008 database, Table with HierachyID, dal cs file is created sometimes?

I have 2 databases with a 2 tables with HierachyID fields. For one database I can get a dal cs file, for the other database I cannot get a dal cs file ? HBus is a database I can get the dal cs for, ...
0
votes
0answers
128 views

hierarchyid in SQL Server 2008

I have a hierarchy table with the hierarchy (Schools under different owners). I have another hierarchy table (Departments under different schools) both has diff path. But how to relate both the table ...
0
votes
0answers
145 views

Deploy problem with hierarchyid on automated build only

I am getting the following error during the deploy task of an automated build (Team Foundation Build Server). This deployment may encounter errors during execution because ...