Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: Filetable paths

    gbritton1 (5/13/2014)


    I'm still not sure how to extract that actual path (i.e. conventional Windows path name)

    During my investigation on this question, I came across documentation on the FileTableRootPath function. "It...

  • RE: Today's Random Word!

    Ed Wagner (5/7/2014)


    TomThomson (5/7/2014)


    Stuart Davies (5/7/2014)


    BWFC (5/7/2014)


    Litter

    letter

    latter

    Ladder

    Jacob

  • RE: Today's Random Word!

    whereisSQL? (5/6/2014)


    Ed Wagner (5/6/2014)


    SQLRNNR (5/6/2014)


    Revenant (5/6/2014)


    Ed Wagner (5/6/2014)


    crookj (5/6/2014)


    SQLRNNR (5/6/2014)


    Stuart Davies (4/29/2014)


    Zeus

    dog

    Day Afternoon

    Beach

    Boys

    Beatles

    Bug

    Squish

    (y) Boots

    ("The Strange Tale of the Crack Fox")

  • RE: Max with distinct two columns and corresponding third column

    Sean Lange (5/6/2014)


    bkmsmith (5/6/2014)


    Here is another option.

    create table abc_test

    (

    id int

    ,runs int

    ,date1 datetime

    )

    ;

    insert into abc_test

    (

    id

    ,runs

    ,date1

    ) values

    ('24','1','2013-12-05 10:00:01.000'),

    ('24','2','2013-12-05 10:00:02.000'),

    ('25','1','2013-12-05 10:00:03.000'),

    ('25','2','2013-12-05 10:00:04.000'),

    ('25','3','2013-12-05 10:00:06.000'),

    ('26','1','2013-12-05 10:00:07.000'),

    ('26','2','2013-12-05 10:00:08.000'),

    ('27','1','2013-12-05 10:00:09.000')

    ;

    SELECTT2.id

    , [runs] = T2.MaxRuns

    , T1.date1

    FROMdbo.abc_test T1

    INNER...

  • RE: Max with distinct two columns and corresponding third column

    Here is another option.

    create table abc_test

    (

    id int

    ,runs int

    ,date1 datetime

    )

    ;

    insert into abc_test

    (

    id

    ,runs

    ,date1

    ) values

    ('24','1','2013-12-05 10:00:01.000'),

    ('24','2','2013-12-05 10:00:02.000'),

    ('25','1','2013-12-05 10:00:03.000'),

    ('25','2','2013-12-05 10:00:04.000'),

    ('25','3','2013-12-05 10:00:06.000'),

    ('26','1','2013-12-05 10:00:07.000'),

    ('26','2','2013-12-05 10:00:08.000'),

    ('27','1','2013-12-05 10:00:09.000')

    ;

    SELECTT2.id

    , [runs] = T2.MaxRuns

    , T1.date1

    FROMdbo.abc_test T1

    INNER JOIN

    (

    SELECTid

    , [MaxRuns] =...

  • RE: Hash Match

    Hugo Kornelis (5/1/2014)

    The TechNet documentation quoted above describes the ideal behaviour of optimizer + execution engine. It even explicitly says so: "the query optimizer assigns these roles so that the...

  • RE: Hash Match

    gbritton1 (5/1/2014)


    Before I answered this question, I read

    It reads, in part:

    The hash join has two inputs: the build input and probe input. The query optimizer assigns these roles so that...

  • RE: Keeping my cardinality

    +1

    This is the link that I referenced when researching this QOTD, and found it very informative.

    Thanks for another great...

  • RE: DATETIME 2

    patrickmcginnis59 (8/2/2012)


    bitbucket-25253 (8/2/2012)


    I am rather surprised at the low percentage of correct answers.

    Correct answers: 37% (76)

    Incorrect answers: 63% (129)

    Total attempts: 205

    And the implications this could have to...

  • RE: Temp Tables

    sestell1 (6/25/2012)


    mtassin (6/25/2012)


    sestell1 (6/25/2012)


    I was always under the impression that there was no reason to create indexes on table variables because they exist only in memory.

    Does anyone know what SQL...

  • RE: Does the Job Matter To You?

    I could completely relate to the comment in the article that 'job titles held no meaning for him'. Given that I have been working as a 'technical consultant' for the...

  • RE: More, More, More

    I would most likely not be interested in live/video content. I predominantly consume the articles, scripts, and editorials, and have found these resources to be worthwhile. Browsing through the forums...

Viewing 12 posts - 1 through 12 (of 12 total)