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"]
Happy Splunking!
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

Happy Splunking!
0 Karma

asabatini85
Path Finder

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

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...