Forum Replies Created

Viewing 15 posts - 511 through 525 (of 860 total)

  • RE: Index not rebuilding

    GilaMonster (3/19/2009)


    My criteria for clustered indexes - narrow, unchanging, unique, ever-increasing.

    That's a good one Gail. Explains everything just in 4 words.:-D

  • RE: Maintenance Plan - Rebuild Indexes OFFLINE

    ALTER INDEX ‘indexname’ ON ‘tablename’ REBUILD

    by default Rebuilding is OFFLINE unless you specify WITH clause as in:

    ALTER INDEX ‘indexname’ ON ‘tablename’ REBUILD WITH (ONLINE=ON)

  • RE: Regarding LDF file.

    shnex (3/19/2009)


    If I make log backups ...the log space will be reusable

    Yes, the VLF's are marked as truncated to make them reusable.

    , but in order to use the log information...

  • RE: SQL Server 2005 Activity Monitor

    By the way these codes are from Kalen daleney's Inside SQL server, I ahve used them and they are quite handy.

  • RE: SQL Server 2005 Activity Monitor

    Use this query to check the TOP10 waits

    SELECT TOP 10

    wait_type,

    waiting_tasks_count AS tasks,

    wait_time_ms,

    max_wait_time_ms AS max_wait,

    signal_wait_time_ms...

  • RE: Regarding LDF file.

    shnex (3/19/2009)


    So shrinking the log file has no side effects? Especially on performance

    Because I want to shrink it but I'm affraid of unknown side effects.

    I know that shrinking the database...

  • RE: Last Store procedures used or executed

    Oopps..thanks for correcting me Lowell. One of those days you see 🙁

  • RE: backup error

    MichaelJasson (3/18/2009)


    Hello all,

    I am getting follwoing error while taking backup on n\w as follows:

    Backup device failed - Operating system error; Desc: BackupDiskFile::OpenMedia: Backup device '\\BY2STGOCSQL02\Z$\MSSQL.1\MSSQL\Log\FinalOctaneXmlDB\FinalOctaneXmlDB_backup_200903170800.trn' failed to open

    I want...

  • RE: CEO

    Michael Valentine Jones (3/18/2009)


    Collecting bonuses and laying off workers while the business sinks like a stone.

    :w00t::-D:hehe:

  • RE: Last Store procedures used or executed

    Do you know this wonderful tool Default trace?

    You can enable it and script a table to load the trace files from the default trace to a custom created table....

  • RE: Restore SQL2008 database to SQL2005

    Nope, There is no way to restore it onto a lower version. SQL server never downgrades a database to a lower version. the only option here we have got is...

  • RE: sql 2005 backup retention

    dber (3/18/2009)


    I am backing up over the network to a share, and would like the job to automatically delete older backups on that particular share.

    It always advisable to...

  • RE: Migrate SQL Server 2000 databases to SQL Server 2005

    Restore your 2000 backup file on 2005, it would be upgraded automatically.

  • RE: Moving Tables between DBs

    Script out all your objects and then run them against your destination database.

  • RE: Full Transaction log

    Paul Paiva (3/18/2009)


    Good article and everyone has brought up some good points.

    Thanks for the feedback Paul.

    However we should also investigate additional reasons that the log filled up in the...

Viewing 15 posts - 511 through 525 (of 860 total)