Viewing 7 posts - 1 through 7 (of 7 total)
db4breakfast (3/12/2013)
Evgeny Garaev (3/12/2013)
Right answer is wrong in this case. Beacause some rows could be returned. This query will prove my words:end
+2 😎
I agree. So what I learned from this...
March 12, 2013 at 5:00 am
Wrap
myHtmlMessage.Attachments.Add(New Attachment(Dts.Variables("Attachments").Value.ToString))
with an if statement to check if Dts.Variables("Attachments").Value has contents; something along the lines of:
if not isNull(Dts.Variables("Attachments").Value.ToString)
myHtmlMessage.Attachments.Add(New Attachment(Dts.Variables("Attachments").Value.ToString))
(I can script in other languages, not that fluent...
February 12, 2013 at 6:04 am
Hello,
I'd say that the simplest way to handle this would be to add a script task before the "OLE DB Source Editor" and assemble the SQL command there.
Regards,
PMWar
January 31, 2013 at 7:08 am
Some options:
- create a "fake" employee for external partners
- create one "fake" employee for each external partner
- assuming the employee here is a salesperson, create a SellerEntity dimension, grouping employees...
December 18, 2012 at 10:46 am
Unknown, Not Applicable, ...
I think these allow you more control over the design and data loading.
November 5, 2012 at 10:50 am
Given the use case ("amount of purchases last 12 Month"), I'd consider unlikely a user query like "amount of purchases last 12 Month" = 37, so the suggestion of categories...
November 2, 2012 at 5:53 am
Viewing 7 posts - 1 through 7 (of 7 total)