Forum Replies Created

Viewing 15 posts - 1,816 through 1,830 (of 5,394 total)

  • RE: sql server dba

    Change the properties in the model database, then create the 20 databases simply using the CREATE DATABASE statement.

    Every new database is created from a copy of the model database.

    Don't forget...

  • RE: Avoiding a Cursor

    Definitely yes. Cursors are not as bad as they may seem, just make sure you're using them in the right way.

    The one used in sp_MsForEachTable is declared GLOBAL, but...

  • RE: Avoiding a Cursor

    Not trying to be picky, but sp_MsForEachTable uses a cursor internally.

  • RE: New Version of sqlserver

    GilaMonster (2/29/2012)


    Gianluca Sartori (2/29/2012)


    GilaMonster (2/29/2012)


    Gianluca Sartori (2/29/2012)


    SQL Server 2012 will be out in some days.

    The marketing launch event is in a couple of days. Availability of the bits, probably not...

  • RE: New Version of sqlserver

    GilaMonster (2/29/2012)


    Gianluca Sartori (2/29/2012)


    SQL Server 2012 will be out in some days.

    The marketing launch event is in a couple of days. Availability of the bits, probably not so much.

    End of...

  • RE: Are the posted questions getting worse?

    Oh my!

    This is hlarious! I had never noticed it before:

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (2/29/2012)


    Gianluca Sartori (2/29/2012)


    I partially agree. Sometimes head meets wall years after the discussion and there's not much left to do at that point.

    Saying "I told you so"...

  • RE: New Version of sqlserver

    SQL Server 2012 will be out in some days.

    The latest version to date is SQL Server 2008 R2.

  • RE: Case Statement on IN Clause

    I suppose the values 3 and 4 should be associated with 'HOSTNAME3' rather than 'HOSTNAME2'.

    This is how I would do it:

    SELECT *

    FROM Delivery AS DLV

    WHERE EXISTS (

    ...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (2/29/2012)


    Gianluca Sartori (2/29/2012)


    Revenant (2/28/2012)


    Gianluca Sartori (2/28/2012)


    Lynn Pettis (2/28/2012)


    I guess we need to start encouraging more people to consider DBA work as a career choice.

    What??? You mean less people!

    What...

  • RE: poor performance running select on non indexed views

    Tempdb probably blows because of excessive parallelism. I've seen this happening quite often.

    This means you should review your indexes, because the optimizer most likely chooses to ignore some of those...

  • RE: Are the posted questions getting worse?

    Revenant (2/28/2012)


    Gianluca Sartori (2/28/2012)


    Lynn Pettis (2/28/2012)


    I guess we need to start encouraging more people to consider DBA work as a career choice.

    What??? You mean less people!

    What would I do for...

  • RE: Protecting Stored Procedures and Where to Put Processing

    Moving logic in CLR or application won't protect the code, that can always be disassembled and reverse-engineered.

    Personally, I would try to avoid the "security by obscurity" approach and I would...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (2/28/2012)


    I guess we need to start encouraging more people to consider DBA work as a career choice.

    What??? You mean less people!

    What would I do for a living with...

  • RE: Trigger or Insert issue: Not generating the correct data

    ram_kamboz2k7 (2/28/2012)


    if bigint is an issue, can nvarchar be used for the telephone number?

    Thanks

    varchar would be a better choice. I highly doubt you will ever need to store unicode...

Viewing 15 posts - 1,816 through 1,830 (of 5,394 total)