Hello ,
For Azure SQL Managed Instance, no special operation is needed to back up or restore a TDE-enabled database, as TDE is managed natively by Azure:
- Automated Backups: Azure SQL Managed Instance automatically backs up TDE-encrypted databases to geo-redundant storage. You don't need additional steps for backup, as TDE encryption is applied transparently.
- Manual Backups (Optional): If you need manual backups (e.g.,
BACKUP TO URL
), you can create them directly to Azure Blob Storage, and TDE encryption remains in place without additional actions. The backup file is encrypted and can only be restored on compatible instances. - Restoration: When restoring, the instance will automatically manage TDE. No decryption or re-encryption is required, as Azure handles the encryption keys and settings.
References
- Transparent Data Encryption (TDE) for Azure SQL Database
- Automated Backups and Manual Backups for Azure SQL Managed Instance
If this clarifies your question, please accept the answer.
Luis