show/hide this revision's text 2 added 358 characters in body

Are you using Ms SQL 2005? Recursive queries in 2005 makes queryring hierarchical data much more elegant.

Edit: I do think materialized paths are a bit of a hack. The path contain non-normalized redundant data, and you have to use triggers or something to keep them updated. Eg. if a node changes parent, the whole subtree have to have their paths updated. And subtree queries have to use some ugly substring matching rather than an elegant and fast join.

show/hide this revision's text 1

Are you using Ms SQL 2005? Recursive queries in 2005 makes queryring hierarchical data much more elegant.