Compare 2 Guids in a conditional Split in SSIS

2019-08-11 17:06发布

I am building a conditional split in SSIS to figure out if a row is new or updated. One of the columns I want to compare is a guid and it allows null.

I tried to compare the column like COLUMN != Destination_COLUMN. However I am not allowed to compare guids. Thoughts on workarounds as i have a lot of guids in the DB.

Thanks

1条回答
小情绪 Triste *
2楼-- · 2019-08-11 17:59

Use the derived column transformation to create string versions of your GUIDs, and compare the string columns instead of the GUID columns.

查看更多
登录 后发表回答