BUG: AV May Occur With Invalid String in LIKE ClauseID: 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 : kbprg SSrvProg SSrvTran_SQL kbbug6.00
Version : 6.0
Platform : WINDOWS
Issue type :
Last Reviewed: March 24, 1999