Courseiva
Workload-Specific Database DesignhardMultiple ChoiceObjective-mapped

DBS-C01 Workload-Specific Database Design Practice Question

A company has a MySQL database that stores user profile data. The database is 1 TB and growing. The team wants to archive inactive user profiles that haven't been accessed in over 1 year. The archived data must be queryable but at a slower performance tier. Which approach is most cost-effective?

⚠ Common exam trap

Many exam-takers confuse 'archiving' with 'expiring' or 'replicating,' and assume that a database service (like Aurora Serverless or DynamoDB) is required for queryability, overlooking S3's ability to serve as a queryable data lake via Athena or S3 Select.

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

Export inactive profiles to Amazon S3 and use S3 Intelligent-Tiering for storage

The most cost-effective because Amazon S3 with Intelligent-Tiering automatically moves data between access tiers (frequent, infrequent, and archive) based on usage, minimizing storage costs for rarely accessed data. Inactive profiles exported to S3 remain queryable via S3 Select or Athena, meeting the requirement for slower query performance at a fraction of the cost of maintaining a relational database 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.

  • Create an RDS read replica and delete inactive records from the primary

    Why it's wrong here

    The read replica would still store the data, incurring costs.

  • Move inactive profiles to Amazon Aurora Serverless and stop the cluster when not in use

    Why it's wrong here

    Aurora Serverless is still a relational database and may incur costs even when paused.

  • Export inactive profiles to Amazon S3 and use S3 Intelligent-Tiering for storage

    Why this is correct

    S3 Intelligent-Tiering optimizes costs, and the data can be queried using Athena.

  • Use Amazon DynamoDB with TTL to expire inactive profiles

    Why it's wrong here

    TTL deletes data automatically, not for archiving.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

This DBS-C01 question is part of Courseiva's 1,663-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.