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 |
Brittney10
Posting Yak Master
154 Posts |
Posted - 2012-10-10 : 11:13:25
|
I have some data that needs to go through a lookup transformation. Currently I have the data flow set up to redirect from the lookup if there are no matches. The error redirect goes to a log table that is used to tell what columns didn't match in the lookup and what the client needs to correct on the record. However, the columns that are going through the lookup are NOT required...meaning I don't really want to redirect the row and not continue the record in the data flow. I need to be able to redirect the rows and log, but at the same time continue that record through the data flow (this columns would just be NULL). Any suggestions on how to do this? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-10-11 : 00:29:10
|
use multicast in no match path and create a copy. then use main path for logging and copy for continuing through data flow.------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
Brittney10
Posting Yak Master
154 Posts |
Posted - 2012-10-16 : 12:36:12
|
That helps me with redirecting the error row back to the data flow, but then how do i handle rows that don't error? I have no where to connect them in the dataflow because the error row is already in that path. |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-10-16 : 23:40:10
|
ok..for that what you could do is add a union all transform to merge the error row path and actual lookup path so that you get all records merged again in the main path------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
Brittney10
Posting Yak Master
154 Posts |
Posted - 2012-10-17 : 10:59:03
|
I had originally tried to achieve this in that manner, but kept getting an error with errorcode. I will try again and see if i can get it to work. |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-10-17 : 23:29:41
|
quote: Originally posted by Brittney10 I had originally tried to achieve this in that manner, but kept getting an error with errorcode. I will try again and see if i can get it to work.
can you post what the error is?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|