<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Outer Join not working in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462456#M130382</link>
    <description>&lt;P&gt;Brill - thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2020 10:35:31 GMT</pubDate>
    <dc:creator>robertlynch2020</dc:creator>
    <dc:date>2020-02-10T10:35:31Z</dc:date>
    <item>
      <title>Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462451#M130377</link>
      <description>&lt;P&gt;I have data in a CSV called 25_million_Linie_Rule.csv  (example below)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host,source,count
"INTERFACES_BUILD","/hp547srv1/apps/INTERFACES_BUILD/logs/traces/mxtiming_956675_hp547srv.fr.murex.com_**1254**.log",31436700
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I also have data in real time.&lt;BR /&gt;
If the data in rela time is the same as the .csv i don'twant to report it . So an &lt;STRONG&gt;outer join&lt;/STRONG&gt; is needed, but i cant get it to work.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats count where index="mlc_live" OR index="mxtiming_live" by host source 
| dedup source 
| sort 0 - count 
| head 10 
| where count &amp;gt; 25000000 
| table host source count 
| join type=outer source  
    [| inputlookup 25_million_Linie_Rule.csv  ]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;OUTPUT is below (However i get a line i already have in the csv, i should only get one line, the new line not the one i have in the .csv )&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host    source  count
INTERFACES_BUILD    /hp547srv1/apps/INTERFACES_BUILD/logs/traces/mxtiming_956675_hp547srv.fr.murex.com_**1254**.log 31436700
INTERFACES_BUILD    /hp547srv1/apps/INTERFACES_BUILD/logs/traces/mxtiming_956678_hp547srv.fr.murex.com_**1992**.log 26617140
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any help would be great&lt;BR /&gt;
Rob&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:02:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462451#M130377</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-09-30T04:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462452#M130378</link>
      <description>&lt;P&gt;I think the join is working as intended. Because the same event that lives in your &lt;CODE&gt;25_million_Linie_Rule.csv&lt;/CODE&gt; also would be found in your real-time main search. Doing the join should not remove events found in your main search that match those events in your &lt;CODE&gt;25_million_Linie_Rule.csv&lt;/CODE&gt; as I think you want. &lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 20:08:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462452#M130378</guid>
      <dc:creator>13tsavage</dc:creator>
      <dc:date>2020-02-05T20:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462453#M130379</link>
      <description>&lt;PRE&gt;&lt;CODE&gt; | tstats count where index="mlc_live" OR index="mxtiming_live" by host source 
 | dedup source 
 | sort 0 - count 
 | head 10 
 | where count &amp;gt; 25000000 
 | table host source count 
 | join type=outer source  
     [| inputlookup 25_million_Linie_Rule.csv 
       | eval  csv=1]
 | where isnull(csv)
 | table host source count 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Feb 2020 20:47:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462453#M130379</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-05T20:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462454#M130380</link>
      <description>&lt;P&gt;Thanks for the replay, &lt;/P&gt;

&lt;P&gt;but i get &lt;/P&gt;

&lt;P&gt;Error in 'eval' command: Failed to parse the provided arguments. Usage: eval dest_key = expression.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 18:06:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462454#M130380</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-02-06T18:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462455#M130381</link>
      <description>&lt;P&gt;sorry, @robertlynch2020&lt;BR /&gt;
I forgot to erase it. my answer is updated.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 23:28:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462455#M130381</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-06T23:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join not working</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462456#M130382</link>
      <description>&lt;P&gt;Brill - thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 10:35:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Outer-Join-not-working/m-p/462456#M130382</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-02-10T10:35:31Z</dc:date>
    </item>
  </channel>
</rss>

