An Azure backup service that provides built-in management at scale.
TBFG Azure Admin hi & thx for sharing urs issue here at Q&A portal,
Yes. Managed data disks are independent Azure resources. The VM is just attached to them while it's running. If the VM becomes unavailable or is deleted (without deleting the disks), the data disks remain in your subscription and can be attached to another VM. For a recovery scenario u can detach the data disk from the failed VM (if possible) or create a new VM and attach the existing managed disk. The disk will appear as an additional volume, allowing you to browse the files and copy your SQL .bak backups. That said, I wouldn't recommend using a VM data disk as the only backup location. If the VM, disks, or resource group are affected by accidental deletion or corruption, both your database and the backups could be at risk. A more resilient approach is to store SQL backups in Azure Blob Storage or use Azure Backup/Azure SQL backup features, which keep the backups separate from the VM.
It's also a good idea to periodically test ur recovery process. For example, create a temporary VM, attach a copy of DataDisk1 (or a disk restored from a snapshot), and verify that you can access the .bak files and restore a database. Knowing that the process works before an emergency is just as important as having the backups themselves.
rgds,
Alex
&
If my answer was helpful pls mark it and additional thx if u follow me at Q&A portal
and at my blog https://ctrlaltdel.blog/