BUG: AV May Occur With Invalid String in LIKE Clause |
Q149321
A simple SELECT statement with an invalid string in the LIKE clause can generate an access violation, instead of giving a syntax error.
Use only valid strings.
Microsoft 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.
If 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 be
reproduced 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
Keywords : kbprogramming
Issue type :
Technology : kbSQLServSearch kbAudDeveloper kbSQLServ600
|
Last Reviewed: March 26, 1999 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |