1、采用的bcp方式导出数据出现乱码解决方法
bcp zxvnms..t_tmp_carinfo in t_tmp_carinfo.txt -b 100 -Usa -P%c% -S%b% -Y -c -Jcp936 -t -r
2、去掉回车符方法
update t_tmp_countryside set cs_upcity = str_replace(cs_upcity,char(13),'')
3、去掉换行符方法
update t_tmp_countryside set cs_upcity = str_replace(cs_upcity,char(10),'')
主要注意理解回车和换行的概念。