570 pts.
 Incremental backup in SQL server 2005 and SQL Server 2005 express
Question: a) steps to backup the daily incremental in sql server 2005. b) steps to backup the daily incremental in sql server 2005 express.

Software/Hardware used:
ASKED: August 17, 2010  6:04 AM
UPDATED: August 19, 2010  2:41 AM

Answer Wiki:
SQL Server doesn't have incremental backups. We have Differential backups instead. A differential backup is all the changes since the last full backup. Use the BACKUP DATABASE command just like you would to do a full backup but add in the DIFFERENTIAL flag. <pre>BACKUP DATABASE YourDatabase TO DISK='D:PathToYourFile.bak' WITH DIFFERENTIAL</pre> This can be done with any version and/or edition of Microsoft SQL Server. You can then schedule this to run using a SQL Agent Job (SQL 2008+ doesn't include the Agent in the Express edition).
Last Wiki Answer Submitted:  August 18, 2010  6:47 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:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

thank you so much, Mrdenny

 570 pts.