Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是Centerprise 的新手。到目前为止,一切都很好,但是,任何人都可以帮助我了解数据质量规则对象吗?特别是,我试图在字符串中找到一个空白。如果 SSN 中存在空白,则拒绝该记录。
您可以通过数据质量规则转换运行 SSN 字段来执行此操作。在转换表达式中,使用以下表达式:
IsNullOrEmpty(SSNFieldName) = false
这应该给你你正在寻找的东西。