16,755 pts.
 Best way to back up SQL Server 2008 database?
What's the best way to back up my SQL Server 2008 database? We are currently backing up the SQL data files during off hours but soon we'll be going 24/7 and we'll need to use maintenance plans and shadow copy. Can someone provide help?

Software/Hardware used:
SQL Server 2008
ASKED: July 16, 2010  7:50 PM
UPDATED: July 16, 2010  8:32 PM

Answer Wiki:
First stop backing up the SQL data files. Unless you are shutting down the SQL Server first, you aren't doing anything that is usable. Use the BACKUP DATABASE command to backup the database to disk, then move that backup off to tape. If you need point in time recovery then put the database into full recovery mode, and schedule log backups via the BACKUP LOG command to run through out the day. The log should be backed up how ever often you need to in order to meet your recovery requirements. In other words, if you can only afford to loose 10 minutes of data, then you need to backup the log every 10 minutes. Make sure that the backups are written to a disk other than the one that the SQL Server data files are on. Shadow copies aren't supported with SQL Server as SQL Server never releases the locks on the files.
Last Wiki Answer Submitted:  July 16, 2010  8:32 pm  by  Denny Cherry   64,520 pts.
All Answer Wiki Contributors:  Denny Cherry   64,520 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _