Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
avijit_mca
Posting Yak Master
109 Posts |
Posted - 2013-11-18 : 11:03:18
|
exporting data from Excel to Sql Server / Sybase.Now i have one column with Special charachter . How i will remove the special charachter in data flow level so that it should not effect Sql server / Syabse DB.Regards,avijit |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-11-19 : 01:49:49
|
use Conditional spilt and add an output with filter condition on special characterslike!(Field == <first character) && !(Field== <Second character>),...------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
|
|
|
|
|