Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Mondeo
Constraint Violating Yak Guru
287 Posts |
Posted - 2007-08-15 : 09:57:21
|
I run this every night in a stored procBACKUP DATABASE Db1TO DISK = @path1WITH INITBACKUP DATABASE Db2TO DISK = @path2WITH INITBACKUP DATABASE Db3TO DISK = @path3WITH INITBACKUP DATABASE Db4TO DISK = @path4WITH INITIf my server fails, will these backups be all I need to completely restore the databases to a new SQL 2005 Express server?Someone mentioned I also need to back up the transaction logs? Could someone confirm?Thanks |
|
ashley.sql
Constraint Violating Yak Guru
299 Posts |
Posted - 2007-08-15 : 10:02:05
|
if you are taking complete backup you do not need transactional backup.any changes made after this backup will be lost if the DB fails and you try to restore.go to www.DBArecovery.com you will see a very good description of everything you need to know about backup and restoreAshley Rhodes |
|
|
Mondeo
Constraint Violating Yak Guru
287 Posts |
Posted - 2007-08-15 : 11:04:11
|
Our data doesn't change often, as our db's are mostly read only. So a backup of the previous day would be fine.Thanks |
|
|
ashley.sql
Constraint Violating Yak Guru
299 Posts |
Posted - 2007-08-15 : 11:09:41
|
just take a complete backup everyday at end of the day if you want.of you can do it few times a day depending on your need.if there are not much changes you do not need to have transactional backup. just restoer from complete backup and you will be fine.Ashley Rhodes |
|
|
Mondeo
Constraint Violating Yak Guru
287 Posts |
Posted - 2007-08-15 : 12:13:05
|
Thanks,Does this command perform a complete backupBACKUP DATABASE Db1TO DISK = @path1WITH INITThanks |
|
|
ashley.sql
Constraint Violating Yak Guru
299 Posts |
Posted - 2007-08-15 : 13:35:07
|
Yes it does. Also INIT will overwrite the existing backup if that is what you want.Ashley Rhodes |
|
|
|
|
|