BUG: AV May Occur With Invalid String in LIKE ClauseLast reviewed: May 2, 1997Article ID: Q149321 |
The information in this article applies to:
SYMPTOMSA simple SELECT statement with an invalid string in the LIKE clause can generate an access violation, instead of giving a syntax error.
WORKAROUNDUse only valid strings.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONIf the string is 'x'%'x' you will get the AV, but if you have 'x'x'%' or 'x'_'%', you will get the syntax error as expected. The problem can bereproduced by using the following scenario:
create table av (x char(20)) go select * from av where x like 'x'%'y' |
Additional query words: sql6 char strings
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |