I have a SQL Server 2000 database with a table that looks like this:
ModifyTime datetime
CompanyID smallint
ProductID smallint
ComponentID int
Disposition varchar(10)
Note text
NoteType varchar(256)
This query fails:
UPDATE NoteTable
SET Disposition = 'Modified'
WHERE Disposition = ''
AND CompanyID = 10
AND ProductID = 13
AND ComponentID = 1
AND NoteType = 'Customer'
The error is:
The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.
There is a TEXT column but it's not involved in the query at all. The two text-like fields are both VARCHAR.
I regularly do JOINs on the NoteType field and order by Disposition without this error.
Any clues?
Msg xxx, ...etc. portion when you run this update in Query Analyzer / Management Studio? – Aaron Bertrand Jan 22 at 16:51