修改sybase字符集排序
sp_configure "default sortorder",xxx ; xxx為新的編號(hào)
重啟兩次sybase
//查看默認(rèn)編碼
sp_configure "default char"
//修改編碼
sp_configure "default char",190
go
//查看所有編碼
select id,name from syscharsets
//查看字符集排序
sp_helpsort
//修改字符集排序
sp_configure "default sortorder",50
,