"Save often" is one of the top rules in dealing with computers and data. The act of saving (aka backing up) and restoring is related to the acts of copying or moving. In databases, saving and restoring is done on different scales. A smaller scale may be as simple as copying a table before working on it. A larger scale may involve scheduling backups of a database and restoring it when needed.
While a lot of save & restore work can be done simply by using the Import or Export wizards in SQL Server, complications can arise quickly especially if there are identity columns or skipped ID numbers.
In larger scale back ups, there are two general recovery models:
In larger scale back ups, there are four kinds of back ups:
backup database myDatabase to buDevice.
backup database myDatabase read_write_filegroups to buDevice.
backup database myDatabase fileA, filegroupB to buDevice.
backup database myDatabase to buDevice with differential.
backup database myDatabase read_write_filegroups to buDevice with differential.
backup database myDatabase fileA, filegroupB to buDevice with differential.
backup database myDatabase with copy_only.Page Modified: (Hand noted: 2007-10-13 15:42:38Z) (Auto noted: 2007-11-17 06:43:42Z)