Forum Replies Created

Viewing 15 posts - 6,931 through 6,945 (of 9,399 total)

  • RE: Are the posted questions getting worse?

    The spam has hit with a vengeance. I'm inclined to agree with a post a while back that it's an actual person, not an automated process. The rate...

  • RE: Are the posted questions getting worse?

    Greg Edwards-268690 (11/22/2014)


    Jeff Moden (11/22/2014)


    David Burrows (11/21/2014)


    Well Jeff would have to employ GBAG (Glass By Agonizing Glass) or get an Overflow Exception 😀

    Heh... I've reached the "Overflow Exception" a couple...

  • RE: Are the posted questions getting worse?

    Now that is just too funny - a bar called R-Bar. Jeff would have to bring the industrial pork chop launcher and spike the pork chops with high explosives....

  • RE: find total disk size

    spaghettidba (11/21/2014)


    Ed Wagner (11/21/2014)


    I must admit I was excited when I saw this, but sys.dm_os_volume_stats is for 2012 and later. I'm still on 2008, so I'm out of luck.

    Thank...

  • RE: Real World T-SQL Tricks

    lshanahan (11/21/2014)


    Recently been trying to wrap my brain around APPLY and it's sibling CROSS APPLY as I have some situations where they could prove useful.

    I'm using 2005 at the moment,...

  • RE: Real World T-SQL Tricks

    LoudClear (11/21/2014)


    I, like Steve, have been intentional about trying to stretch my SQL skills this year. Part of that plan has been that I now follow a number of...

  • RE: Conversion of Date from legacy systems with 7 and 6 digit format to DD/MM/YYYY format

    There's no shortage of ways to do the actual conversion, but I think the most important point to understand the data type to use. If you store your dates...

  • RE: find total disk size

    spaghettidba (11/21/2014)


    You don't need xp_fixeddrives any more:

    SELECT DISTINCT vs.volume_mount_point

    , vs.logical_volume_name

    , vs.total_bytes

    , vs.available_bytes

    FROM sys.master_files AS mf

    CROSS APPLY sys.dm_os_volume_stats(mf.database_id, mf.file_id) AS vs

    I must admit I was excited when I saw this, but...

  • RE: Real World T-SQL Tricks

    I use tally tables and APPLY all the time. They're very efficient approaches to accomplishing the work that's needed.

    I've used symmetric keys, but not nearly as much. They...

  • RE: Index Behaviour

    Koen Verbeeck (11/21/2014)


    Nice question, not so great explanation.

    +1. Good question, but the explanation could have been a whole lot better.

  • RE: Today's Random Word!

    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    anise

    Fennel

    seed

    Growth

    hormone

    Cheat

    death

    Magnetic

  • RE: Today's Random Word!

    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    anise

    Fennel

    seed

    Growth

    hormone

    Cheat

  • RE: Today's Random Word!

    SQLRNNR (11/20/2014)


    Ed Wagner (11/20/2014)


    SQLRNNR (11/20/2014)


    anise

    Fennel

    seed

    Growth

  • RE: Today's Random Word!

    SQLRNNR (11/20/2014)


    anise

    Fennel

  • RE: Odd Man Out

    Sean Lange (11/20/2014)


    Koen Verbeeck (11/20/2014)


    Toreador (11/20/2014)


    GROUPING_ID was introduced in SQL2008. The others were all available in SQL2005.

    And VARP is the only function with a name less than 5 characters! :w00t:...

Viewing 15 posts - 6,931 through 6,945 (of 9,399 total)