Windowed functions do not support integer indices as ORDER BY clause expressions.

Error Message:
Msg 5308, Level 16, State 1, Line 1
Windowed functions do not support integer indices as ORDER BY clause expressions.

Severity level:
16.

Description:
This error message appears when you try to use an integer expression in the ORDER BY clause of a windowed function.

Consequences:
The T-SQL statement can be parsed, but causes the error at runtime.

Resolution:
Errors of the Severity Level 16 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. You must remove the integer expression from the ORDER BY clause of the windowed function.

Versions:
This error message was introduced with SQL Server 2005.

Example(s):
USE tempdb;
GO
IF OBJECT_ID(‘tempdb..#t’) > 0
 DROP TABLE #t
GO
CREATE TABLE #t
(
 id INT
)
INSERT INTO #t SELECT 2
UNION ALL SELECT 3
GO
SELECT id, ROW_NUMBER() OVER(ORDER BY 1)
  FROM #t

Remarks:
In the above example we try to use the integer expression 1 in the ORDER BY clause of the windowed function ROW_NUMBER. This raises the error.

]]>

Leave a comment

Your email address will not be published.