ACC2000: Access May Choose an Unexpected Index as the Primary Key

ID: Q207745


The information in this article applies to:

This article applies only to a Microsoft Access database (.mdb).

Moderate: Requires basic macro, coding, and interoperability skills.


SYMPTOMS

When you link a table from an ODBC data source, such as Microsoft SQL Server or ORACLE, and that table contains more than one unique index, Microsoft Access may select the wrong index as the primary key.


CAUSE

When you link a table from an ODBC data source, the Microsoft Jet database engine makes a call to SQLStatistics, an ODBC API function used to identify the first unique index to select as the primary key. SQLStatistics returns index information in the following order: Clustered, Hashed, Non-clustered, or other indexes. In addition, each index is listed alphabetically within each group.

NOTE: All indexes created within ORACLE are treated as non-clustered indexes. Therefore, the order of the index is determined by the name, rather than by the type.


RESOLUTION

To ensure that the Jet database engine properly selects the desired index as the primary key when linking the table from your ODBC backend, you can rename the index so that it appears first alphabetically.

NOTE: When using SQL Server version 6.x, this behavior only occurs if you are using non-clustered unique indexes.


MORE INFORMATION

Steps to Reproduce Behavior

  1. In a Microsoft SQL Server utility (such as ISQL/w), run the following commands:


  2. 
    CREATE TABLE tblPKTest
     (
      ID int Primary Key Nonclustered,
      Fname varchar(50) null,
      Lname varchar(50) null,
      Field3 varchar(50) null
     )
     go
    CREATE UNIQUE INDEX aaa on tblPKTest(Fname,Lname) 
  3. Start Microsoft Access and create a new database.


  4. On the File menu, point to Get External Data, and then click Link Tables.


  5. In the Link dialog box, click ODBC Databases in the Files of type box.


  6. In the Select Data Source dialog box, click the data source name that points to your SQL Server database, and then click OK. Supply any necessary logon information, and click OK.


  7. In the Link Tables dialog box, select the tblPKTest table that you created in Step 1, and then click OK.


  8. Open the linked tblPKTest table in Design view; click Yes to the prompt that you cannot modify all properties of a linked table. Note that the PrimaryKey is not the ID field as expected, but the combined index of the Fname and Lname fields.



REFERENCES

The third-party products discussed here are manufactured by vendors independent of Microsoft; we make no warranty, implied or otherwise, regarding these products' performance or reliability.

Additional query words: indexes


Keywords          : kb3rdparty kbdta OdbcProb 
Version           : WINDOWS:2000
Platform          : WINDOWS 
Issue type        : kbprb 

Last Reviewed: May 13, 1999