Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2012 Forums
 Other SQL Server 2012 Topics
 SSIS Clean and Filter data!

Author  Topic 

xhostx
Constraint Violating Yak Guru

277 Posts

Posted - 2012-09-28 : 10:04:39
hi all,

I'm working on an SSIS package. Simply reading from an Excel --> Transform datatype --> Store it In OLDDB (SQLSERVER Table).
Now, I have some nulls, and special cases which I want to filter.
I'm thinking to use a "Conditional Split" any good suggestions please will be appreciated.
This is 2012 SQL Server.
Thanks.

--------------------------
Joins are what RDBMS's do for a living

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2012-09-28 : 10:51:56
yep...you can use conditional split and use a condition like

LEN(column) >0

or

ISNULL(Column) == (DT_BOOL)0

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

xhostx
Constraint Violating Yak Guru

277 Posts

Posted - 2012-09-28 : 13:16:17
Thanks you Visakh! :)

--------------------------
Joins are what RDBMS's do for a living
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2012-09-28 : 13:43:34
welcome

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -