Click here to Skip to main content
16,022,069 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I WANT TO CHECK IN CONDITIONAL SPLIT ON SPECIFIC COLUMN IS NOT NULL HOW CHECK THAT IN SSIS

E.g I WANT TO CHECK ISNULL(borrower_portal_unique_id,'') !='' USING SSIS
Posted

1 solution

I had the same exact question while working on my SSIS package. Here’s the answer 11 years later.

You can use !ISNULL([column_name]) to check that a column is not NULL.

So in this case your condition would be:

!ISNULL([borrower_portal_unique_id])

Additionally, if you wanted to make sure that the column is not holding an empty string you could use this to flow data to this output if the column is not null OR the column does not contain an empty string.

!ISNULL([borrower_portal_unique_id]) || [borrower_portal_unique_id] !=""
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900