January 31, 2012 at 5:41 am
Need some suggestion in SSIS...
I have implemented a lookup transformation to trace few unmatched records.
This lookup transformation divert few unmatched rows into a 'UNMATCH' object.
Now, think is I need a conformation or reminder when ever data load into this unmatch table [Means when ever this SSIS package finds unmatched records and load into this UNMATCH object then automatically we need a reminder message or some thing like that]
Can you please suggest me how to implement this ,,
Please let me know if you need any other details to solve this....
Thanks in Advance.
Krishna.
January 31, 2012 at 5:58 am
Count the rows, put the result in a variable and send an e-mail if the value of said variable > 0.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 31, 2012 at 6:12 am
Thank you for the reply. But here we are not deleteing existed records in UNMATCH table.
[For example, today we got 3 records into Unmatch obkect and tomorrow may be 6 records, in this case we are not deleting old records and everyday it will increase the row count]. Sorry if I am wrong
Thank you.
January 31, 2012 at 6:19 am
krishnaprasad14 (1/31/2012)
Thank you for the reply. But here we are not deleteing existed records in UNMATCH table.[For example, today we got 3 records into Unmatch obkect and tomorrow may be 6 records, in this case we are not deleting old records and everyday it will increase the row count]. Sorry if I am wrong
Thank you.
Put a DateCreated (or DateFailed, perhaps) column on the table (default GetDate()).
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
January 31, 2012 at 6:24 am
krishnaprasad14 (1/31/2012)
Thank you for the reply. But here we are not deleteing existed records in UNMATCH table.[For example, today we got 3 records into Unmatch obkect and tomorrow may be 6 records, in this case we are not deleting old records and everyday it will increase the row count]. Sorry if I am wrong
Thank you.
Sorry, I wasn't clear. Count the rows in the dataflow right after the Lookup component with a Rowcount transformation.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
January 31, 2012 at 6:50 am
Thank you very much.....It's very help full.....
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply