Hello,
I need help flushing data to the right of a column Char(100). I've tried something like this:
update tbl02
set BusAddr = ' '+RTRIM(BusAddr);
Data does move to the right some, but I receive a termination error, since some data would be truncated.
This is problematic since length of data varies.
Anyone have a better statement/idea?
David
I need help flushing data to the right of a column Char(100). I've tried something like this:
update tbl02
set BusAddr = ' '+RTRIM(BusAddr);
Data does move to the right some, but I receive a termination error, since some data would be truncated.
This is problematic since length of data varies.
Anyone have a better statement/idea?
David