如何让 SSIS 查找转换忽略字母大小写?
希望这很容易解释,但我的一个 SSIS 包中有一个查找转换。 我正在使用它来查找维度表中员工记录的 id。 然而我的问题是,一些源数据的员工姓名全部大写(例如:CHERRERA),而我使用的比较数据全部是小写(例如:cherrera)。
对于并非 100% 大小写相似的记录,查找失败(例如:cherrera 与 cherrera 工作正常 - cherrera 与 CHERRERA 失败)。 有没有办法让查找转换忽略 string/varchar 数据类型的大小写?
Hopefully this is easy to explain, but I have a lookup transformation in one of my SSIS packages. I am using it to lookup the id for an emplouyee record in a dimension table. However my problem is that some of the source data has employee names in all capitals (ex: CHERRERA) and the comparison data im using is all lower case (ex: cherrera).
The lookup is failing for the records that are not 100% case similar (ex: cherrera vs cherrera works fine - cherrera vs CHERRERA fails). Is there a way to make the lookup transformation ignore case on a string/varchar data type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为没有办法使转换不区分大小写,但是您可以使用 LOWER() 字符串函数修改转换的 SQL 语句,以确保源数据与比较数据的大小写匹配。
There isn't a way I believe to make the transformation be case-insensitive, however you could modify the SQL statement for your transformation to ensure that the source data matches the case of your comparison data by using the LOWER() string function.
将查找转换的 CacheType 属性设置为 Partial 或 None。
查找比较现在将由 SQL Server 而不是由 SSIS 查找组件完成,并且不再区分大小写。
Set the CacheType property of the lookup transformation to Partial or None.
The lookup comparisons will now be done by SQL Server and not by the SSIS lookup component, and will no longer be case sensitive.
您必须更改源并查找数据,两者都应该具有相同的案例类型。
You have to change the source and as well as look up data, both should be in same case type.
基于此Microsoft 文章:
要了解有关字符映射表转换的更多信息,请点击此链接“
Based on this Microsoft Article:
To read more about Character Map transformation, follow this link"