hy he have in our database lots of " characters witch i want to remove.
how can i do this ?
with the replcace funtion i need to retype the whole description.... please advise me
"Cirkelvormig mes voor gebruik in cassette (cassette niet bijgeleverd) Voor papier en karton"
Cirkelvormig mes voor gebruik in cassette (cassette niet bijgeleverd) Voor papier en karton
tried this but the whole content was gone
Text
UPDATE dbo.OITM SET U_SpecNL = SUBSTRING(U_SpecNL, 2, 255) WHERE U_SpecNL LIKE '%"';
Text
use [ASE-TEST]select U_SpecNL, RIGHT (U_SpecNL, len (U_SpecNL) -1) as 'test remove first' from OITM
Text
gives error :Argument data type ntext is invalid for argument 1 of len function.