Forum Replies Created

Viewing 15 posts - 916 through 930 (of 2,897 total)

  • RE: How to release space used by a table?

    If you don't absolutely need the space recovered, just leave it alone. The space is already allocated so when the table grows it won't need to allocate new space for...

  • RE: Database Growing Suddenly

    Probably could go at the same time, but why ?

    I run in series, not parallel:

    Rebuild index

    Rebuild index

    backup t-log

    Rebuild index

    Rebuild index

    backup t-log

  • RE: Database Growing Suddenly

    I take transaction log backups very frequently inbetween reindexing steps to prevent big .ldf growth.

  • RE: full backup failed

    Bad path specified ?

    Can you run the code manually ?

  • RE: Need help with DB migration

    I think Backup & Restore would be the simplest method. You would need to resync the logins afterwards.

  • RE: Too much Log File Size

    In our production databases, transaction log backups are usually every 15 or 20 minutes.

    From Gail's article above"

    " If the database is in full or bulk-logged recovery model then log backups...

  • RE: Scripts

    Some environments allow users and developers to run queries against production, or have development on the same server, or allow other application and processes to run on the production SQL...

  • RE: SQL Clustering

    How about Log Shipping ?

    http://technet.microsoft.com/en-us/library/cc966381.aspx

    Or did someone already mention it ?

  • RE: delete records from tables

    "SET ROWCOUNT" will be deprecated at some point, so I now use "DELETE TOP (2500) TableName"

  • RE: abandon Redgate for Compellent?

    You could take full backups, & frequent differentials, and more frequent logs. Then you would restore the full, most recent diff, and just the logs since the diff. And...

  • RE: abandon Redgate for Compellent?

    crainlee2 (5/1/2011)


    Craig,

    We decided not to implement point-in-time recovery. Business requirements dictated that being up and online was more important than some data loss, so we use the Simple Recovery model...

  • RE: Delete files that are older than 7 days

    You could use a maintenance plan if you know the file extensions... Is that cheating ?

  • RE: Moving Indexes to a Seperate Filegroup

    Steve Jones - SSC Editor (4/28/2011)


    One thing to keep in mind, if you are looking for partial database recovery in a DR situation, moving the indexes away from the table...

  • RE: Delete Query

    Ninja's_RGR'us (4/28/2011)


    Himmat Singh (4/28/2011)


    1)use db_name

    2) set the database recovery to simple - sp_dboption 'db_name', 'trunc. log on chkpt.', true

    3) write a store produre to delete about 10000 per loop....

  • RE: Delete Query

    Ninja's_RGR'us (4/26/2011)


    The best alternative is to delete in smaller chunks and run tlog backups within the loop.

    Yes, that is how I do it, with no problems. It also gives...

Viewing 15 posts - 916 through 930 (of 2,897 total)