Microsoft SQL Server 2022 がインストールされたオンプレミスサーバーがあり、サーバーには複数のデータベースが含まれています。 複数の Azure SQL データベースを含む Azure サブスクリプションがあります。 データベースの毎日のバックアップを構成します。 すべてのバックアップが中央の場所に保存されていることを確認する必要があります。 バックアップを保存するには何を使用すればよいですか?
正解:D
SQL Server backup and restore with Azure Blob Storage To store Microsoft SQL Server 2022 database backups centrally, you can utilize features like Azure Blob Storage, S3-compatible object storage, or shared network drives. Consider using SQL Server Management Studio (SSMS) or Maintenance Plans to automate backups to these central locations. Azure Blob Storage: SQL Server 2022 integrates with Azure Blob Storage for backups, allowing you to store them in the cloud. You can use the BACKUP TO URL syntax with the s3:// or https:// protocol to specify the Azure Blob Storage location. You'll need to create an Azure storage account and a container, and then create a SQL Server credential to authenticate with the storage. Reference: https://learn.microsoft.com/en-us/sql/relational-databases/backup-restore/sql-server-backup-and-restore-with-microsoft-azure-blob-storage-service