Forum Replies Created

Viewing 15 posts - 4,501 through 4,515 (of 14,953 total)

  • RE: Are the posted questions getting worse?

    jcrawf02 (3/25/2011)


    Stefan Krzywicki (3/25/2011)


    GSquared (3/25/2011)


    jcrawf02 (3/25/2011)


    GSquared (3/25/2011)


    GilaMonster (3/25/2011)


    I just realised I don't have an April Fools day blog post planned. 🙁

    So start a completely serious post with, "I had this...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (3/25/2011)


    GSquared (3/25/2011)


    Stefan Krzywicki (3/25/2011)


    GSquared (3/25/2011)


    [I'm a DM. Have been since the mid-70s when D&D first came out. I'm essentially infinitely evil. 🙂 Have to be,...

  • RE: Running Total using Quirky Update problem storing previous row values

    Honestly, for sequential code like this and other running totals problems, I avoid the quirky update and use CLR assemblies, or a Static or Fast Forward cursor. Those are...

  • RE: sub query or self - join (or perhaps both ??)

    Don't do the unions thing. It's a pain to modify/extend/maintain.

    create table dbo.Combos (

    Diag1 char(10) not null,

    Diag2 char(10) not null,

    primary key (Diag1, Diag2));

    GO

    insert into dbo.Combos... -- put the valid Diag...

  • RE: Are the posted questions getting worse?

    GilaMonster (3/25/2011)


    GSquared (3/25/2011)


    GilaMonster (3/25/2011)


    GSquared (3/25/2011)


    I'm a DM. Have been since the mid-70s when D&D first came out. I'm essentially infinitely evil. 🙂 Have to be, for the...

  • RE: Are the posted questions getting worse?

    GilaMonster (3/25/2011)


    GSquared (3/25/2011)


    I'm a DM. Have been since the mid-70s when D&D first came out. I'm essentially infinitely evil. 🙂 Have to be, for the entertainment value.

    RBDM!

    You...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (3/25/2011)


    GSquared (3/25/2011)


    [I'm a DM. Have been since the mid-70s when D&D first came out. I'm essentially infinitely evil. 🙂 Have to be, for the entertainment...

  • RE: sub query or self - join (or perhaps both ??)

    Put the combos in a table, join the table to itself via that, you'll have a solid, extensible solution that can easily accommodate more combos if/when business rules change, without...

  • RE: Are the posted questions getting worse?

    jcrawf02 (3/25/2011)


    GSquared (3/25/2011)


    GilaMonster (3/25/2011)


    I just realised I don't have an April Fools day blog post planned. 🙁

    So start a completely serious post with, "I had this idea for an April...

  • RE: Problem: how to realize custom order

    It's a relatively simple mathematical pattern, but more rules are needed to have a complete solution.

    For example, what would you do with a group that has more entries than can...

  • RE: sub query or self - join (or perhaps both ??)

    The CTE version will work. My first instinct was a simple Inner Join between two iterations of the table.

  • RE: Trace Table Query

    ananda.murugesan (3/25/2011)


    Thanks for reply--

    Group by function - need to specify for all select column..

    Why? For this query, it's not doing anything useful that I can see.

  • RE: Login failed for user 'sa'. (Microsoft SQL Server, Error: 18456)

    Sounds like the sa password got changed. Change it back, or reset it and rework your application or whatever is using it.

    You shouldn't have an application using sa anyway,...

  • RE: Are the posted questions getting worse?

    Gianluca Sartori (3/25/2011)


    Fal (3/25/2011)


    I just popped along to the Guiness World Records website to see if we could lodge The Thread under a Longest Web Thread category or similar. ...

  • RE: Trace Table Query

    Why are you grouping at all? Group By is for controlling data break-down on aggregate functions.

Viewing 15 posts - 4,501 through 4,515 (of 14,953 total)