Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

howto for backing up a SQL Server database ? 2

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
What is the best way to backup a SQL Server database.
Do i just quiesce the database and copy the database file
somewhere?
 
Hi there,
Backing up the database file is of not a good use.
how you are going to do the backup is depends upon the individual requirements.
What we do is to take Daily Full Database Dump (i.e. data + transaction logs). And taking hourly (only in working hours) backup of transaction log.
This ensures that whenever we have a failure we can retreive the data back to atleast last hourly backup.
 
Development of a backup strategy is critical. The strategy chosen will vary from site to site and from database to database. For example, transaction backups for an OLTP DB will certainly be more frequent than for a DB that is only updated a few times per day. You would be wise to review backup topics in SQL BOL. I also recommend the following links for discussion of backup strategies.

Terry Broadbent
Please review faq183-874.

"The greatest obstacle to discovery is not ignorance -- it is the illusion of knowledge." - Daniel J Boorstin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top