Forum Replies Created

Viewing 15 posts - 811 through 825 (of 1,419 total)

  • Reply To: Get Particular Date from a Month

    Here's a tvf

    drop function if exists dbo.fn_test_scnd_thurs;
    go
    create function dbo.fn_test_scnd_thurs(
    @test_date date)
    returns table
    as return
    select dateadd(day, 9, calc_dt.dt)...

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

  • Reply To: Get Particular Date from a Month

    Jeff Moden wrote:

    I had to take down the previous post because I found a bug in the formula.  Looking for how to fix it.

    Ah I didn't see what was posted.  My...

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

  • Reply To: Get Particular Date from a Month

    Jeff Moden wrote:

    Steve, if you're going to use the fnTally function, you need to tell people where to get it.  Since I use it so often, I just put the link...

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

  • Reply To: Get Particular Date from a Month

    Even if fnTally is not available it's still a useful article to read.  Any table with reliably more than 31 rows could be used tho.   In this case I created...

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

  • Reply To: Get Particular Date from a Month

    When you write "which is followed with..." it seems you're intending it to mean "which follows the..."?   The following has 2 Common Table Expressions: 1) 'test_tues_cte' which contains all of...

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

  • Reply To: how togetparentchildstring in sql server

    The JSON is oddly formed.  Are you 100% sure this is the format required?  The inner JSON items are in array list format but there's no array wrapper. I don't...

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

  • Reply To: Towards an efficient interface between application and database

    One way or another I would like to come up with a way to deal with JSON schemas.  If I observe how my time is spent and do the "5...

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

  • Reply To: Using hierarchyID

    luissantos wrote:

    but my point is that I don't want to assign a value to a variable to start creating hierarchies for all accounts in my chart of accounts. Any ideas...

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

  • Reply To: Using hierarchyID

    Well, I'm not really experienced with hierarchyid other than fiddling around with it.  Most of what can be accomplished with hierarchyid can also be done in various other ways.  In...

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

  • Reply To: Find MAX value from another table

    with t2_latest_cte as (
    select *, row_number() over (partition by RunDate
    ...

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

  • Reply To: Can I use UNPIVOT

    When I run each query and include the actual execution plan the results are identical.  Both do one table scan and a constant scan on the results.  So yes they...

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

  • Reply To: Can I use UNPIVOT

    drop table if exists #Customer
    go
    create table #Customer(
    CIDint not null,
    WholeSaler bit not null,
    ReSalerbit not...

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

  • Reply To: ? on Setting default value to Year of previous month

    select year(eomonth(getdate(),-1))

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

  • Reply To: MERGE with (SERIALIZABLE) deadlocks occasionally

    giga123 wrote:

    Thanks for the suggestions. I am still curious to know why the MERGE statement deadlocks though. Any ideas?

    The way to restrict the number of rows the MERGE is applied...

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

  • Reply To: Daily Counts by Month based on Start/End date

    Since you're counting across months the quick way to generate the daily rows would be to use a tally function.  This uses dbo.fnTally which see this link for details. ...

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

Viewing 15 posts - 811 through 825 (of 1,419 total)