Hi @RogerSchlueter-7899 ,
Welcome to Microsoft Q&A!
SQL Server appears to automatically back up a database whenever a change is made to the schema or to the data itself.
Please follow my screenshots to check if you have a backup maintain plan.
Then right click Modify,
You can get the details about the backup plan.
Lastly, if you want to get the backup file lacation, execute this script:
Use master
go
SELECT
database_name,
backup_finish_date,
CASE msdb..backupset.type
WHEN 'D' THEN 'Database'
WHEN 'L' THEN 'Log'
END AS backup_type,
physical_device_name,
device_type
FROM msdb.dbo.backupmediafamily
INNER JOIN msdb.dbo.backupset
ON msdb.dbo.backupmediafamily.media_set_id = msdb.dbo.backupset.media_set_id
--WHERE (CONVERT(datetime, msdb.dbo.backupset.backup_start_date, 102) >= GETDATE() - 1)
ORDER BY database_name,backup_finish_date
Maybe you can see value 7 in the column "device_type" which means "Virtual device". These rows are actually very useful for monitoring, for example it help to know that the Virtual Machine backups are running full database backups on a SQL Server instance. There's no trace of these backup files since they are above the scope of the virtual machine (above the level of your control) - these are triggered by the host,meaning azure in this case (Hyper-V or VMware for example triggers these).
For more information, please see https://ariely.info/Blog/tabid/83/EntryId/224/SQL-Server-physical_device_name-in-the-Backup-log-shows-GUID.aspx
Best regards,
Seeya
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.