There are a number of "extended asci" values that can appear as a blank. You need to find out what the value is then use the SQL replace function to get rid of it. Use the ascii() function to find out what it is first though. It would be something along these lines.
select char(255)
select ascii('x')
for the field and row where you get the blank/tab/???
select ascii(right(fieldx,1))
This should give you an asci value, whatever that value is put it in the statement below replacing the 255
REPLACE(fieldx,char(255),'')
This will replace the offending value with nothing, thus removing it.
|