Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Solutions Architect - Associate SAA-C03 All Questions

View all questions & answers for the AWS Certified Solutions Architect - Associate SAA-C03 exam

Exam AWS Certified Solutions Architect - Associate SAA-C03 topic 1 question 136 discussion

A company is migrating its on-premises PostgreSQL database to Amazon Aurora PostgreSQL. The on-premises database must remain online and accessible during the migration. The Aurora database must remain synchronized with the on-premises database.
Which combination of actions must a solutions architect take to meet these requirements? (Choose two.)

  • A. Create an ongoing replication task.
  • B. Create a database backup of the on-premises database.
  • C. Create an AWS Database Migration Service (AWS DMS) replication server.
  • D. Convert the database schema by using the AWS Schema Conversion Tool (AWS SCT).
  • E. Create an Amazon EventBridge (Amazon CloudWatch Events) rule to monitor the database synchronization.
Show Suggested Answer Hide Answer
Suggested Answer: AC 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
123jhl0
Highly Voted 1 year, 12 months ago
Selected Answer: AC
AWS Database Migration Service (AWS DMS) helps you migrate databases to AWS quickly and securely. The source database remains fully operational during the migration, minimizing downtime to applications that rely on the database. ... With AWS Database Migration Service, you can also continuously replicate data with low latency from any supported source to any supported target. https://aws.amazon.com/dms/
upvoted 29 times
pentium75
9 months, 3 weeks ago
PostgreSQL -> Aurora PostgreSQL requires schema conversion per https://aws.amazon.com/dms/schema-conversion-tool/
upvoted 3 times
LoXoL
9 months, 1 week ago
SCT is compatible with PostgreSQL as source and Aurora PostgreSQL as destination, but not required.
upvoted 2 times
...
...
...
gustavtd
Highly Voted 1 year, 9 months ago
Selected Answer: AC
AC, here it is clearly shown https://docs.aws.amazon.com/zh_cn/dms/latest/sbs/chap-manageddatabases.postgresql-rds-postgresql.html
upvoted 8 times
LuckyAro
1 year, 9 months ago
You nailed it !
upvoted 1 times
...
...
PaulGa
Most Recent 3 weeks, 6 days ago
Selected Answer: CE
Ans C, E - C: AWS Database Migration Service to migrate databases to AWS, source database remains fully operational during the migration, avoiding application downtime. https://aws.amazon.com/dms/ E: monitor with CloudWatch As for C - not convinced: its PostgreSQL to PostgreSQL migration... no SCT is needed?
upvoted 1 times
MatAlves
3 weeks, 2 days ago
No, since you're using the same schema for Postgresql.
upvoted 1 times
...
...
jaradat02
2 months, 3 weeks ago
Selected Answer: AC
A and c obviously
upvoted 1 times
...
jatric
3 months, 1 week ago
Selected Answer: AC
AC is more accurate as DMS will help to migrate the on-premises data base to cloud with ease and for ongoing replication to synchronized the datbase "ongiong replication task" will be helpfull. And yes its PostgreSQL to PostgreSQL migration so no SCT is needed ehre
upvoted 1 times
...
BombArat
3 months, 2 weeks ago
Selected Answer: AC
WeLL CHATGPT says SCT is not required so , AC makes sense
upvoted 1 times
...
CCCat
4 months ago
Selected Answer: AC
Keywords: - migrating its on-premises PostgreSQL database to Amazon Aurora PostgreSQL - The Aurora database must remain synchronized with the on-premises database Analysis: Option A satisfy the requirement of “synchronized with the on-premises database” Option C suits for the homogeneous database migration. Option D is not needed in this scenario, it suits for the heterogeneous database. Homogeneous database migration tools: https://docs.aws.amazon.com/prescriptive-guidance/latest/migration-oracle-database/homogeneous-migration-tools.html Heterogeneous database migration tools: https://aws.amazon.com/dms/schema-conversion-tool/
upvoted 1 times
...
sumpatil
4 months, 2 weeks ago
CD: Migrating a schema from PostgreSQL to Amazon Aurora (PostgreSQL) usually requires using the AWS Schema Conversion Tool (SCT) and the AWS Database Migration Service (DMS)
upvoted 1 times
...
Hopeyemi
5 months, 3 weeks ago
To meet the requirements of migrating an on-premises PostgreSQL database to Amazon Aurora PostgreSQL while keeping the on-premises database online and ensuring synchronization with the Aurora database, the following actions need to be taken: Create an ongoing replication task (Option A): This action involves setting up continuous replication between the on-premises PostgreSQL database and the Aurora PostgreSQL database. This ensures that changes made to the on-premises database are replicated to the Aurora database in real-time, keeping them synchronized. Create an AWS Database Migration Service (AWS DMS) replication server (Option C): AWS DMS provides a reliable and efficient way to migrate databases to AWS while minimizing downtime. By creating an AWS DMS replication server, you can configure and manage the replication tasks between the on-premises database and the Aurora database.
upvoted 2 times
...
Alphateccc
7 months, 1 week ago
answer is CD : postgresql and aurora postgresql have different schemes, you need sct for conversion and dms for the migration (replication)
upvoted 1 times
...
vip2
8 months ago
Selected Answer: AC
AC perform ongoing replication using AWS DMS to keep the source and target databases in sync
upvoted 1 times
...
farnamjam
9 months, 3 weeks ago
Selected Answer: AC
DMS has Continuous Data Replication using CDC
upvoted 2 times
...
Michael_Li
10 months, 2 weeks ago
CD A is out because it does not specify what is the service to perform the replication task, clearly what needed here is DMS B is out because backup is solution to keep 2 DB in sync, backup and restore takes long time C is correct as DMS takes care both full load and ongoing replication, see this youtube video https://www.youtube.com/watch?v=VhXDa9SPDLw D is right as from to PostgreSQL to Amazon Aurora PostgreSQL you need AWS Schema Conversion Tool, see https://aws.amazon.com/dms/schema-conversion-tool/ E is out monitor itself doen't perform the replication work, if we have to choose 3 options then we can have E selected
upvoted 2 times
pentium75
9 months, 3 weeks ago
https://docs.aws.amazon.com/zh_cn/dms/latest/sbs/chap-manageddatabases.postgresql-rds-postgresql-ongoing-replication.html literally says that you must "configure the ongoing replication task"
upvoted 2 times
...
...
Mikado211
10 months, 2 weeks ago
Well technically when you operate such task, you must create a database on the cloud, then operate a migration using DMS and none of the propositions give you those two tasks separately. Sometimes those questions can be really frustrating.
upvoted 1 times
...
Amitabha09
1 year ago
C. Create an AWS Database Migration Service (AWS DMS) replication server. E. Create an Amazon EventBridge (Amazon CloudWatch Events) rule to monitor the database synchronization. AWS DMS can replicate data from on-premises databases to Aurora PostgreSQL in real time, so the on-premises database will remain online and accessible during the migration. AWS DMS can also automatically convert the database schema, so there is no need to use AWS SCT. An Amazon EventBridge rule can be used to monitor the database synchronization and send notifications if any errors occur. This is important because it allows the solutions architect to quickly identify and resolve any issues that may arise during the migration. A database backup of the on-premises database is not necessary because AWS DMS will replicate the data in real time. Creating an ongoing replication task is not necessary because AWS DMS will automatically create an ongoing replication task when the replication server is created.
upvoted 2 times
David_Ang
12 months ago
Mate you can monitor everything you want but it is not going to make sure the synchronization is working, an alert is not going to help.
upvoted 3 times
...
...
TariqKipkemei
1 year, 1 month ago
Selected Answer: AC
Create an AWS Database Migration Service (AWS DMS) replication server then create an ongoing replication task
upvoted 3 times
...
Guru4Cloud
1 year, 2 months ago
Selected Answer: AC
A) Create an ongoing replication task C) Create an AWS Database Migration Service (AWS DMS) replication server The key reasons are: An ongoing DMS replication task keeps the source and target databases synchronized during the migration. The DMS replication server manages and executes the replication tasks. Together, these will continuously replicate changes from on-prem to Aurora to keep them in sync. A database backup alone wouldn't maintain synchronization.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...