Viewing 2 posts - 1 through 3 (of 3 total)
You cannot do for Image datatypes the solution I had given earlier ...
Such comparision is not possible in SQL Server. You would like to look into some other tool...
March 22, 2003 at 2:51 am
#451794
I hope you are storing it in text/ntext datatype fields. In that case you can try using substring to compare as chuncks of 8000 charaters.
use northwind
SELECT E1.EmployeeID ,E2.EmployeeID
FROM Employees...
March 21, 2003 at 6:40 am
#451679