Forum Replies Created

Viewing 15 posts - 676 through 690 (of 1,414 total)

  • Reply To: Pivot table for report

    Not dynamic

    select tmp_channel, tmp_entity,
    sum(case when tmp_category='Cat1' then tmp_charges else 0 end) cat1,
    sum(case when...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Deadlocks during concurrent delete operation

    A man goes to the doctor and says, "Doc, it hurts when I do this."  The doctor's response: "Don't do that."  What about not deleting the data within the transaction?

     

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: extract name to 3 single columns

    I think you're looking for something like this.  The first CROSS APPLY 'cma_check(cnt)' counts the number of commas.  The second CROSS APPLY 'wrd_check(cnt)' counts the number of words in the...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: extract name to 3 single columns

    Yes I mostly agree with ratbak and I even narrowly agree with Joe.  If you've got access to pro software then use that 🙂  The code provided does sort of...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: extract name to 3 single columns

    The query could split the input into left and right strings based on the location of the comma.  Then determine if the trailing character of the right string is a...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Query select.

    If the display order of the result set doesn't matter, using TOP(1) WITH TIES and ordering by the ROW_NUMBER

    select top(1) with ties *
    from #t1
    order by row_number() over...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    Regarding the specifics of trading scenarios it's just not my cup of tea.  If there was a specific SQL question (or answer) without any lingo then maybe.  But so to...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Getting sum of all transactions by month-end

    ;with
    loc_cte(loc) as (
    select distinct location
    from @tablom),
    n(n) as (
    select n
    from (values...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    Thank you for your responses Rob.  It's an interesting story and your experiences with server code ring a bell which really resonates with me.  Ha, more could be said about...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    Rob Reid-246754 wrote:

    So you think MONEY is a bad column for storing MONETARY values and that an INT which stores PENNIES (CENTS in US), is better. Is there a reason...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    Thank you for your qualified thanks, I think.  You've been on this site for a long time so ok maybe something like this is helpful.

    declare
    @totalstake...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    My apologies there was a mistake in the code.  You're correct there shouldn't be duplicates as you described.  In the 'xply_cte' CTE the 4th column contained an incorrect table alias. ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Splitting a group up into multiple groups using a score....

    It's not a good approach imo.  It's not necessary or polite to call anyone out.  For my part I'm not familiar with the terms and I'm generally uninterested in gambling. ...

    • This reply was modified 5 years, 3 months ago by Steve Collins. Reason: Fixed column alias in CTE

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Top 1 makes very fast query into very slow query

    You could maybe replace the whole WHILE LOOP'ing function with Eirikur's LEAD splitter.  If this is SQL Server 2016+ you could use the built-in STRING_SPLIT itvf (since the order...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Top 1 makes very fast query into very slow query

    The query could be simplified, no?  Maybe something like this

    select top(1) p.AkcesAutoID
    from dbo.podrobnosti p
    join ro.fntStringsToTable('J') ltrs on ltrs.EvidenceLetter = p.EvidenceLetter
    ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

Viewing 15 posts - 676 through 690 (of 1,414 total)