DA0-002 Data Acquisition and Preparation Practice Question
A retail company is migrating its on-premises data warehouse to a cloud data warehouse. The current ETL process extracts data from a transactional database (SQL Server) and a web analytics system (JSON logs). The ETL runs nightly and takes 6 hours. The business requires that the new cloud warehouse support real-time reporting with data latency of less than 15 minutes. The data engineer proposes using change data capture (CDC) from the SQL Server database and streaming the JSON logs via a message queue. However, management is concerned about cost and complexity. The engineer must design a solution that meets the latency requirement while minimizing operational overhead. Which approach should the engineer recommend?
⚠ Common exam trap
A common mix-up: candidates choose Option A or D because they seem simpler, but they fail to meet the strict latency requirement or introduce hidden operational complexity, while Option C's CDC and streaming approach is the only one that balances low latency with minimal overhead.
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
✓
Implement CDC for the SQL Server database and stream the JSON logs via a message queue to the cloud warehouse
CDC captures only changed rows from SQL Server, minimizing data volume and enabling near-real-time ingestion, while streaming JSON logs via a message queue (e.g., Apache Kafka or Amazon Kinesis) provides sub-15-minute latency. This combination meets the latency requirement without the overhead of full batch exports or complex virtualization, addressing management's cost and complexity concerns.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Export the SQL Server data to flat files every 15 minutes and use a cloud storage trigger to load
Why it's wrong here
This approach is fragile and adds complexity without significant benefit.
- ✗
Continue with nightly batch loads but increase the frequency to every hour
Why it's wrong here
Hourly batches still exceed 15-minute latency requirement.
- ✓
Implement CDC for the SQL Server database and stream the JSON logs via a message queue to the cloud warehouse
Why this is correct
CDC provides real-time changes; streaming handles JSON logs with low latency.
- ✗
Use a data virtualization tool to query the source systems directly without moving data
Why it's wrong here
Data virtualization may not meet performance requirements for real-time reporting.
Go deeper
Related to this question
About these practice questions
One of 986 original DA0-002 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This DA0-002 practice question is part of Courseiva's free CompTIA 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 DA0-002 exam.