FIX: Queries With Large Numeric Values May Not Use Appropriate Index (262023)



The information in this article applies to:

  • Microsoft SQL Server 7.0

This article was previously published under Q262023
BUG #: 56702 (SQLBUG_70)

SYMPTOMS

Queries that use numeric values with precision 20 or greater, and scale zero, may not use the correct index. The query may use a different index, or may perform a table scan.

CAUSE

The optimizer converts a numeric value to a float and then gets an arithmetic overflow error, which prevents it from believing that the index is useful.

RESOLUTION

To resolve this problem, obtain U.S. Service Pack 3 for SQL Server 7.0. To activate this fix, you must enable trace flag 9256. To enable this trace flag each time that SQL Server starts, click the Startup Parameters button in the Server Properties dialog box in Enterprise Manager and add the parameter "-T9256".

WORKAROUND

Use an index hint in the query to force the use of the desired index.

STATUS

Microsoft has confirmed this to be a problem in SQL Server 7.0. This problem has been corrected in U.S. Service Pack 3 for Microsoft SQL Server 7.0. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

274799 INF: How to Obtain Service Pack 3 for Microsoft SQL Server 7.0 and Microsoft Data Engine (MSDE) 1.0

For more information, contact your primary support provider.

Modification Type:MajorLast Reviewed:3/14/2006
Keywords:kbBug kbfix kbQFE KB262023