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.
有 ?在我的数据列中,我必须用 NULL 替换它们。在我的 SSIS 包中。
如果问号已经在列中,它必须是某种字符串。
使用派生列和 if 函数:
[colName] == "?" ? NULL(DT_STR, «length», 1252) : [colName]
或者
[colName] == "?" ? NULL(DT_WSTR, «length») : [colName]