Forum Replies Created

Viewing 15 posts - 166 through 180 (of 230 total)

  • RE: The mysteries of life, the beginning of the 20th century

    Can't really say anything positive about a question which relies on regional settings for correct answer, and which doesn't really promulgate any useful knowledge. Why would I want to do...

  • RE: Holidays as Benefits

    In Sweden, the legal minimum is 25 days of fully paid vacation, but many have 30 or more paid days off. All countries in the European Union have at least...

  • RE: The Identity Limit

    More tsk, tsk.

    There, now I've got the two points.:hehe:

  • RE: The Identity Limit

    Tsk, tsk.

  • RE: NULL Aggregates

    Mighty (1/7/2015)


    I think 1 + 2 + 3 + NULL is the same as 1 + 2 + 3 + 0.

    In relation to this, I don't fully agree. For me...

  • RE: NULL Aggregates

    Not fond of this question.

    COUNT(*) counts NULL:s, but COUNT(<expression>) doesn't.

    select count(*), count(a)

    from (values (1), (NULL)) x(a)

    And GROUPING most certainly considers NULL:s.

  • RE: Memory

    Minimum:

    Express Editions: 512 MB

    All other editions: 1 GB

    Recommended:

    Express Editions: 1 GB

    All other editions: At least 4 GB and should be increased as database size increases to ensure optimal performance.

    Since the...

  • RE: DONEPROC

    Well, if you don't like any of the available clients API:s, or if you're implementing SQL Server support on a new platform, you're going to have to know this very...

  • RE: DONEPROC

    Quite frankly: If you think you have to know this, you're very likely doing something wrong. Still, I've earned yet another very arcane bragging point.:hehe:

  • RE: Supported spatial data formats

    I'm currently hiring. I'd like to know which 9% selected the CHTM option:hehe:

  • RE: While loop Testing

    I think the only thing I take away from this question is confirmation that dynamic SQL must be avoided, but if you need it you should at least name your...

  • RE: BUFFER POOL EXTENSION EDITIONS

    Interesting question. Too bad none of the answers are correct. BI edition does not support buffer pool extension.

    Oh, and your reference link doesn't work.

    http://msdn.microsoft.com/en-us/library/cc645993(v=sql.120).aspx

  • RE: SOUNDEX

    If SOUNDEX() as implemented in SQL Server was remotely useful outside of English-speaking countries I might care one way or the other. As it stands it's one of the quaint...

  • RE: Using Max()

    Ford Fairlane (11/7/2013)


    Very good question - got caught out with as well. Should have realized that with out the where clause that each max() is evaluated individually... nice to learn...

  • RE: "NOT IN" Operator and Three Valued Logic

    Well, good question, but the correct alternative was a bit misleading. You don't get a zero back, you get an empty result set. That's a different answer.

Viewing 15 posts - 166 through 180 (of 230 total)