I have a sql function which looks up the parent of a certain node in a left right tree. This takes a lot of time. If I create a view that stores for each node its parent, will that speed up things? (I would then ask the view to get the parent node).
Can you improve performance with sqlserver views?
554 Views Asked by Lieven Cardoen At
2
The view (and the underlying function) will be reevaluated each time it is accessed, so creating a view will not improve anything.
In fact, you will most probably speed up things by removing the
UDF
and just using this to find your parent node:, especially if you have an index on
lft
which also coversrgt
:Nested sets model is not very efficient for
SQL Server
. It was designed for legacy system which did not allow recursive queries, but for most modern database systems adjacency list is much more efficient.See this article in my blog for details: