Forum Replies Created

Viewing 15 posts - 286 through 300 (of 536 total)

  • RE: The Percent Sign in T-SQL

    sknox (2/28/2011)


    mtassin (2/28/2011)


    I got this right but...

    SELECT 0%0

    gives

    Msg 8134, Level 16, State 1, Line 1

    Divide by zero error encountered.

    So it seems you can use it to divide 0 by 0...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Disk Partitions

    Top notch question! As I've mentioned earlier, I like these hardware related questions - not that I'm a hardware expert. I'll have to learn more about this. ...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: why the avatar picture you use

    My previous avatar was of a Siberian Husky - love those dogs and currently have one.

    I liked the movie Up!, and I'm not exactly a spring chicken 'round...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: You Should Know

    Excellent point about setting up a staging server and the disaster recovery process. Go Steve!

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Random Recipes

    I've tried to resist learning how to cook many desserts, but I had to try this one! It's actually Emeril's recipe for Lemon Icebox pie. (No garlic, but...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Random Recipes

    Mmmm, I see lots of garlic in a most of these recipes! 'Gotta be good! Garlic's fantasitc.

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Order by months (financial year rather than calendar year)

    I have to deal with this kind of thing at times. You can also put a case statement into your ORDER BY clause such that the order is modified....

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Indexing Lookups

    I really liked this question. (Hey, I got one right! :-P)

    Overall, I like all your questions Steve. Yes, more like this.

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: What Brand of Desktop is best these days?

    paul.knibbs (2/2/2011)


    ReadyBoost is more of a replacement for insufficient RAM than anything...if you have plenty of RAM you won't see much benefit from using it. Oh, and you need a...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: What Brand of Desktop is best these days?

    alen teplitsky (2/2/2011)


    if you haven't heard, Intel just announced a recall of almost all Sandy Bridge Intel chipsets

    Which makes me happy that I went with AMD this time! :w00t:

    By...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: UPDATE using a self-join

    I was a foxpro programmer for a long time. I think It was a good RDBMS. But it did have its issues. At a FoxPro conference I...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Difference between #temp temporary tables and @temp table variables

    GilaMonster (1/31/2011)


    Do you understand how SQL uses the buffer pool for data cache? Need to see where to start explanation from.

    Being in the buffer pool and being on disk are...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Difference between #temp temporary tables and @temp table variables

    GilaMonster (1/31/2011)


    mtillman-921105 (1/31/2011)


    Apparently, SQL will use memory instead when it can. If so, that's an intelligent design since of course writing to disk is slower than using memory. ...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Difference between #temp temporary tables and @temp table variables

    GilaMonster (1/29/2011)


    Unfortunately that article is completely wrong on many points.

    Both temp tables and table variables are created in tempDB and assigned space in that database. They are not memory only.

    According...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

  • RE: Difference between #temp temporary tables and @temp table variables

    Here is a short blog post showing the differences:

    http://www.sqlservercurry.com/2010/03/temporary-tables-vs-table-variables.html

    Table variables can be written to the temp db, but they can also perform better with small data sets.

    p.s., I don't...

    The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge. - Stephen Hawking

Viewing 15 posts - 286 through 300 (of 536 total)