First Step in Troubleshooting Conflicting Data from Multiple Sources
An analyst notices that a dashboard displays conflicting data from two sources. What is the first step in troubleshooting?
Quick Answer
The correct first step in troubleshooting conflicting data from multiple sources is to check data transformation steps and join logic. This is because discrepancies in dashboards almost always stem from how data was merged or altered during the ETL process—for example, an incorrect INNER JOIN that drops unmatched records, a mismatched key field, or a data type conversion that silently truncates values. On the CompTIA Data+ DA0-001 exam, this question tests your understanding that root cause analysis must precede any corrective action; a common trap is jumping to re-run queries or notify stakeholders before verifying the transformation pipeline. Remember the memory tip: “Join first, blame last”—always audit your joins and transformations before assuming the source data is wrong.
⚠ Common exam trap
The trap here is that candidates often jump to re-running queries or notifying stakeholders first, mistaking a symptom (conflicting data) for a root cause, instead of methodically inspecting the transformation and join logic where the discrepancy likely originates.
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
✓
Check data transformation steps and join logic
The first step in troubleshooting conflicting data from multiple sources is to verify the data transformation steps and join logic. Conflicts often arise from incorrect joins (e.g., using INNER JOIN instead of LEFT JOIN), mismatched keys, or data type conversions that alter values. Checking these steps isolates the root cause before any other action, such as re-running queries or notifying stakeholders.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Re-run all queries
Why it's wrong here
Re-running queries does not address the root cause without investigation.
- ✗
Notify stakeholders of potential error
Why it's wrong here
Notifying stakeholders without verification may cause unnecessary alarm.
- ✗
Replace the data source with the one believed to be correct
Why it's wrong here
Replacing sources without analysis may mask the issue.
- ✓
Check data transformation steps and join logic
Why this is correct
Examining transformations and joins helps identify discrepancies between sources.
Go deeper
Related to this question
About these practice questions
Courseiva writes every DA0-002 question from scratch — 986 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on DA0-002
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. Refer to the exhibit. An analyst runs a query to count orders in June 2023 and gets 12,345. However, a dashboard shows 12,298 for the same month. What is the most likely cause?
medium- ✓ A.The dashboard includes time zone conversion
- B.The query has a syntax error
- C.The query excludes orders that were canceled
- D.The dashboard is using a different data source
Why A: The most likely cause is that the dashboard applies a time zone conversion to the order timestamps, while the analyst's query counts orders based on UTC or a different time zone. If the dashboard converts timestamps to a local time zone (e.g., US/Eastern), orders placed near midnight UTC may fall into a different calendar day or month, causing a discrepancy of 47 orders. This is a common issue when raw data is stored in UTC but reporting tools apply a time zone offset without adjusting the query logic.
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.