Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following statements works on one instance of SQL Server 2005, but fails on another (also SQL Server 2005) with the following error:

A column has been specified more than once in the order by list. Columns in the order by list must be unique.

Does anyone know what would cause this? Here is a simplified version of the sql statement in question:

CREATE TABLE #foo (bar INT)


SELECT TOP 150 ID           
FROM                    
(   SELECT  bar as ID,bar FROM  #foo ) tmp
ORDER BY                bar,ID  
share|improve this question
If I'm reading the simplified version currently, why do you need to sort by both bar and ID? Don't they both hold the same value? To me it reads like you are selecting the same column twice (just aliasing it once) and then trying to sort by the same column twice. – Nathanial Woolls Aug 1 '11 at 18:44
2  
Tip: Try to use something that has a meaning when you make an example. It's a lot easier to follow an example where the names mean something than trying to keep a lot of nonsense names in the head to try to figure out that the code does. – Guffa Aug 1 '11 at 18:47
1  
@Guffa If I gave the real example, it would be a giant statement with multiple tables that you couldn't reference to reproduce the error. It would also take way more explanation then anyone would care to hear. This statement you (or anyone) can run on their local SQL Server to hopefully reproduce the issue. – Don Aug 1 '11 at 18:53
I think you might have oversimplified your statement. Do your two databases exhibit the same error/lack of error running the query above? – Damien_The_Unbeliever Aug 1 '11 at 18:54
@Damien_The_Unbeliever No, they don't exhibit the same error. One instance of SQL Server 2005 runs the statement fine and returns 0 results (as expected), while another instance of SQL Server 2005 gives the error I posted above. – Don Aug 1 '11 at 18:56
show 3 more comments

5 Answers

up vote 5 down vote accepted

What does SELECT @@VERSION; say? The different behavior may be explained by a fix that was implemented in a service pack, for example. You should try to keep all of your environments consistent in this regard.

share|improve this answer
1  
This is a good question. I get the error in my 2005 (9.00.1399.06) but not in the 2008. – Mikael Eriksson Aug 1 '11 at 19:32
The difference seems to be an error that was fixed in the sql parser somewhere between RTM (9.00.1399.06) and SP3(9.00.4053.00). select SERVERPROPERTY('productlevel') gives "RTM" on the broken server, and "SP3" on the working servers. I'm getting an administrator to patch the one server where it isn't working, thanks for the help :) – Don Aug 1 '11 at 19:33
1  
So I guess you're going to "fix" it by upgrading the broken server to SP3 and continue using this code that selects the same column twice and orders by both instances? I'd love to be in on the design meetings for that one... – Aaron Bertrand Aug 1 '11 at 19:35
I think I know what simplification means. I also know what over-simplification means. Can you explain your point in showing me a dictionary entry? – Aaron Bertrand Aug 1 '11 at 19:39
I was talking to whoever down-voted. I didn't say it was you. Also regarding a "quick fix" - moving from RTM to SP3 is hardly a "quick fix" - there should be plenty of testing involved to make sure that other changes don't break your application. – Aaron Bertrand Aug 1 '11 at 19:46
show 3 more comments

It's a good habit to always explicitly reference the table associated with your columns. But in your case, you're still returning one column bar twice. Not sure why you'd want to do this but you'd only need to order by one of them.

CREATE TABLE #foo (bar INT)


SELECT TOP 150 tmp.ID           
FROM                    
(   SELECT  bar as ID,bar FROM  #foo ) tmp
ORDER BY                tmp.bar
share|improve this answer
That's true, but it doesn't fix the issue. I still get the same error I pasted above even if I reference the tmp table. Again this is a simplification of the issue, so don't read too much into the actual functionality. – Don Aug 1 '11 at 18:45
We need more context to understand the underlying issue. Why do you need to return two columns that reference the same column? Why do you need to order by both of them? You've given us nothing but a frivolous and fake example to "read too much into"... there are some pretty smart people floating around here, you don't need to dumb it down that much. – Aaron Bertrand Aug 1 '11 at 19:25

Are the databases running at the same compatibility level?

select name, cmptlevel from master.dbo.sysdatabases
share|improve this answer
I was wondering if it had to do with the compatibility level or some other setting too, but they both are showing a cmptlevel of 80. – Don Aug 1 '11 at 18:48
4  
@Don - 80? You're running under SQL Server 2000 rules. You're lucky the machine doesn't spontaneously ignite :-) – Damien_The_Unbeliever Aug 1 '11 at 18:53
@Damien_The_Unbeliever I know, right? I didn't set up the databases, someone else did and I'm not sure why they used that compatibility level. However they are both the same, so I don't know what would cause the inconsistency. – Don Aug 1 '11 at 18:58

The error seems self-explanatory.

...Columns in the order by list must be unique.

bar and ID are the same thing -- i.e., they are not unique.

ORDER BY bar,ID

should be changed to

ORDER BY ID

since that's how you're referencing it in your outer query.

PS -- Even if, for whatever reason, one system lets you duplicate an order by operation, and the other doesn't; your best-practice radar ought to be pointing you to not repeating it on either system. Considering that there's no gain to ordering twice, as the order wouldn't change the second time you repeated the same order operation.

share|improve this answer

Are you sure that the query looks the same? That query should cause the same error in all versions of SQL server.

The compatibility level of a database can cause differences in behaviour, but that should not make a difference in this case.

share|improve this answer
I'm running the exact SQL I pasted on both instances. On one it works and the other it errors. I just tried another SQL Server 2005 instance on a 3rd server, and also a SQL Server 2008 instance, and both worked fine. – Don Aug 1 '11 at 18:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.