How to take the backup of live sql server 2005 express DB ? At any given time some transaction are in progress.
+1
A:
BACKUP DATABASE does this:
SQL Server uses an online backup process to allow a database backup while the database is still in use. During a backup, most operations are possible; for example,
INSERT
,UPDATE
, orDELETE
statements are allowed during a backup operation.Operations that cannot run during a database or transaction log backup include:
- File management operations such as the
ALTER DATABASE
statement with either theADD FILE
orREMOVE FILE
options.- Shrink database or shrink file operations. This includes auto-shrink operations.
Anton Gogolev
2010-02-16 18:13:15
good link which was very helpful.
HotTester
2010-02-17 06:15:38