We migrated data from oracle to sqlserver using SSMA but when we see data of sqlserver on .NET GUI, formatting is different than oracle data display on .NET GUI.
For an example
we are able to see data of oracle on .NET GUI of a spectific column of grid :
Hello
How are you ?
But in sql server all data is displaying in single line like :
Hello How are you ?
We executed below command on sql server but still able to see data in single row :
update table_name set column_name =replace(column_name,'\n',char(13)+char(10))
Can you please provide us solution as soon as possible ?