I ran a query showing our backups where mysteriously being completed. Then I realized these are snapshot backups.I got stuck on this. Any direction would be helpful.- There is no SQL Server job for this, how can I find out what is triggering this?- The file name is strange (Ex: {2BA11827-A5D9-464E-A5AF-E5D5F441BE2B}8) what is this and how could I restore it?-- BackupsSELECT backup_finish_date, is_snapshot, database_name, physical_device_nameFROM msdb.dbo.backupset, msdb.dbo.backupmediafamily where msdb.dbo.backupmediafamily.media_set_id = msdb.dbo.backupset.media_set_idorder by msdb.dbo.backupset.backup_finish_date desc