- A
Perform a snapshot restore and attach the restored instance, then manually copy only the affected rows back into the current database.
Why wrong: Snapshot restore may be disruptive and copying manually can be error-prone and longer than PITR-based alternatives.
- B
Use point-in-time recovery to restore the database to a timestamp just before 10:00 UTC, then swap application connectivity to the recovered instance.
Point-in-time recovery leverages automated backups to create a recovery point near the incident and supports restoring close to 10:00.
- C
Rely on automated backups to roll forward automatically until the data becomes correct.
Why wrong: Backups do not correct live data automatically; they only provide recovery points after damage occurs.
- D
Disable automated backups going forward to prevent future corruption, then reindex the corrupted table.
Why wrong: Disabling backups does not undo the corruption, and reindexing won’t restore overwritten row values.
Quick Answer
The answer is to use point-in-time recovery to restore the database to a timestamp just before 10:00 UTC, then swap application connectivity to the recovered instance. This is correct because RDS point-in-time recovery for data corruption allows you to restore an entire database instance to any second within the automated backup retention window, effectively rolling back the faulty migration without needing to manually repair corrupted rows. On the SAA-C03 exam, this scenario tests your understanding that PITR is the most resilient and least disruptive approach for recovering from logical corruption like a bad application deploy, as it provides a consistent, full-database snapshot rather than requiring complex, error-prone manual data surgery. A common trap is choosing to restore from a manual snapshot, which is less granular than PITR’s second-level precision, or attempting to export and re-import specific tables. Memory tip: think “PITR for PITfall” — when a migration goes wrong, point-in-time recovery is your precise undo button.
SAA-C03 Design Resilient Architectures Practice Question
This SAA-C03 practice question tests your understanding of design resilient architectures. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. A key principle to apply: amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A production Amazon RDS database has automated backups enabled. At 10:00 UTC, an application deploy accidentally overwrote a subset of rows due to a faulty migration. The issue is detected at 10:45 UTC. The team confirms that the required retention window is still available. Which approach offers the most resilient and least disruptive way to recover the affected data close to the time of the event?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"least"Why it matters: You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Use point-in-time recovery to restore the database to a timestamp just before 10:00 UTC, then swap application connectivity to the recovered instance.
Option B is correct because point-in-time recovery (PITR) allows you to restore the RDS instance to any second within the backup retention window, such as just before the faulty migration at 10:00 UTC. This restores a complete, consistent database state, minimizing data loss and avoiding manual row-by-row recovery. Swapping application connectivity to the restored instance is the least disruptive approach, as it avoids complex manual data merging and reduces downtime.
Key principle: Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Perform a snapshot restore and attach the restored instance, then manually copy only the affected rows back into the current database.
Why it's wrong here
Snapshot restore may be disruptive and copying manually can be error-prone and longer than PITR-based alternatives.
- ✓
Use point-in-time recovery to restore the database to a timestamp just before 10:00 UTC, then swap application connectivity to the recovered instance.
Why this is correct
Point-in-time recovery leverages automated backups to create a recovery point near the incident and supports restoring close to 10:00.
Clue confirmation
The clue word "least" in the question point toward this answer.
Related concept
Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.
- ✗
Rely on automated backups to roll forward automatically until the data becomes correct.
Why it's wrong here
Backups do not correct live data automatically; they only provide recovery points after damage occurs.
- ✗
Disable automated backups going forward to prevent future corruption, then reindex the corrupted table.
Why it's wrong here
Disabling backups does not undo the corruption, and reindexing won’t restore overwritten row values.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may choose snapshot restore (Option A) thinking it is faster or simpler, but they overlook that PITR provides a more precise, consistent recovery point without manual data extraction and reinsertion.
Detailed technical explanation
How to think about this question
Point-in-time recovery in RDS uses binary log (binlog) replay to restore to a specific second within the retention window, typically up to the last 5 minutes before the restore request. The retention window can be set from 1 to 35 days, and automated backups are enabled by default with a 7-day retention. In this scenario, the faulty migration occurred at 10:00 UTC, and the issue was detected at 10:45 UTC, so PITR to 09:59:59 UTC recovers the data with minimal loss.
KKey Concepts to Remember
- Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.
- PITR uses automated snapshots and continuous transaction log backups.
- Recovery is possible to any second within the retention window, excluding the last 5 minutes.
- Swapping application connectivity to the new instance minimizes downtime.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Review amazon RDS Point-in-Time Recovery (PITR) restores to a new instance., then practise related SAA-C03 questions on the same topic to reinforce the concept.
- →
Design Resilient Architectures — study guide chapter
Learn the concepts, then practise the questions
- →
Design Resilient Architectures practice questions
Targeted practice on this topic area only
- →
All SAA-C03 questions
1,040 questions across all exam domains
- →
SAA-C03 study guide
Full concept coverage aligned to exam objectives
- →
SAA-C03 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SAA-C03 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Design Secure Architectures practice questions
Practise SAA-C03 questions linked to Design Secure Architectures.
Design Resilient Architectures practice questions
Practise SAA-C03 questions linked to Design Resilient Architectures.
Design High-Performing Architectures practice questions
Practise SAA-C03 questions linked to Design High-Performing Architectures.
Design Cost-Optimized Architectures practice questions
Practise SAA-C03 questions linked to Design Cost-Optimized Architectures.
SAA-C03 VPC practice questions
Practise SAA-C03 questions linked to SAA-C03 VPC.
SAA-C03 S3 lifecycle policy questions
Practise SAA-C03 questions linked to SAA-C03 S3 lifecycle policy questions.
SAA-C03 RDS Multi-AZ questions
Practise SAA-C03 questions linked to SAA-C03 RDS Multi-AZ questions.
SAA-C03 IAM policy practice questions
Practise SAA-C03 questions linked to SAA-C03 IAM policy.
SAA-C03 Route 53 failover questions
Practise SAA-C03 questions linked to SAA-C03 Route 53 failover questions.
SAA-C03 CloudFront practice questions
Practise SAA-C03 questions linked to SAA-C03 CloudFront.
SAA-C03 NAT gateway questions
Practise SAA-C03 questions linked to SAA-C03 NAT gateway questions.
SAA-C03 VPC endpoint questions
Practise SAA-C03 questions linked to SAA-C03 VPC endpoint questions.
Practice this exam
Start a free SAA-C03 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SAA-C03 question test?
Design Resilient Architectures — This question tests Design Resilient Architectures — Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance..
What is the correct answer to this question?
The correct answer is: Use point-in-time recovery to restore the database to a timestamp just before 10:00 UTC, then swap application connectivity to the recovered instance. — Option B is correct because point-in-time recovery (PITR) allows you to restore the RDS instance to any second within the backup retention window, such as just before the faulty migration at 10:00 UTC. This restores a complete, consistent database state, minimizing data loss and avoiding manual row-by-row recovery. Swapping application connectivity to the restored instance is the least disruptive approach, as it avoids complex manual data merging and reduces downtime.
What should I do if I get this SAA-C03 question wrong?
Review amazon RDS Point-in-Time Recovery (PITR) restores to a new instance., then practise related SAA-C03 questions on the same topic to reinforce the concept.
Are there clue words in this question I should notice?
Yes — watch for: "least". You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
What is the key concept behind this question?
Amazon RDS Point-in-Time Recovery (PITR) restores to a new instance.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more ways this is tested on SAA-C03
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A production Amazon RDS database has automated backups enabled. An application mistakenly updates a table and the issue is discovered one hour later. The team needs to restore the database to the exact state it had 45 minutes ago. Which approach best meets the requirement?
easy- ✓ A.Perform a point-in-time restore to a timestamp within the automated backup window.
- B.Restore only from the latest daily snapshot, then manually undo the last hour’s changes.
- C.Increase Multi-AZ to generate a new standby and redirect traffic back to the previous primary state.
- D.Stop the database and change the application to ignore the table going forward.
Why A: Amazon RDS Point-in-Time Recovery (PITR) allows you to restore a DB instance to any specific second within the automated backup retention period, which includes the transaction logs needed to reconstruct the database state at the desired time. Since the issue is discovered one hour after the mistaken update, PITR can restore the database to exactly 45 minutes ago by replaying binary logs up to that precise timestamp, meeting the requirement without data loss.
Last reviewed: Jun 11, 2026
This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.