Splunk Search

How do you fetch table data from join table?

flzhang132
Explorer

There are two tables: "Table A" is a detailed information, and the "Table B" is the primary key.

The two tables are associated with the primary key and only queries the information in the matching A table.

Be similar to sql
seledt T1.id from T1,T2 where T1.id=T2.id
alt text

Tags (1)
0 Karma

renjith_nair
Legend

@flzhang132 ,

Assuming you have different indexes or source types where you have this data,

"your search to get first dataset" OR "your search to get the second dataset" 
|stats values(project_name) as project_name,values(region) as region,values(fee) as fee,values(dmon) as domon by resourceid

Another option is to use join, which should be avoided if possible due to performance considerations

"your search to get first dataset"
|join resourceid ["your search to get the second dataset"]
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

flzhang132
Explorer

please ? How can i get data from same table with self join
Be similar to sql
select T2.id
from table T1
,table T2
where T1.id = T2.id

0 Karma

renjith_nair
Legend

@flzhang132 , do you mean to say, you have these events in the same source? just for clarification, why do you need this join when you dont have any interesting field in the other dataset but all the fields are in say table A ? Do you have some sample events (mask any confidential data) to let us know what you have and what's your expected output

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

asabatini85
Path Finder

In that case it's better use the transaction comand for the self join.

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!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Best Practices: Splunk auto adjust pipeline queue

When you enable autoAdjustQueue in Splunk, maxSize should be understood as the queue size Splunk starts with ...

Request for Professional Development: Attending .conf26

Winning Over the Boss: Your Pass to .conf26 conf26 is going to be here before you know it. If don't already ...