SPLK-1002 Advanced Visualization and Lookups Practice Question
Exhibit
Refer to the exhibit. ``` | inputlookup usertable.csv | table username, role, department ``` The lookup file usertable.csv contains: username,role,department jsmith,admin,it bjones,user,sales But the search returns no results. The lookup definition is named `usertable` and the file is in the correct directory.
What is the MOST likely reason the search returns no results?
⚠ Common exam trap
Splunk often tests the distinction between the `inputlookup` command (which requires the definition name) and the `lookup` command (which can accept either a definition name or a filename in certain contexts), leading candidates to incorrectly assume both commands accept filenames.
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
✓
The `inputlookup` command expects the definition name, not the filename.
The `inputlookup` command in Splunk expects the lookup definition name as its argument, not the filename of the CSV file. If a user specifies the filename (e.g., `| inputlookup myfile.csv`) instead of the lookup definition name (e.g., `| inputlookup my_lookup`), Splunk will not find the lookup and returns no results. This is a common mistake because the command syntax requires the logical name defined in the lookup table configuration, not the physical file path.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The user does not have permission to read the lookup.
Why it's wrong here
No permission error mentioned.
- ✗
The lookup definition is not configured.
Why it's wrong here
The definition is named usertable and is configured correctly.
- ✗
The CSV file has no header row.
Why it's wrong here
The exhibit shows a header row.
- ✓
The `inputlookup` command expects the definition name, not the filename.
Why this is correct
Use `| inputlookup usertable`.
Go deeper
Related to this question
About these practice questions
One of 475 original SPLK-1002 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 SPLK-1002 practice question is part of Courseiva's free Splunk 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 SPLK-1002 exam.