September 17, 2015 at 2:13 pm
2008 R2 Instance
SQL Server Logs show that a full backup is occurring on each database at 10:30pm every night.
We have a Maintenance Plan the does a full backup on Friday at 8pm and another Plan that does a differential backup on every other day at 8pm.
There are no other Maintenance Plans or Agent Jobs.
Nothing related shows in the Windows Task Scheduler.
There are no related files that have a 10:30ish time stamp (including no backup files).
Any suggestions on where I should look next to find these backups and/or the script/process that is creating them?
September 17, 2015 at 2:27 pm
Any external program, not scheduled by SQL Server Agent, that does database backups?
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 17, 2015 at 2:32 pm
No external programs that I am aware of.
September 17, 2015 at 3:28 pm
Torin (9/17/2015)
2008 R2 InstanceSQL Server Logs show that a full backup is occurring on each database at 10:30pm every night.
We have a Maintenance Plan the does a full backup on Friday at 8pm and another Plan that does a differential backup on every other day at 8pm.
There are no other Maintenance Plans or Agent Jobs.
Nothing related shows in the Windows Task Scheduler.
There are no related files that have a 10:30ish time stamp (including no backup files).
Any suggestions on where I should look next to find these backups and/or the script/process that is creating them?
I have some ideas, but to confirm, can you run this script and post the results:
SELECT B.database_name,
--B.backup_set_id,
--B.media_set_id,
B.backup_finish_date,
B.type,
BF.physical_device_name,
BF.device_type
FROM msdb.dbo.backupset AS B
JOIN msdb.dbo.backupmediafamily AS BF
ON BF.media_set_id = B.media_set_id
AND BF.family_sequence_number BETWEEN B.first_family_number
AND B.last_family_number
WHERE B.is_copy_only = 0
AND B.type = 'D' -- FULL database backup
AND B.backup_finish_date > DATEADD(DAY, -7, GETDATE())
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
September 17, 2015 at 7:10 pm
Torin (9/17/2015)
No external programs that I am aware of.
Tape Backup? (which has an "Agent" to backup SQL databases)
September 18, 2015 at 9:53 am
We use a hosted data center. It turns out that they had turned on the SQL backup functionality on their nightly backup system - so it was an external program after all.
By the way, thanks, Wayne, for the script. It is useful.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply