<?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: how to show a table in if in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347691#M102971</link>
    <description>&lt;P&gt;its like this :&lt;/P&gt;

&lt;P&gt;Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-FR'&lt;BR /&gt;
Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-MM'&lt;/P&gt;

&lt;P&gt;these are 4 rows ...&lt;BR /&gt;
my job is clubbed like this, first is the database acquisition(this is the start time) , next is the commit of processing state started . Ex; For job FR , my job start time is the time for database acquisition . and then the job starts at commit of processing time..but my actual time the job FR started in system is the one for database aqcuisition .....&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 15:51:57 GMT</pubDate>
    <dc:creator>Mohsin123</dc:creator>
    <dc:date>2020-09-29T15:51:57Z</dc:date>
    <item>
      <title>how to show a table in if</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347688#M102968</link>
      <description>&lt;P&gt;My question is :&lt;BR /&gt;
i have output in this format :&lt;BR /&gt;
a     _time&lt;BR /&gt;
b     _time&lt;BR /&gt;
a   _time&lt;BR /&gt;
b   _time&lt;/P&gt;

&lt;P&gt;i want all these outputs alone with a coloumn that gives the _time (as start time) for only b type rows &lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2017 09:39:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347688#M102968</guid>
      <dc:creator>Mohsin123</dc:creator>
      <dc:date>2017-09-25T09:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to show a table in if</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347689#M102969</link>
      <description>&lt;P&gt;Hi shraddhamuduli,&lt;BR /&gt;
I don't know the fields you extracted, anyway, if "a" column name is "fieldA", try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your_search fieldA="b"
| table _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2017 09:53:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347689#M102969</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-09-25T09:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to show a table in if</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347690#M102970</link>
      <description>&lt;P&gt;current output - &lt;BR /&gt;
a _time&lt;BR /&gt;
b _time&lt;BR /&gt;
a _time&lt;BR /&gt;
b _time&lt;/P&gt;

&lt;P&gt;if you want the output be like - &lt;BR /&gt;
b _time&lt;BR /&gt;
b _time&lt;/P&gt;

&lt;PRE&gt; your_search fieldB="b"
 | table fieldB _time&lt;/PRE&gt;

&lt;P&gt;or, please update us your current query which gives the output as you shown on the question.. then we can edit that query..&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2017 10:29:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347690#M102970</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2017-09-25T10:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to show a table in if</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347691#M102971</link>
      <description>&lt;P&gt;its like this :&lt;/P&gt;

&lt;P&gt;Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-FR'&lt;BR /&gt;
Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-MM'&lt;/P&gt;

&lt;P&gt;these are 4 rows ...&lt;BR /&gt;
my job is clubbed like this, first is the database acquisition(this is the start time) , next is the commit of processing state started . Ex; For job FR , my job start time is the time for database acquisition . and then the job starts at commit of processing time..but my actual time the job FR started in system is the one for database aqcuisition .....&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347691#M102971</guid>
      <dc:creator>Mohsin123</dc:creator>
      <dc:date>2020-09-29T15:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to show a table in if</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347692#M102972</link>
      <description>&lt;P&gt;its like this :&lt;/P&gt;

&lt;P&gt;Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-FR'&lt;BR /&gt;
Starting Acquisition Sources Database source '20170924'SourceQuery_0 for DataSource 'Transaction' and Domain(s) TMS&lt;BR /&gt;
Commit of Processing State started for Domain 'TMS' and OrgUnit '-MM'&lt;/P&gt;

&lt;P&gt;these are 4 rows ...&lt;BR /&gt;
my job is clubbed like this, first is the database acquisition(this is the start time) , next is the commit of processing state started . Ex; For job FR , my job start time is the time for database acquisition . and then the job starts at commit of processing time..but my actual time the job FR started in system is the one for database aqcuisition .....&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:51:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-show-a-table-in-if/m-p/347692#M102972</guid>
      <dc:creator>Mohsin123</dc:creator>
      <dc:date>2020-09-29T15:51:59Z</dc:date>
    </item>
  </channel>
</rss>

