Question 768 of 1,730
Deployment and MigrationhardMultiple SelectObjective-mapped

Oracle to Aurora PostgreSQL Migration with DMS and SCT

This DBS-C01 practice question tests your understanding of deployment and migration. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. 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 company is migrating a 500 GB Oracle database to Amazon Aurora PostgreSQL. They need to convert the schema and migrate the data with minimal downtime. Which THREE actions should they take? (Choose three.)

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 AWS Schema Conversion Tool (SCT) to assess and convert Oracle-specific features like hierarchical queries.

AWS Schema Conversion Tool (SCT) is the correct tool for assessing and converting Oracle-specific features like hierarchical queries (e.g., CONNECT BY) into PostgreSQL-compatible syntax (e.g., recursive CTEs). This is essential for schema migration to Aurora PostgreSQL, and SCT provides a detailed assessment report to identify and automate conversion of such features.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Use AWS Schema Conversion Tool (SCT) to assess and convert Oracle-specific features like hierarchical queries.

    Why this is correct

    SCT can convert Oracle-specific features to PostgreSQL equivalents.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Modify the application to use Aurora PostgreSQL-specific SQL syntax before migration.

    Why it's wrong here

    Application modification can be done after migration; SCT handles syntax conversion.

  • Use AWS Database Migration Service (DMS) with change data capture (CDC) to migrate data.

    Why this is correct

    DMS with CDC allows continuous replication with minimal downtime.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use AWS Schema Conversion Tool (SCT) to convert the Oracle schema to PostgreSQL-compatible schema.

    Why this is correct

    SCT converts Oracle schema, including stored procedures and functions.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use AWS Snowball Edge to transfer the data to AWS and then load into Aurora.

    Why it's wrong here

    Snowball is for bulk data transfer, not minimal downtime migration.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates may think Snowball Edge is suitable for any database migration size, but for sub-10 TB databases with minimal downtime requirements, DMS with CDC is the correct approach, and Snowball is overkill and introduces latency.

Detailed technical explanation

How to think about this question

AWS DMS with CDC captures ongoing changes from the Oracle source using Oracle LogMiner or binary logs, enabling near-zero downtime migration by continuously replicating changes after the initial full load. SCT not only converts schema but also generates a migration assessment report that identifies unsupported data types, stored procedures, and other Oracle-specific constructs, providing actionable recommendations for manual remediation.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

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

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

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. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. 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.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related DBS-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free DBS-C01 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 DBS-C01 question test?

Deployment and Migration — This question tests Deployment and Migration — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Use AWS Schema Conversion Tool (SCT) to assess and convert Oracle-specific features like hierarchical queries. — AWS Schema Conversion Tool (SCT) is the correct tool for assessing and converting Oracle-specific features like hierarchical queries (e.g., CONNECT BY) into PostgreSQL-compatible syntax (e.g., recursive CTEs). This is essential for schema migration to Aurora PostgreSQL, and SCT provides a detailed assessment report to identify and automate conversion of such features.

What should I do if I get this DBS-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

5 more ways this is tested on DBS-C01

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 company is migrating a 500 GB Oracle database to Amazon Aurora PostgreSQL. They need to convert the schema and migrate the data. The application uses Oracle-specific features like hierarchical queries and stored procedures. Which combination of services should they use?

hard
  • A.Use AWS Snowball Edge to transfer the database files and then use SCT to convert the schema.
  • B.Use AWS Schema Conversion Tool (SCT) to convert the schema and AWS Database Migration Service (DMS) to migrate the data.
  • C.Use AWS Database Migration Service (DMS) with the Oracle as source and Aurora PostgreSQL as target.
  • D.Use AWS Schema Conversion Tool (SCT) to convert the schema and then manually export/import data.

Why B: AWS SCT converts Oracle-specific schema objects (including hierarchical queries and stored procedures) to PostgreSQL-compatible code, while AWS DMS handles the ongoing data migration with minimal downtime. This combination is the standard AWS approach for heterogeneous database migrations, as SCT addresses schema conversion and DMS handles data transfer.

Variation 2. A company is migrating a 2 TB Oracle database to Amazon Aurora PostgreSQL. They need to minimize downtime. Which AWS service should they use?

medium
  • A.AWS Database Migration Service (DMS)
  • B.AWS Schema Conversion Tool (SCT)
  • C.AWS Data Pipeline
  • D.AWS Snowball

Why A: AWS DMS can perform a live migration from Oracle to Aurora PostgreSQL with minimal downtime by continuously replicating ongoing changes from the source database to the target using Change Data Capture (CDC). For a 2 TB database, DMS supports full-load plus CDC, allowing the source to remain operational during the initial load and then switching over with only a brief outage to apply final changes.

Variation 3. A company is migrating a 2 TB Oracle database to Amazon Aurora PostgreSQL. They need to minimize downtime and ensure data consistency. Which migration strategy should they use?

medium
  • A.Use AWS DMS with full load only, then cut over during a maintenance window.
  • B.Use AWS DMS with ongoing replication (change data capture) from Oracle to Aurora.
  • C.Export the database to Amazon S3 using Oracle Data Pump, then import into Aurora.
  • D.Use pg_dump to export the database and pg_restore to import into Aurora.

Why B: AWS DMS with ongoing replication (change data capture) is the correct strategy because it allows continuous synchronization of changes from the source Oracle database to the target Aurora PostgreSQL, minimizing downtime to just the final cutover window. This approach ensures data consistency by applying transactional changes in near real-time, which is essential for a 2 TB database where a full load alone would require a lengthy maintenance window and risk data divergence.

Variation 4. A company is migrating a 1 TB Oracle database to Amazon Aurora PostgreSQL using AWS DMS. They need to ensure minimal downtime and data consistency. Which TWO actions should the company take?

medium
  • A.Increase the target Aurora storage to 2 TB to avoid storage issues
  • B.Enable change data capture (CDC) on the source Oracle database
  • C.Enable data validation on the DMS task
  • D.Disable foreign key constraints on the target during migration
  • E.Use AWS Schema Conversion Tool to convert the schema

Why B: Option B is correct because enabling Change Data Capture (CDC) on the source Oracle database allows AWS DMS to capture ongoing changes after the full load, enabling a near-zero downtime migration by continuously replicating transactions to the target Aurora PostgreSQL. Option C is correct because enabling data validation on the DMS task ensures that the data migrated is consistent between the source and target, verifying that no data loss or corruption occurred during the migration process.

Variation 5. A company is migrating a 500 GB Oracle database to Amazon Aurora PostgreSQL. Which THREE steps should be part of the migration plan?

hard
  • A.Use AWS Snowball to transfer the database files.
  • B.Set up AWS Direct Connect between on-premises and AWS.
  • C.Use AWS DMS to perform a full load and ongoing replication from Oracle to Aurora.
  • D.Use AWS SCT to convert the Oracle schema to PostgreSQL-compatible schema.
  • E.Validate the migrated data and test the application against the new database.

Why C: AWS DMS supports heterogeneous migrations from Oracle to Aurora PostgreSQL, performing a full load followed by ongoing change data capture (CDC) using Oracle's redo logs to replicate changes with minimal downtime. This makes it the correct service for both the initial data transfer and continuous replication during migration.

Keep practising

More DBS-C01 practice questions

Last reviewed: Jul 4, 2026

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.

Loading comments…

Sign in to join the discussion.

This DBS-C01 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 DBS-C01 exam.