4 Answers
- Newest
- Most votes
- Most comments
3
https://docs.aws.amazon.com/cli/latest/reference/rds/restore-db-instance-to-point-in-time.html
--use-latest-restorable-time | --no-use-latest-restorable-time (boolean)
Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time.
Your command should look something like this:
aws rds restore-db-instance-to-point-in-time \
--source-db-instance-automated-backups-arn "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example" \
--target-db-instance-identifier myorclinstance-from-replicated-backup \
--use-latest-restorable-time
1
Sure.
To restore an Oracle RDS instance to the latest point in time in region 2, use the AWS CLI command restore-db-instance-to-point-in-time
. This creates a new DB instance based on the specified time, typically within 5 minutes of the current time. Ensure the new instance has a similar size and IOPS as the source DB instance to avoid compatibility issues.
0
Hi Giovanni! Thanks for your replay! I just found the parameter that I was looking for --source-db-instance-automated-backups-arn it works :-)
answered 3 months ago
Relevant content
- asked 2 years ago
- asked 2 months ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 2 years ago