Microsoft SQL ServerからAWS RDSへのデータベースの移行作業をしているのですが、上手くいかずどのようにすればよいか指導をしていただきたいです。
ローカルのbakファイルをAWSのs3にいれて、SQL Server Management Studio でクエリーの実行をしても、下記のエラーがでてしまいます。
sql
1exec msdb.dbo.rds_restore_database 2@restore_db_name='testdb', 3@s3_arn_to_restore_from='arn:aws:s3:::sqlserver-backup-bucket5/AdventureWorks2014.bak';
error
1メッセージ 50000、レベル 16、状態 0、プロシージャ msdb.dbo.rds_restore_database、行 80 [バッチ開始行 0] 2Database backup/restore option is not enabled yet or is in the process of being enabled. Please try again later. 3USAGE: 4 EXECUTE msdb.dbo.rds_restore_database @restore_db_name, @s3_arn_to_restore_from, [@kms_master_key_arn], [@type], [@with_norecovery] 5 6 @restore_db_name : Name of the database being restored. 7 @s3_arn_to_restore_from : S3 ARN of the backup file used to restore database from. 8 @kms_master_key_arn : KMS customer master key ARN to decrypt the backup file with. 9 @type : The type of restore. Valid types are FULL or DIFFERENTIAL. Defaults to FULL. 10 @with_norecovery : The recovery clause to use for the restore operation. Set this to 0, to restore with RECOVERY (database will be online after the restore). Set this to 1, to restore with NORECOVERY (database will be left in the RESTORING state allowing for subsequent differential or log restores) . 11 For FULL restore, defaults to 0. For DIFFERENTIAL restores, you must specify 0 or 1. 12 13完了時刻: 2020-03-15T19:07:57.0227177+09:00 14
RDSの設定が間違っているのか、どうすればいいのかわかりません。
教えていただけたらありがたいです。
参考サイト
https://dev.classmethod.jp/cloud/aws/import-export-mssql-by-s3-bak-file/
参考サイトをもとにテスト実装しています。
宜しくお願いします。
あなたの回答
tips
プレビュー