- A
Use row-level security (RLS) policies within a single schema to restrict tenant data access.
Why wrong: RLS provides security isolation but not performance isolation; all queries share the same database resources.
- B
Keep the current schema design and add a tenant_id index to all tables.
Why wrong: Indexing does not isolate performance; queries still compete for the same database resources.
- C
Use a separate database per tenant.
Separate databases provide strong performance isolation and allow per-tenant resource allocation and backup.
- D
Use Amazon RDS Proxy to manage connections and improve performance.
Why wrong: RDS Proxy handles connection pooling but does not isolate performance between tenants.
Quick Answer
The answer is to use a separate database per tenant. This approach provides the strongest multi-tenant performance isolation because each database on Amazon RDS for PostgreSQL operates with its own catalog, connection pool, and memory allocation, effectively eliminating the noisy neighbor problem where tenants with vastly different data sizes and access patterns degrade each other’s query performance. On the AWS Certified Database Specialty DBS-C01 exam, this scenario tests your understanding of resource isolation strategies in SaaS architectures—a common trap is assuming schema-level separation is sufficient, but it fails to isolate I/O and buffer cache. A useful memory tip: think of separate databases as separate apartments with their own utilities, whereas schemas are just rooms in a shared house; for true performance isolation, you need the apartment.
DBS-C01 Workload-Specific Database Design Practice Question
This DBS-C01 practice question tests your understanding of workload-specific database design. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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 designing a multi-tenant SaaS application on Amazon RDS for PostgreSQL. Tenants have vastly different data sizes and access patterns. The current design uses a separate schema per tenant, but some tenants experience slow queries while others are fine. Which approach would best isolate tenant performance and simplify management?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"best"Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
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 a separate database per tenant.
Option C is correct because using a separate database per tenant provides the strongest resource isolation at the database instance level. This design prevents noisy neighbors—tenants with large data volumes or heavy access patterns from degrading the performance of other tenants—and simplifies management tasks such as backup, restore, and point-in-time recovery on a per-tenant basis. Amazon RDS for PostgreSQL supports multiple databases within a single DB instance, and each database operates with its own catalog, tables, and connection pool, ensuring that query execution and memory allocation are not shared across tenants.
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 row-level security (RLS) policies within a single schema to restrict tenant data access.
Why it's wrong here
RLS provides security isolation but not performance isolation; all queries share the same database resources.
- ✗
Keep the current schema design and add a tenant_id index to all tables.
Why it's wrong here
Indexing does not isolate performance; queries still compete for the same database resources.
- ✓
Use a separate database per tenant.
Why this is correct
Separate databases provide strong performance isolation and allow per-tenant resource allocation and backup.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Use Amazon RDS Proxy to manage connections and improve performance.
Why it's wrong here
RDS Proxy handles connection pooling but does not isolate performance between tenants.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse logical data isolation (RLS or schema-per-tenant) with performance isolation, assuming that indexing or connection pooling can solve resource contention, when in fact only physical separation (separate databases) guarantees that one tenant's workload does not impact another's performance.
Detailed technical explanation
How to think about this question
Under the hood, each PostgreSQL database has its own set of system catalogs (pg_catalog) and is backed by separate files in the filesystem. When using separate databases, the PostgreSQL background writer, checkpointer, and autovacuum processes operate on each database independently, preventing a single tenant's write-heavy workload from causing vacuum pressure or checkpoint storms that affect other tenants. In a real-world scenario, a tenant with a 500 GB table performing bulk inserts would trigger autovacuum and WAL growth that could starve other tenants of I/O if they share a database; separate databases avoid this by isolating WAL segments and buffer cache usage.
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 company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
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.
- →
Workload-Specific Database Design — study guide chapter
Learn the concepts, then practise the questions
- →
Workload-Specific Database Design practice questions
Targeted practice on this topic area only
- →
All DBS-C01 questions
1,730 questions across all exam domains
- →
AWS Certified Database Specialty DBS-C01 study guide
Full concept coverage aligned to exam objectives
- →
DBS-C01 practice test guide
How to use practice tests most effectively before exam day
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.
Workload-Specific Database Design practice questions
Practise DBS-C01 questions linked to Workload-Specific Database Design.
Deployment and Migration practice questions
Practise DBS-C01 questions linked to Deployment and Migration.
Management and Operations practice questions
Practise DBS-C01 questions linked to Management and Operations.
Monitoring and Troubleshooting practice questions
Practise DBS-C01 questions linked to Monitoring and Troubleshooting.
Database Security practice questions
Practise DBS-C01 questions linked to Database Security.
DBS-C01 fundamentals practice questions
Practise DBS-C01 questions linked to DBS-C01 fundamentals.
DBS-C01 scenario practice questions
Practise DBS-C01 questions linked to DBS-C01 scenario.
DBS-C01 troubleshooting practice questions
Practise DBS-C01 questions linked to DBS-C01 troubleshooting.
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?
Workload-Specific Database Design — This question tests Workload-Specific Database Design — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use a separate database per tenant. — Option C is correct because using a separate database per tenant provides the strongest resource isolation at the database instance level. This design prevents noisy neighbors—tenants with large data volumes or heavy access patterns from degrading the performance of other tenants—and simplifies management tasks such as backup, restore, and point-in-time recovery on a per-tenant basis. Amazon RDS for PostgreSQL supports multiple databases within a single DB instance, and each database operates with its own catalog, tables, and connection pool, ensuring that query execution and memory allocation are not shared across tenants.
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.
Are there clue words in this question I should notice?
Yes — watch for: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
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 →
Last reviewed: Jun 24, 2026
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.
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.