<?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 How to find the delta, what values are missing in lookup table comparing the actual data? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653562#M225849</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am facing issues to find delta.&lt;/P&gt;&lt;P&gt;I have:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lookup Table&lt;/STRONG&gt;: testpolicies.csv&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field names in Lookup&lt;/STRONG&gt;: policyname&lt;/P&gt;&lt;P&gt;index=test sourcetype =test_sourcetype policy=*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field names :&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;policy&lt;/P&gt;&lt;P&gt;Now, need to compare Lookup table with&amp;nbsp; sourcetype using policy field and find all the records/rows which are not exist in Lookup table but in sourcetype. This comparison is based on policy field&lt;/P&gt;&lt;P&gt;Any recommendations will be highly appreciated. Thank you so much.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Aug 2023 11:22:06 GMT</pubDate>
    <dc:creator>innoce</dc:creator>
    <dc:date>2023-08-08T11:22:06Z</dc:date>
    <item>
      <title>How to find the delta, what values are missing in lookup table comparing the actual data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653562#M225849</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am facing issues to find delta.&lt;/P&gt;&lt;P&gt;I have:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Lookup Table&lt;/STRONG&gt;: testpolicies.csv&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field names in Lookup&lt;/STRONG&gt;: policyname&lt;/P&gt;&lt;P&gt;index=test sourcetype =test_sourcetype policy=*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field names :&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;policy&lt;/P&gt;&lt;P&gt;Now, need to compare Lookup table with&amp;nbsp; sourcetype using policy field and find all the records/rows which are not exist in Lookup table but in sourcetype. This comparison is based on policy field&lt;/P&gt;&lt;P&gt;Any recommendations will be highly appreciated. Thank you so much.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 11:22:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653562#M225849</guid>
      <dc:creator>innoce</dc:creator>
      <dc:date>2023-08-08T11:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the delta, what values are missing in lookup table comparing the actual data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653563#M225850</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=test sourcetype=test_sourcetype NOT [| inputlookup testpolicies.csv | rename policyname as policy | table policy]&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 08 Aug 2023 11:30:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653563#M225850</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-08T11:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the delta, what values are missing in lookup table comparing the actual data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653565#M225851</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; Hi, This is the expected behaviour&lt;BR /&gt;&lt;BR /&gt;data:&lt;BR /&gt;policy 1&lt;BR /&gt;policy 11&lt;BR /&gt;policy 111&lt;BR /&gt;policy 2&lt;BR /&gt;policy 22&lt;BR /&gt;policy 222&lt;/P&gt;&lt;P&gt;testpolicies.csv&lt;BR /&gt;policy 11&lt;BR /&gt;policy 22&lt;BR /&gt;policy 222&lt;/P&gt;&lt;P&gt;Expected result:&lt;BR /&gt;policy 1&lt;BR /&gt;policy 111&lt;BR /&gt;policy 2&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 12:28:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653565#M225851</guid>
      <dc:creator>innoce</dc:creator>
      <dc:date>2023-08-08T12:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to find the delta, what values are missing in lookup table comparing the actual data?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653567#M225852</link>
      <description>&lt;P&gt;Your expected result is the opposite of what you said you are trying to do&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/237678"&gt;@innoce&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;Now, need to compare Lookup table with&amp;nbsp; sourcetype using policy field and find all the records/rows which are not exist in Lookup table but in sourcetype. This comparison is based on policy field&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Please clarify which way round you want it&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 11:56:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-find-the-delta-what-values-are-missing-in-lookup-table/m-p/653567#M225852</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-08-08T11:56:44Z</dc:date>
    </item>
  </channel>
</rss>

