Destination [Column]上的代码页为1252,并且必须为28591

时间:2019-06-10 13:08:28

标签: tsql encoding export ssms

使用SSMS的“导出到文件”向导。我正在尝试使用瑞典语编码export interface Y{ title: string; name: string; } const [x, setX] = useState<Y>({ title: 'Mr', name: 'Jack' }); setX({ name: 'John' }) // <-- title: undefined setX({ ...x, name: 'john' }) // <-- You will have to do this instead 将对数据库视图之一的查询导出到文件中,该编码显然映射到ISO-8859-1的值。我使用的语言环境值为“ 英语(美国)”。

在最后一步,导出失败并显示以下消息:

enter image description here

当我查看视图中的列时,我注意到此错误中提到的所有三列( PredominantChannel CampaignHunterType >)的类型为28591,而错误中未提及的其他文本列的类型为VARCHAR

数据库的排序规则为NVARCHAR

  • SQL Server版本:Microsoft SQL Server 2017(RTM-CU13)
  • SSMS版本:13.0.16106.4

0 个答案:

没有答案