Forum Replies Created

Viewing 15 posts - 1,891 through 1,905 (of 7,504 total)

  • RE: Drive letter Limitation will be solved by using Mount points or not?

    We use mount points on almost all of our clusters because of that reason.

    We haven't experienced issues with it over the years.

    However, you need to take into account you need...

  • RE: Are the posted questions getting worse?

    Tom.Thomson (7/8/2011)


    ALZDBA (7/8/2011)


    Steve Jones - SSC Editor (7/8/2011)


    TGIF

    Actually not so much. Leaving for the UK on Sunday, will be out of touch for most of the next week. Behave.

    Keep in...

  • RE: Are the posted questions getting worse?

    SQLkiwi (7/8/2011)


    --- never mind ---

    Is that a new "Knock, Knock" ?

  • RE: shut down SQL server

    just to add to the previous replies...

    for such kind of maintenance, I always advise to disable the services ( or take the cluster resources offline ) so they don't auto...

  • RE: Database in Suspect Mode

    did you take your db offline _before_ the file copies / lun copies?

  • RE: database snapshot

    FYI:

    /*

    DMV Database File Size on Disk.sql

    */

    Select IVFS.database_id

    , DB_NAME(IVFS.database_id) as DBName

    , IVFS.file_id

    ,...

  • RE: Can't restore backup from 2005 server to 2008 server

    Elizabeth.Block (7/7/2011)


    This is a restore we've done through SSMS gui every month for years. ....

    Why aren't you using a sqlagent job with a job proxy account that can read from...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (7/8/2011)


    TGIF

    Actually not so much. Leaving for the UK on Sunday, will be out of touch for most of the next week. Behave.

    Keep in mind to...

  • RE: MEMORY USAGE HIGH

    shanila_minnu (7/8/2011)


    its 64 bit

    ALZDBA (7/8/2011)


    ...

    3) if this is a 64-bit instance, don't enable AWE and set max server memory !

    Solution,

    exec sp_configure 'max server memory (MB)', yournumberofMBforRAM ;

    RECONFIGURE

    go

    checkpoint

    go

  • RE: MEMORY USAGE HIGH

    First question: is your instance a 32-bit instance ??

    2) The first thing you need to do before enabling AWE is to set "max server memory" for your instance or it...

  • RE: DBCC Shrinkfile not working

    are you shrinking the .log file or one of the .mdf/.ndf files ?

  • RE: Temp Table and column defination.

    John Mitchell-245523 (7/8/2011)


    ... You should be table to build ...

    professional dyslexic :hehe:

    Happens to me all the time :blush:

  • RE: Mirroring mystery - can't quite figure it out

    I would check out the applications connection string.

    If it states the "failover partner=serverb" it will just be redirected without a problem.

    If it lacks the "failover partner" keywords, something is wrong...

  • RE: How to use Trigger

    Please elaborate on what you are actually trying to do !

    Triggers can perform queries, but keep the transaction scope and locking in mind !

    Special objects _in_ triggers are the "inserted"...

  • RE: multiple inner join on the same table

    - create primary keys for your tables and foreign keys to support your data integrity !

    ( very nice ref on how SQLServer takes advantage of this: Do...

Viewing 15 posts - 1,891 through 1,905 (of 7,504 total)