I have data that includes several trailing spaces. When I run the following query against it, it says "(735 row(s) affected)", but it isn't getting rid of the spaces. Any ideas?
The data originated from an Access database, if that is of any help in solving the mystery.
Thanks,
v/r
Gooser
Code:
UPDATE [Inspections].[dbo].[ProtectionUnit]
SET [UnitNm] = RTRIM([UnitNm])
The data originated from an Access database, if that is of any help in solving the mystery.
Thanks,
v/r
Gooser