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.

 All Forums
 SQL Server 2008 Forums
 SQL Server Administration (2008)
 Mix of Backup-exec & SQL Server backups

Author  Topic 

dexter.knudson
Constraint Violating Yak Guru

260 Posts

Posted - 2009-05-08 : 01:19:14
Does backup exec maintain a separate sequence of tran log backups?

eg consider this scenario
1. Sun - full Backup Exec/Avamar to tape
2. Mon - tran log Backup Exec/Avamar to tape
3. Tue - full Backup using SQL Server
4. Wed - tran log backup using SQL Server
5. Thu - tran log Backup Exec/Avamar to tape
6. Fri - tran log backup using SQL Server

To restore to Thu from Sun, do we only need to restore 1,2,5 or do we need 1,2,4,5

And to restore to Fri from Tue do we only need 3,4,6 or do we need 3,4,5,6

Thanks

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-05-08 : 14:13:06
There is no separate sequence for Backup Exec. If you perform a transaction log backup with it and also are using BACKUP LOG, then you'd have to grab the tape file plus the disk files. Do not mix packages with transaction log backups. Use or the other, but never both.

I highly recommend using SQL Server to do the backups and then using NetBackup (or whatever your tape solution is) to sweep those SQL backup files to tape.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page

dexter.knudson
Constraint Violating Yak Guru

260 Posts

Posted - 2009-05-10 : 17:22:04
Thanks
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-05-10 : 18:29:47
You're welcome.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

"Let's begin with the premise that everything you've done up until this point is wrong."
Go to Top of Page
   

- Advertisement -