Forum Replies Created

Viewing 15 posts - 8,761 through 8,775 (of 9,253 total)

  • RE: CHECKDB and REINDEX

    ssismaddy (11/18/2008)


    It is replicated and we can't change the recovery model....But I m all set now with the dynamic views above....Thank you

    even if it is replicated you can still change...

  • RE: Cannot create a new trace

    to delete a trace you have to stop and close it

    exec sp_trace_setstatus traceid, 0 --stop trace

    exec sp_trace_setstatus traceid, 2 --close trace

    all of this is no good until you know the...

  • RE: vmware cpu vs core - understanding the licensing

    SQL2005 must be licenced per virtual processor. However if you licence the physical sockets on the host box you are covered for unlimited virtual cpus\VM's on that host

    check for more...

  • RE: SQL Server Newbie Needs Advice on Setup and Backup

    Leo (11/17/2008)


    Hi Perry,

    I have similar situation at work. My IT guys build a Test Server for SQL 2005 and he said that we have 2 400GB x RAID 5 drives...

  • RE: CHECKDB and REINDEX

    it's also worth noting that under bulk logged and simple recovery models the following are minimally logged

    ALTER INDEX

    CREATE INDEX

    we always set our db recovery models to bulk logged, rebuild indexes...

  • RE: Recommend a good SQL 2005 Book?

    i have books from Wrox which are fantastic

    Professional SQL 2005 programming

    Professional SQL2005 performance tuning

    I recommend these. They go into a lot of detail about the database engine (datafiles, logfiles,...

  • RE: Backup faild..Amazing reason of space (Actually i have seen that there are lots of space on the disk.)

    it could be the backup is larger than the free space available!!

  • RE: Difference between Log shipping and DB mirroring

    database mirroring provides a warm standy copy of the database.

    Log shipping works differently, log files are shipped to a remote database and applied. The database has 1 of 2 states,...

  • RE: SQL Server Newbie Needs Advice on Setup and Backup

    samuel.tillman (11/10/2008)


    6x72GB HHDs. What I have been asked to do specifically is setup the raid configuration and the backup scheme for the Databases and Transaction Logs.

    RAID 5 is ideal for...

  • RE: DR Strategy with virtual machines?

    Marios Philippopoulos (11/16/2008)


    I have heard that Microsoft does not officially support virtualized SQL Server installations.

    untrue as far as i am concerned. I had a call open recently with MS...

  • RE: DR Strategy with virtual machines?

    Ninja's_RGR'us (11/15/2008)


    Wow, amazing stuff, you guys should write an article about this!!!

    i have been tempted for some time 😉

  • RE: How do I set up scripts to run daily?

    why not just run the scripts through a sql job, no need to use SSIS

  • RE: LOG file NOT shrinking

    although you ran a log backup there could be an active transaction occupying the end of the log file

    run

    dbcc opentran to check for open transactions

    then

    dbcc loginfo

    a status of 2...

  • RE: DR Strategy with virtual machines?

    Ninja's_RGR'us (11/15/2008)


    Any recommended products from your experience?

    personally you cant beat VMWare VI3. There are a number of players in this arena now, but remember VMWare have a 10 year +...

  • RE: DR Strategy with virtual machines?

    you need to research and decide on a virtualisation product and storage method first then build from there as the hypervisor and storage mediums form the foundation of the systems

Viewing 15 posts - 8,761 through 8,775 (of 9,253 total)