ACC97: "ORDER BY Clause Is Not Valid..." Error with Linked Table (235960)
The information in this article applies to:
This article was previously published under Q235960 Advanced: Requires expert coding, interoperability, and multiuser
skills.
SYMPTOMS When you run a query that uses an ORDER BY statement on a
linked table, you may receive the following error message:
The ORDER BY clause is not valid because column, "col
name," is not part of the result table. CAUSE You are unable to use the ORDER BY statement on a
non-Primary Key field. Microsoft Jet does not make the necessary ODBC call, SQLGetInfo(SQL_ORDER_BY_COLUMNS_IN_SELECT), to retrieve the information necessary to include ORDER BY
columns in the SELECT statement. When you run a query using Jet 3.5x,
Jet obtains table indexes and issues a "pre-query" that selects all the indexed
columns and retains the remaining part of the query issued by Access. For
example, if the following query is issued from Access against a table called
Test1 with fields A, B, C, D, E, and F, having a unique index on A, B, and C
Select D,E,F from Test1 order by D,E,F
the "pre query" would be:
Select A,B,C from Test1 order by D,E,F
This "pre-query" extends beyond the ANSI-92 standards and is
rejected by some of the relational database management systems, such as DB2.
Other relational database management systems, such as Microsoft SQL Server,
ORACLE, and others, allow this "pre-query" to succeed. (Strict ANSI-92
compliance dictates that ORDER BY columns must also be in the SELECT list.)
RESOLUTION First, install the latest release of Microsoft Data Access
Components MDAC 2.1.2.4202.3 (GA). You can download MDAC 2.1.2.4202.3 (GA) from
the following Microsoft Web site: Then, if you are running Microsoft Windows 95, Microsoft Windows
98, or and Microsoft Windows NT, install the Microsoft Jet 3.5 SP3 update. This
is not necessary if you are running Microsoft Windows 2000. For additional
information about how to obtain the Microsoft Jet 3.5 SP3 update, please click
the article number below to view the article in the Microsoft Knowledge Base: 172733 ACC97: Updated Version of Microsoft Jet 3.5 Available for Download
STATUSMicrosoft
has confirmed that this is a problem in the Microsoft products that are listed
at the beginning of this article.
Modification Type: | Major | Last Reviewed: | 8/16/2005 |
---|
Keywords: | kbbug kbfix KB235960 |
---|
|