<?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: Lookup instead of join in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542285#M153609</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the below queries,&lt;BR /&gt;Query 1:&lt;BR /&gt;sourcetype = "email" [ | inputlookup tci WHERE type=emailaddress | rename indicator AS SenderAddress | dedup SenderAddress | fields SenderAddress ]&lt;BR /&gt;| stats count by SenderAddress&lt;BR /&gt;&lt;BR /&gt;For which I am getting the job status as,&amp;nbsp;&lt;BR /&gt;[subsearch]: Subsearch produced 4815473 results, truncating to maxout 10000.&lt;BR /&gt;&lt;BR /&gt;I hope so because of having subsearch and hence tried,&lt;BR /&gt;Query 2:&amp;nbsp;sourcetype="email" | rename SenderAddress as indicator |lookup tci indicator output type|where isnotnull(type)|dedup indicator|table indicator FromIP dest action RecipientAddress Subject Received&lt;BR /&gt;&lt;BR /&gt;I am getting the desired result for the second query. But the only thing is I am not able to filter tci lookup. For example If I want to lookup tci which has tag!="sample",&amp;nbsp; I tried something like below but is not working,&lt;BR /&gt;&lt;BR /&gt;sourcetype="email" | rename SenderAddress as indicator |lookup tci indicator output type|where isnotnull(type)|where tag!="sample"|dedup indicator|table indicator FromIP dest action RecipientAddress Subject Received&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Mar 2021 04:57:54 GMT</pubDate>
    <dc:creator>Janani_Krish</dc:creator>
    <dc:date>2021-03-04T04:57:54Z</dc:date>
    <item>
      <title>Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541937#M153479</link>
      <description>&lt;P&gt;Currently I am using below query to run my search to get the common event in tc and email,&lt;BR /&gt;&lt;BR /&gt;|inputlookup tc | search type=emailaddress| rename indicator as SenderAddress |dedup SenderAddress | table SenderAddress| union [ search sourcetype = "email"| dedup SenderAddress| table SenderAddress ] | stats count by SenderAddress | where count &amp;gt; 1 | table SenderAddress&lt;BR /&gt;&lt;BR /&gt;But since my search is heavy, I am getting the below status in job,&lt;BR /&gt;&lt;SPAN&gt;No results found. Try expanding the time range.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;No matching fields exist.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[subsearch]: The search auto-finalized after it reached its time limit: 30 seconds.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Hence I am directed to use lookup command after googling, and I tried the following query but it is not working,&lt;BR /&gt;sourcetype = "email" |rename SenderAddress as indicator |dedup indicator&lt;BR /&gt;|lookup tci indicator |stats count by indicator&lt;BR /&gt;&lt;BR /&gt;Please suggest.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 10:44:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541937#M153479</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-02T10:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541948#M153483</link>
      <description>&lt;P&gt;In what way is it not working? Given that you dedup indicator, won't your counts always be 1?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 11:26:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541948#M153483</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-03-02T11:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541949#M153484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;what's you need:&amp;nbsp;filter events from the index matching the lookup or&amp;nbsp;other?&lt;/P&gt;&lt;P&gt;Anyway, if you need to filter your data matching the lookup you can use something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype = "email" [ | inputlookup tci | rename indicator AS SenderAddress | fields SenderAddress ]
