简体   繁体   中英

handling null in conditional split in SSIS

I am using the conditional split to split my output. In conditional split I've used condition

IsNull(Name)

The input to the conditional split is result of left outer join query and it is pass through conditional split and insert into destination.

I came across the situation where the value of Name is not null still it passes through conditional split and insert into destination.

Eg input has value Name= "/Aav"

Yes in name there is one special character. In this Case split condition IsNull(Name)= False.

Still this value is inserted into destination. when the conditional slit return true then only it should insert into destination.

Could you please suggest how I can handle this?

check it out it may helps you

在情况1中只会出现c的空值,否则将默认输入

case1 allows only null values of c column

and then case 1 to your destination is what you needed

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM