Forum Replies Created

Viewing 15 posts - 11,641 through 11,655 (of 13,876 total)

  • RE: temp db backup

    Although I agree with you, did you notice that it's his/her first forum post?

    Maybe when they get to 30 or 40 posts, you can start slamming them for any dumb...

  • RE: Add calculated column to a table using SSIS

    That's better. You can do that using a subquery - something like this (untested):

    SELECT

    t2.SumGross,

    t.BOOKING_ID,

    t.KL_EQUIPMENT_TYPE_CD,

    etc etc

    FROM tablename t

    JOIN

    (select t1.Booking_ID, Sum(t1.Gross_Wgt) SumGross

    from tablename t1

    group by t1.Booking_ID) t2

    on t.Booking_ID...

  • RE: Add calculated column to a table using SSIS

    Probably.

    But unless you provide a better description of what you are trying to achieve, that's the best answer I can provide.

    Here[/url] is a link to an article which will describe...

  • RE: Return Value for Execute SQL Task

    Stringzz (2/1/2011)


    Thanks Phil, I actually had a lightbulb go off before I saw your post, but you would have directed to the correct solution if I hadn't figured it out.

    Haha,...

  • RE: Return Value for Execute SQL Task

    Stringzz (2/1/2011)


    I figured this one out. I put the following line of sql at the end of my code, and did a result set looking for the RowCnt and populating...

  • RE: Return Value for Execute SQL Task

    You'd be wise not to mention the 'c' word in this forum 🙂

    Have you tried SELECT ... rather than RETURN?

  • RE: How to Deploy the SSIS Package

    Koen (da-zero) (1/28/2011)


    Phil Parkin (1/28/2011)


    The power of Google is there for you as well as me, but since you're new I've done it for you, just this once. Check here.

    The...

  • RE: How to Deploy the SSIS Package

    The power of Google is there for you as well as me, but since you're new I've done it for you, just this once. Check here.

  • RE: Need expressions of for loop

    Try removing the double quotes from your expression:

    @[User::LopVariable]==@[User::IterlopVariable]

  • RE: Bulk Insert

    A pleasure.

  • RE: Bulk Insert

    Are you running the package as yourself, or another user? It is good practice to use a UNC path to your file, rather than drive letters, as these are not...

  • RE: DATALENGTH

    I'm with Koen. There was no need for an SP - running the count query and assigning the result to an SSIS variable can all be done in a single...

  • RE: CSV import fail when set as sql job

    Please post the text of the error message from the job history.

  • RE: Flat file to Excel destination!

    Or it might be possible via a conditional split (just redirect all the unwanted rows to an unused output and keep the good stuff) - don't use SQL Server at...

  • RE: Error in query in SSIS

    What is your OLEDB data source?

Viewing 15 posts - 11,641 through 11,655 (of 13,876 total)