- A
Define the lookup as a time-based lookup.
Why wrong: Not time-based.
- B
Define the lookup table file in the transforms.conf with a search string.
Why wrong: transforms.conf defines lookup parameters.
- C
Upload the CSV to Splunk and it automatically becomes available.
Why wrong: Requires explicit definition.
- D
Define a lookup definition in props.conf and transforms.conf.
Standard configuration.
How to Configure a Lookup Table in Splunk
This SPLK-1002 practice question tests your understanding of using fields and lookups. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. A key principle to apply: transforms.conf. 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.
An administrator wants to add a lookup table that maps user IDs to department names. The lookup file is a CSV with columns `user_id` and `department`. To use this lookup in searches, what must be configured?
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
Define a lookup definition in props.conf and transforms.conf.
Option D is correct because to use a static CSV lookup in Splunk, you must upload the file to the lookups directory, then define a lookup stanza in transforms.conf specifying the filename and field mapping (e.g., `[users_lookup] filename = users.csv`). Optionally, you can create a lookup definition in props.conf for automatic field enrichment, but the lookup can be used manually via the `lookup` or `inputlookup` commands with just the transforms.conf entry. The key is that configuring both transforms.conf (mandatory) and props.conf (for automatic lookup) is the standard approach to fully integrate the lookup.
Key principle: transforms.conf
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Define the lookup as a time-based lookup.
Why it's wrong here
Not time-based.
- ✗
Define the lookup table file in the transforms.conf with a search string.
Why it's wrong here
transforms.conf defines lookup parameters.
- ✗
Upload the CSV to Splunk and it automatically becomes available.
Why it's wrong here
Requires explicit definition.
- ✓
Define a lookup definition in props.conf and transforms.conf.
Why this is correct
Standard configuration.
Related concept
transforms.conf
Common exam traps
Common exam trap: answer the scenario, not the keyword
Splunk often tests the misconception that uploading a CSV file alone makes it usable as a lookup, but the trap here is that you must configure transforms.conf to define the lookup table, and optionally props.conf for automatic lookups. Simply uploading is insufficient.
Detailed technical explanation
How to think about this question
Under the hood, Splunk reads the CSV file from `$SPLUNK_HOME/etc/apps/<app>/lookups/` and uses the transforms.conf stanza to map the CSV columns to search-time fields. The lookup definition in props.conf (or the UI) ties the transforms.conf stanza name to a lookup name used in SPL commands. A subtle behavior: if the CSV file is updated, Splunk caches the file; you must either restart Splunk or use the `| lookup` command with `update_period` to refresh the data without restart.
KKey Concepts to Remember
- transforms.conf
- Static lookup
- props.conf
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
transforms.conf
Real-world example
How this comes up in practice
A practitioner preparing for the SPLK-1002 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. transforms.conf Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Review transforms.conf, then practise related SPLK-1002 questions on the same topic to reinforce the concept.
- →
Using Fields and Lookups — study guide chapter
Learn the concepts, then practise the questions
- →
Using Fields and Lookups practice questions
Targeted practice on this topic area only
- →
All SPLK-1002 questions
520 questions across all exam domains
- →
Splunk Core Certified User SPLK-1002 study guide
Full concept coverage aligned to exam objectives
- →
SPLK-1002 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SPLK-1002 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Splunk Basics and Interface Navigation practice questions
Practise SPLK-1002 questions linked to Splunk Basics and Interface Navigation.
Basic Searching and Transforming Commands practice questions
Practise SPLK-1002 questions linked to Basic Searching and Transforming Commands.
Using Fields and Lookups practice questions
Practise SPLK-1002 questions linked to Using Fields and Lookups.
Creating Reports, Dashboards and Visualizations practice questions
Practise SPLK-1002 questions linked to Creating Reports, Dashboards and Visualizations.
Data Models and Best Practices practice questions
Practise SPLK-1002 questions linked to Data Models and Best Practices.
SPLK-1002 fundamentals practice questions
Practise SPLK-1002 questions linked to SPLK-1002 fundamentals.
SPLK-1002 scenario practice questions
Practise SPLK-1002 questions linked to SPLK-1002 scenario.
SPLK-1002 troubleshooting practice questions
Practise SPLK-1002 questions linked to SPLK-1002 troubleshooting.
Practice this exam
Start a free SPLK-1002 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 SPLK-1002 question test?
Using Fields and Lookups — This question tests Using Fields and Lookups — transforms.conf.
What is the correct answer to this question?
The correct answer is: Define a lookup definition in props.conf and transforms.conf. — Option D is correct because to use a static CSV lookup in Splunk, you must upload the file to the lookups directory, then define a lookup stanza in transforms.conf specifying the filename and field mapping (e.g., `[users_lookup] filename = users.csv`). Optionally, you can create a lookup definition in props.conf for automatic field enrichment, but the lookup can be used manually via the `lookup` or `inputlookup` commands with just the transforms.conf entry. The key is that configuring both transforms.conf (mandatory) and props.conf (for automatic lookup) is the standard approach to fully integrate the lookup.
What should I do if I get this SPLK-1002 question wrong?
Review transforms.conf, then practise related SPLK-1002 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
transforms.conf
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 →
Same concept, more angles
1 more ways this is tested on SPLK-1002
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. A Splunk administrator is configuring a lookup to enrich firewall logs with a static CSV file containing allowed IP ranges. Which TWO statements about lookup configuration are correct?
hard- A.A KV Store lookup is required for static tables.
- ✓ B.The lookup definition must include the fields to match on from the event data.
- ✓ C.The CSV file can be uploaded through the Lookups menu in Settings.
- D.The lookup is defined in macros.conf.
- E.The CSV file must be placed in an absolute path on the search head.
Why B: Option B is correct because a lookup definition must specify the fields from the event data that will be used to match against the lookup table. This is configured in the 'Lookup definition' settings where you define the input fields (event fields) and output fields (lookup fields). Without this match configuration, Splunk cannot correlate the event data with the CSV file contents.
Keep practising
More SPLK-1002 practice questions
- During a data model acceleration build, the following error appears in splunkd.log: 'Data model acceleration: not enough…
- Which TWO are best practices for creating data models in Splunk? (Choose two.)
- A user reports that a data model acceleration is consuming excessive disk space on the indexer. The data model has a sum…
- A security analyst wants to investigate a suspicious IP address that appeared in multiple log sources. Which Splunk feat…
- A search includes the command '| stats dc(user) by host'. What does this command return?
- A large e-commerce company uses Splunk to monitor their web application. The operations team has noticed that the search…
Last reviewed: Jun 30, 2026
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.
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.