Is it reliable to use ranking functions inside views in sql server (2008 r2) and especially the
over (order by ...)
clause ?
It is known that the
order by
clause inside views in not a good approach, even if you specify the
top (100) percent
What about the
row_number() over(order by myColumn)
Sql server designer complains about it, but I cannot find any reliable info regarding this combination.