Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: INNER JOIN

    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...

  • RE: configure list of email addresses in XML file

    Replace ',' by ';'

  • RE: Help with VB Script for Sending Mail in SSIS

    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...

  • RE: Using Variables within a "SQL Command from variable"

    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

  • RE: Employee Dimension/Weekly Sales Fact

    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...

  • RE: Unknown dimension values or

    Unknown, Not Applicable, ...

    I think these allow you more control over the design and data loading.

  • RE: Does it make sense store measures in a dimension table?

    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...

Viewing 7 posts - 1 through 7 (of 7 total)