Hi,
I have done Migration form MySql to MS Sql 2005 but having issue with CHAR Columns.
When i check the value on MS Sql table for CHAR(3) column in and it not padding off.
Ex.
Column Data type = CHAR(3)
Value inserting: 'MS' but when i query then it shows as 'MS ', it shows blank space and i know that sql works like that way as it 's not trimming the blank space.
I have few columns like CHAR and I don't need to shows values as blank space.
How can handle this one in SSMA?
I tried to set database level also '
SETANSI_PADDING OFF but it didn't work.
Thanks,