If you build a view in Management Studio view designer and select a column to order the results by, a view such as the below is generated: CREATE VIEW xxx AS SELECT TOP (100) PERCENT .... (...) ORDER BY SortCol;Due to optimizer improvements, this "trick" (which has never been documented or supported anyway) doesn't even work anymore on SQL Server 2005. The user is given the idea that his requested ordering will be satisfied, whereas it won't.
Version
Category
Operating System
Platform
Please wait...