April 2, 2020 at 8:23 pm
The hospital that I work for has started to use Veeam for backing up our physical and virtual servers, including SQL Server. I have years of SQL developer/architect experience, but am relatively new in the DBA role.
We are using a mix of SQL Server 2012-2017.
Veeam's setting for backing up transaction logs (for a database in FULL recovery model) is to TRUNCATE the log with each 'backup'.
DB's are in FULL recovery model; DB full back up daily, T-Logs backed up hourly
Have a few questions:
Looking for any advice or experiences that anyone is willing to share.
April 2, 2020 at 8:33 pm
This was removed by the editor as SPAM
April 2, 2020 at 8:45 pm
The TRUNCATE_ONLY option of the backup log command is no longer available. If that command is executed against a database instance greater than 2008 it will fail with a statement that TRUNCATE_ONLY is not a valid backup option.
If Veeam is performing a truncate - then the only way that could occur would be to switch the recovery model to simple - then back to full. That would eliminate any value of having a database in the full or bulk-logged recovery models since you could never perform a point in time recovery of that database.
The other option would be that Veeam is actually running the transaction log backup - but writing the results to the null device. Essentially throwing away the transaction log backup.
Veeam does have a setting to perform transaction log backups and how often to perform them. I would recommend making sure that is set appropriately and the system is actually backing up the transaction log and shipping it to the repository. These should show up in the repository as .VLB files.
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
April 3, 2020 at 9:45 am
We are also using Veeam to do our SQL backups.
2. Truncate option: we have it set at "backup logs periodically" every 15 minutes so we can do point in time restores through Veeam. It breaks the backupchain outside of Veeam. https://helpcenter.veeam.com/docs/backup/vsphere/transaction_truncation.html?ver=100
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply