Forum Replies Created

Viewing 15 posts - 1 through 15 (of 41 total)

  • RE: Three results from SP to Excel

    you can return multiple results from sp as

    create sp test as

    select * from a

    select * from b

    select * from c

    .

    .

    Then use...

  • RE: Three results from SP to Excel

    Is it not possible then, to use multiple results from a stored procedure in DTS 2000? Cant seem to properly use rs.nextrecordset.

  • RE: DTS 2000 Package hangs while saving.

    I'll try that with a little assist from our dba to make sure to target any suspect process. I'm afraid that running on a dev box, not much activity we...

  • RE: Missing Sequence

    Sorry for the confusion.

    I'm looking for gaps in the sequence. The ID and Code are just record fields, and I need to know if someone skipped a sequence number. I...

  • RE: Update from Max value

    My Mistake.

    The duplicate's orgininate in Table_A, which is ok. The fact they are getting adsigned max(price) looks right.

    Thanks.

    Randy.

  • RE: Update from Max value

    This is bringing back dup's. The right price, but assigned for number of dates found in table B.

  • RE: Sequential Update

    Thats genius.

    Thanks.

    Randy.

  • RE: Sequential Update

    after-thought;

    just update all eff_end_date with 1/1/2009 prior. Then I don't have to worry about that in the logic.

    Randy.

  • RE: Insert Select Summary

    Back to square one.

    I'm pulling one of the original feeds from the archives. It appears all the other fields outside of the Key fields/summed fields are default values. I knew...

  • RE: Insert Select Summary

    It's probably me..

    There are 28 fields to be inserted. 15 fields make up primary key. Only 2 fields are summed the rest are inserted as is. Basically an hrs/wages feed...

  • RE: Parent-Child grouping

    Got It.

     

    What was going on was that the inner select was grouped, but NOT to the lowest (single) record. In otherwords, the grouping for the payment sums was not to...

  • RE: Parent-Child grouping

    Yes.

    "From Parent

    Left Join child on parent.key = child.key"

    However, I beleive this falls apart if you implicitly filter on the child -

    " Where Child.Filed_name = value "

    I never realized this until I...

  • RE: Parent-Child grouping

    It has  to do 'null' records on the child left-join. Because here I'm aggregating the values on the child records, it's throwing out the parent when no child found.

    I need...

  • RE: Parent-Child grouping

    Will do. Interogating piece-by-piece. I'll either let you know what I find, or your going to see a much 'longer' post!

     

     

  • RE: Parent-Child grouping

    Found an error , running new structure....

Viewing 15 posts - 1 through 15 (of 41 total)