For Example; SELECT TRIM(Names) FROM Customer
|
feedback
|
| |||||
feedback
|
|
To Trim on the right, use:
To Trim on the left, use:
To Trim on the both sides, use:
| |||||||||
feedback
|
|
I assume this is a one-off data scrubbing exercise. Once done, ensure you add database constraints to prevent bad data in the future e.g.
Also consider disallowing other characters (tab, carriage return, line feed, etc) that may cause problems. It may also be a good time to split those Names into | |||
|
feedback
|
|
in sql server 2008 r2 with ssis expression we have the trim function . SQL Server Integration Services (SSIS) is a component of the Microsoft SQL Server database software that can be used to perform a broad range of data migration tasks. you can find the complete description on this link http://msdn.microsoft.com/en-us/library/ms139947.aspx but this function have some limitation in itself which are also mentioned by msdn on that page. but this is in sql server 2008 r2
| |||
|
feedback
|