Link to home
Start Free TrialLog in
Avatar of Bill Park
Bill ParkFlag for United States of America

asked on

How are SQL Server backups being run?

We have SQL Server 2016.
In SSMS, looking at the canned report for Backup and Restore Events - Successful Backup Operations, I see that one of our databases is being backed up every morning at 0300. The average size is 4.56 GB and the average time is .17 minutes. The device type Is 7.

The System Agent only shows two jobs, neither associated with backups.

Does this indicate that the backups are being called by an external agent?
Is there a way inside SQL Server to find out more about these backups?

Thank you.
Avatar of Matt Bowler
Matt Bowler
Flag of New Zealand image

Have look in these:

USE msdb
GO

SELECT TOP 100 * FROM dbo.backupfile
SELECT TOP 100 * FROM dbo.backupset
SELECT TOP 100 * FROM dbo.backupmediaset
Most likely they are created via some maintenance plan and you can find that in SSMS:
Expand the server where you want to create/update your maintenance plan.
Expand the Management folder.
Expand the Maintenance Plans folder  and look for one that's likely doing a database backup by its name.
Avatar of Bill Park

ASKER

There are no maintenance plans listed.
ASKER CERTIFIED SOLUTION
Avatar of Bill Park
Bill Park
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial