SSIS如何将DT_WSTR转换为DT_STR?
将 DT_WSTR 转换为 DT_STR 时,SSIS 数据转换使用什么方法?如果 DT_WSTR 中存在一个字符,而 DT_STR 的目标代码页中不存在该字符,则映射会失败,还是会忽略该字符?
What is the methodology that the SSIS data conversion transformation uses when converting a DT_WSTR to DT_STR? If a character exists in the DT_WSTR which does not exist in the destination code page of the DT_STR, will the mapping fail, or ignore the character?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜它使用 WideCharToMultiByte 或类似的东西。
您可以通过设置截断选项来控制发生的情况,请参阅
http://msdn.microsoft.com/en-us/library/ms141679.aspx
I guess it uses WideCharToMultiByte or something similar.
You control what happens by setting truncation options, see
http://msdn.microsoft.com/en-us/library/ms141679.aspx