Forum Replies Created

Viewing 15 posts - 31 through 45 (of 285 total)

  • RE: SQL 2008 T-SQL

    Pretty Good question! I liked it. Shows off some of the new enhancements in SQL2008...:-)

  • RE: Protection Close To Home

    Steve Jones - Editor (8/23/2009)


    Interesting approaches. I still think that having a non-RAID, drivespace like protection makes good sense for home, especially as it can be hard to find drives...

  • RE: Protection Close To Home

    pgolds (8/21/2009)


    I've been using Mozy for several years now and it's been great. It's configured to back up all my data and it backs up automatically when the computer...

  • RE: Protection Close To Home

    Ben Moorhouse (8/21/2009)


    I'm thinking I need to do some kind of off-site stuff, but it will just be things like photos and written data (the stuff which can't just be...

  • RE: Protection Close To Home

    Steve,

    I'm paranoid about losing stuff. I have RAID (mirroring) on my home pc, a NAS device I use for backup and filesharing and external drives I use for backups....

  • RE: cast, convert and float!

    rja.carnegie (8/20/2009)


    Mark Horninger (8/20/2009)


    Probably should use SET vs. SELECT. Think I saw that as being deprecated, but I might be wrong?

    I was on that in another discussion. It...

  • RE: Test Drive

    Steve Jones - Editor (8/20/2009)


    I tend to agree with Jason here. What you do on your time off, really isn't the business of your employer, provided you are not representing...

  • RE: cast, convert and float!

    Probably should use SET vs. SELECT. Think I saw that as being deprecated, but I might be wrong?

  • RE: Test Drive

    Mike in Michigan (8/19/2009)


    I can just picture companies deliberately bringing in people for a few days at low wages and no benefits and doing it over and over and over...

  • RE: char to datetime!

    Actually, you could do an implicit or explicit conversion....

    'implicit'

    SET @DateTimeVariable = @CharVariableContainingDateString

    vs.

    'explicit'

    SET @DateTimeVariable = convert(datetime,@CharVariableContainingDateString)

  • RE: Test Drive

    Interesting concept!

    I don't think I'd drop a fulltime gig to go to a 1 week contract, but most companies have at lease some sort of probationary period. But it...

  • RE: Ten steps to migrate databases between servers in a .Net environment

    Pretty interesting approach! This seems like it would work smoothly.

    Did you run into any snags along the way?

  • RE: Twenty tips to write a good stored procedure

    Andy DBA (8/10/2009)


    GilaMonster (8/10/2009)


    The equivalent query using exists is this:

    SELECT * FROM employee WHERE NOT EXISTS (SELECT 1 FROM emp_detail where employee.emp_no = emp_detail.emp_no)

    That will probably run much the same...

  • RE: Twenty tips to write a good stored procedure

    rja.carnegie (8/10/2009)


    gregory.anderson (8/10/2009)


    Grasshopper, by the way, I'm not putting them in master.....just using a dbname as an example (obviously a bad example).

    Thanks for your response, but I'm having a little...

  • RE: Twenty tips to write a good stored procedure

    I think you missed a very important point I try to stress to all my developers (unless I missed it in the list), and thats to review your query plan...

Viewing 15 posts - 31 through 45 (of 285 total)