Sybase数据库bcp导入数据乱码、换行问题

栏目:Sybase 来源:网络 关注:0 时间:2019-08-16

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),'')
主要注意理解回车和换行的概念。

本文标题:Sybase数据库bcp导入数据乱码、换行问题
本文地址:http://www.q0738.com/sybase/1313.html

上一篇:没有了 下一篇:Sybase解决数据库锁死问题