| dedup SenderAddress 
| stats count by SenderAddress&lt;/LI-CODE&gt;&lt;P&gt;One additional hint: use always the index in the main search to have quicker searches!&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 02 Mar 2021 11:30:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/541949#M153484</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-02T11:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542089#M153547</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am getting the below issue when I am querying like that,&lt;BR /&gt;&lt;STRONG&gt;[subsearch]: Subsearch produced 4815473 results, truncating to maxout 10000.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Hence I tried to use lookup. Is there any other way to overcome this.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 08:06:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542089#M153547</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-03T08:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542090#M153548</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I didn't understand that you lookup is so huge!&lt;/P&gt;&lt;P&gt;Anyway, tryto filter it:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype = "email" [ | inputlookup WHERE tci type=emailaddress | rename indicator AS SenderAddress | dedup SenderAddress | fields SenderAddress ]
| stats count by SenderAddress&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 08:11:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542090#M153548</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-03T08:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542091#M153549</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Not working in the sense I am not getting the desired result. My intention is to do inner join and get the common indicator set between sourcetype=email and inputlookup=tc.&amp;nbsp; But If I am using sub search in my query it is either truncating the result or getting timed out.&lt;/P&gt;&lt;P&gt;I just tested with dedup and without dedup to setup any logic.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 08:13:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542091#M153549</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-03T08:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542096#M153552</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting timeout error If I filter with Address like below,&lt;BR /&gt;[subsearch]: Subsearch produced 1924551 results, truncating to maxout 10000.&lt;/P&gt;&lt;P&gt;It is still huge.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 08:27:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542096#M153552</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-03T08:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542172#M153572</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry, there'a an error of mine!&lt;/P&gt;&lt;P&gt;please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype = "email" [ | inputlookup tci WHERE type=emailaddress | rename indicator AS SenderAddress | dedup SenderAddress | fields SenderAddress ]
| stats count by SenderAddress&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 14:20:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542172#M153572</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-03T14:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542285#M153609</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the below queries,&lt;BR /&gt;Query 1:&lt;BR /&gt;sourcetype = "email" [ | inputlookup tci WHERE type=emailaddress | rename indicator AS SenderAddress | dedup SenderAddress | fields SenderAddress ]&lt;BR /&gt;| stats count by SenderAddress&lt;BR /&gt;&lt;BR /&gt;For which I am getting the job status as,&amp;nbsp;&lt;BR /&gt;[subsearch]: Subsearch produced 4815473 results, truncating to maxout 10000.&lt;BR /&gt;&lt;BR /&gt;I hope so because of having subsearch and hence tried,&lt;BR /&gt;Query 2:&amp;nbsp;sourcetype="email" | rename SenderAddress as indicator |lookup tci indicator output type|where isnotnull(type)|dedup indicator|table indicator FromIP dest action RecipientAddress Subject Received&lt;BR /&gt;&lt;BR /&gt;I am getting the desired result for the second query. But the only thing is I am not able to filter tci lookup. For example If I want to lookup tci which has tag!="sample",&amp;nbsp; I tried something like below but is not working,&lt;BR /&gt;&lt;BR /&gt;sourcetype="email" | rename SenderAddress as indicator |lookup tci indicator output type|where isnotnull(type)|where tag!="sample"|dedup indicator|table indicator FromIP dest action RecipientAddress Subject Received&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 04:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542285#M153609</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-04T04:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542305#M153617</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if the first search doesn't run this means that also filtering your lookup for&amp;nbsp;&lt;SPAN&gt;type=emailaddress&amp;nbsp;you have too many results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyway, why do you say that the second one deosn't run? what's the error?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;you could tryto invert the two where conditions &lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| where tag!="sample"
| where isnotnull(type)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;or put them in one condition using AND&amp;nbsp;&amp;nbsp;(in this case you have to use it explicitly)&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| where isnotnull(type)AND tag!="sample"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 04 Mar 2021 07:55:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542305#M153617</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-04T07:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542441#M153656</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I dont know what is the error there I cant even mention the name tag.name in output field. It is returning error,&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;sourcetype="email*" | rename SenderAddress as indicator |lookup tci indicator output type,"tag.name" as tag|where isnotnull(type)|dedup indicator|table indicator tag&lt;BR /&gt;&lt;BR /&gt;Error:&lt;BR /&gt;Error in 'lookup' command: Could not find all of the specified destination fields in the lookup table.&lt;BR /&gt;&lt;BR /&gt;But I am able to filter tag.name field in tci lookup as below,&lt;BR /&gt;|inputlookup tci|search tag.name="*sample"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 04:23:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542441#M153656</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-05T04:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542472#M153665</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;did you tried to manually rename your lookup field to see if this is the problem?&lt;/P&gt;&lt;P&gt;I'm not sure that you can have a dot inside a field name in lookup.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 07:30:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542472#M153665</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-05T07:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542484#M153669</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I can rename my field like below,&lt;BR /&gt;|inputlookup tci|search indicator="*"|rename tag.name as tag|table indicator tag&lt;BR /&gt;&lt;BR /&gt;Also I looked into definition of tci lookup where I could see in supported field column it is, "tag".&lt;BR /&gt;So I ran the query as below,&lt;BR /&gt;sourcetype="ms:o365*" | rename SenderAddress as indicator |lookup tci indicator output type,rating,tag|where isnotnull(type)|dedup indicator|table indicator&amp;nbsp; tag&lt;BR /&gt;&lt;BR /&gt;Now I am not getting any error, but my tag column is empty.&lt;BR /&gt;&lt;BR /&gt;Then I tried running the below query without renaming tag.name field since tag field was supported in earlier query,&lt;BR /&gt;|inputlookup tci|search indicator="*"|table indicator tag&lt;BR /&gt;Here it says, I can rename my field like below,&lt;BR /&gt;|inputlookup tci|search indicator="*"|rename tag.name as tag|table indicator tag&lt;BR /&gt;&lt;BR /&gt;Also I looked into definition of tci lookup where I could see in supported field column it is, "tag".&lt;BR /&gt;So I ran the query as below,&lt;BR /&gt;sourcetype="ms:o365*" | rename SenderAddress as indicator |lookup tci indicator output type,rating,tag|where isnotnull(type)|dedup indicator|table indicator&amp;nbsp; tag&lt;BR /&gt;&lt;BR /&gt;Now I am not getting any error, but my tag column is empty.&lt;BR /&gt;&lt;BR /&gt;Then I tried running the below query without renaming tag.name field sice tag field was supported in earlier query,&lt;BR /&gt;|inputlookup tci|search indicator="*"|table indicator tag&lt;BR /&gt;Here it says, No field match the criteria.I can rename my field like below,&lt;BR /&gt;|inputlookup tci|search indicator="*"|rename tag.name as tag|table indicator tag&lt;BR /&gt;&lt;BR /&gt;Also I looked into definition of tci lookup where I could see in supported field column it is, "tag".&lt;BR /&gt;So I ran the query as below,&lt;BR /&gt;sourcetype="ms:o365*" | rename SenderAddress as indicator |lookup tci indicator output type,rating,tag|where isnotnull(type)|dedup indicator|table indicator&amp;nbsp; tag&lt;BR /&gt;&lt;BR /&gt;Now I am not getting any error, but my tag column is empty.&lt;BR /&gt;&lt;BR /&gt;Then I tried running the below query without renaming tag.name field sice tag field was supported in earlier query,&lt;BR /&gt;|inputlookup tci|search indicator="*"|table indicator tag&lt;BR /&gt;Here it says, No matching fields exist.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 08:02:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542484#M153669</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-05T08:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542485#M153670</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Sorry for my previous post. It had repetitions,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I can rename my field like below,&lt;BR /&gt;|inputlookup tci|search indicator="*"|rename tag.name as tag|table indicator tag&lt;/P&gt;&lt;P&gt;Also I looked into definition of tci lookup where I could see in supported field column it is, "tag".&lt;BR /&gt;So I ran the query as below,&lt;BR /&gt;sourcetype="ms:o365*" | rename SenderAddress as indicator |lookup tci indicator output type,rating,tag|where isnotnull(type)|dedup indicator|table indicator tag&lt;/P&gt;&lt;P&gt;Now I am not getting any error, but my tag column is empty.&lt;/P&gt;&lt;P&gt;Then I tried running the below query without renaming tag.name field since tag field was supported in earlier query,&lt;BR /&gt;|inputlookup tci|search indicator="*"|table indicator tag&lt;/P&gt;&lt;P&gt;Here it says, No matching fields exist.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 08:07:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542485#M153670</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-05T08:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542490#M153673</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;only for test:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;manually change the field name from&amp;nbsp;&lt;SPAN&gt;tag.name into tag&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;reload the data in the lookup&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;rerun the search.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Ciao.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Giuseppe&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 08:11:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542490#M153673</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-05T08:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542504#M153679</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The field itself is mentioned only "tag" in definition. PFB the image,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Janani_Krish_0-1614933101774.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13186iE39C93436E4DDE0F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Janani_Krish_0-1614933101774.png" alt="Janani_Krish_0-1614933101774.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But when I run |inputlookup tci|search indicator="*" the results are like below with tag.name field,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Janani_Krish_1-1614933339057.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13187i2D3746C84A5E663F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Janani_Krish_1-1614933339057.png" alt="Janani_Krish_1-1614933339057.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My cases is same as described in post,&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-command-doesn-t-support-dot-notation-in-field-name/m-p/500643" target="_blank"&gt;https://community.splunk.com/t5/All-Apps-and-Add-ons/Lookup-command-doesn-t-support-dot-notation-in-field-name/m-p/500643&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also I tried,&lt;BR /&gt;sourcetype="ms:o365*" | rename SenderAddress as indicator |lookup tci indicator output type,rating,tag as tag.name|where isnotnull(type)|dedup indicator|table indicator&amp;nbsp; tag.name&lt;BR /&gt;&lt;BR /&gt;Still getting empty field.&lt;BR /&gt;&lt;BR /&gt;Is there any other way where I can rename my field manually except getting into lookup definitions.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 08:38:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542504#M153679</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-03-05T08:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542513#M153681</link>
      <description>&lt;P&gt;I&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223190"&gt;@Janani_Krish&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;have you the field name "tag" in both the lookup kv Store (file collections.conf) and the lookup definition (file transforms.conf)?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 09:04:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/542513#M153681</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-03-05T09:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup instead of join</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/550225#M156136</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Finally they have renamed the field in config files also and now it is working. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 12:37:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Lookup-instead-of-join/m-p/550225#M156136</guid>
      <dc:creator>Janani_Krish</dc:creator>
      <dc:date>2021-05-03T12:37:23Z</dc:date>
    </item>
  </channel>
</rss>

