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.
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 likeLEN(column) >0orISNULL(Column) == (DT_BOOL)0------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
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 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-09-28 : 13:43:34
|
welcome------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|