All Apps and Add-ons

Passing varible dbQuery

rsathish47
Contributor

Hi All,
I want to pass the value to the db query in the splunk search . Please let me know is their anyway and provide me example.

my Query:
Am not able to pass the value to the dbQuery and getting error please help.

| eval grName="'CMT%'" | dbquery Remedy "SELECT Organization, Group_Name FROM tableName where Assignment_Support_Organization like " + grName

Thanks
Sathish R

Tags (1)
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

You can pass values from the results to another search using the map command. In your case, it'd look something like this:

base search producing grName fields | map search="dbquery Remedy \"SELECT Organization, Group_Name FROM tableName where Assignment_Support_Organization like $grName$\""

One important thing to note: This will launch one search for every result produced by the search pipeline before the map. If you want to launch a lot of searches you'll need to modify the safeguard maxsearches parameter that stops accidental floods of searches from happening. See http://docs.splunk.com/Documentation/Splunk/6.0.2/SearchReference/map for reference.

rsathish47
Contributor

Thank you Marty... I will check and post my comment

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...