Forum Replies Created

Viewing 15 posts - 61 through 75 (of 90 total)

  • RE: SSIS Expression two filepath filename

    What I am trying to do is email from SSIS one dynamically changing text file and one excel file at the same time.

    In my SSIS package I have declared four...

  • RE: SSIS Expression two filepath filename

    Jason-299789 (1/10/2013)


    Marbo (1/10/2013)


    Hi ringovski,

    I don't fully understand what your point is but isn't it simple to use a second send email task with probably a second variable or expression.

    Or create...

  • RE: SSMS Job\SSIS due to error 0x80070003 "The system cannot find the path specified."

    Problem is solved 🙂 if anyone is intrested....

    I found that I had to enable deployment from the package properties and build. Then use the deployment tool to deploy the...

  • RE: Bug with using two merge joins?

    How do I check that?

    The SQL source is sorted, one side from the multicast accepts the source as sorted but the other doesn't.

  • RE: Same Table Twice

    It was pretty easy in the end, added last join. Thanks for trying all.

    SELECT Sh.LocationID, sh.code,Sh.Description, Sh.StartTime, Sh.Duration, ...

  • RE: Compare two databases

    steveb. (9/20/2011)


    use a lookup transfomation to check if the columns match and then use the match and no-match data flow connections to handle the matched and non-match data

    Sweet...

  • RE: Email Output Excel File

    doesn't matter I worked it out, add the email task after the condition export so it only emails if the previous task runs.

  • RE: Could not be bound

    Thanks guys for the replies, your script works.

    Just as a excercise I am trying to use a nested query and am unable to get it working. Both these return the...

  • RE: If there's output

    Found the problem the variable had to be package wide not just data flow task in scope.

  • RE: If there's output

    Koen Verbeeck (8/9/2011)


    You can add a rowcount in your dataflow. (this stores the result in a variable)

    Then, after the dataflow, you can use the variable value in an expression on...

  • RE: derived column isnull

    I got it working by removing the null in the Select statement, the dervied editor was detecting the NULL.

    ISNULL(optional_3l, '') AS [Division Code]

    So the column is always empty or has...

  • RE: derived column isnull

    I have changed it to make more simple and it still doesn't work, when I query the DB there is actually a null record in that column [Division Code].

    ISNULL([Division Code])...

  • RE: Don't show null

    thanks for the code tip.

    Unfortunately isnull() forces you to declare a replacement of the same data type of the column.

    Invoice_Id(int, not null)

    Code: ISNULL(invoice_id, 0) returns a zero

    Code: ISNULL(invoice_ID,)...

  • RE: Single Invoice Row with Orders

    I am adding the code to package flow I have designed that will be added to a SQL job so it can run automatically everyday. I tried doing it in...

  • RE: Single Invoice Row with Orders

    I have finally got it after a couple of weeks, here's the code if anyone is interested;

    [Code="SQL"]

    WITH cte ( Invoice_id, IssueDate,optional_1,scandate,supplier,optional_2,invoicenumber,rejected,completed,notified,comments,transferred,

    ...

Viewing 15 posts - 61 through 75 (of 90 total)