<?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: remove column name from |table result in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56011#M13692</link>
    <description>&lt;P&gt;if ever  2 data in one field and they are Domain_Name = Domestic_Dev and Domain_Name = Domestic_QA I want to remove the  Domain_Name =Domestic_QA&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 19:41:05 GMT</pubDate>
    <dc:creator>atulod1</dc:creator>
    <dc:date>2020-09-29T19:41:05Z</dc:date>
    <item>
      <title>remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56006#M13687</link>
      <description>&lt;P&gt;I have a search that provides a table result:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host="host1" index="main" | head 1 | table index host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is it possible to remove or ommit  the column name  from the result?&lt;/P&gt;

&lt;P&gt;I've tried:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host="host1" index="main" | head 1 | rename host AS NULL, index AS NULL | table NULL NULL
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;any carrots for the Chubbybunny?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(\__/)
(='.'=)
(")_(")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 18 May 2012 23:46:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56006#M13687</guid>
      <dc:creator>Chubbybunny</dc:creator>
      <dc:date>2012-05-18T23:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56007#M13688</link>
      <description>&lt;P&gt;You should be able to use the fields command:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/fields"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/fields&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;So to omit the "carrots" field:&lt;/P&gt;

&lt;P&gt;host="host1" index="main" | head 1 | table index host | fields - carrots&lt;/P&gt;

&lt;P&gt;HTH&lt;/P&gt;

&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Sat, 19 May 2012 00:56:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56007#M13688</guid>
      <dc:creator>dshpritz</dc:creator>
      <dc:date>2012-05-19T00:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56008#M13689</link>
      <description>&lt;P&gt;That will omit the field AND the header. I think the bunny just wants to omit the header.&lt;/P&gt;</description>
      <pubDate>Sat, 19 May 2012 22:22:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56008#M13689</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2012-05-19T22:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56009#M13690</link>
      <description>&lt;P&gt;This is a kludge, but it might work.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host="host1" index="main" | head 1 | 
fields - _raw _time |
fields + host index |
rename host AS " ", index AS "   " 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When this search runs, I think that the Table view button will show you what you want. It will still have a header area, but it should be blank. &lt;/P&gt;

&lt;P&gt;I think there are easier ways, though, if you want to put this in a dashboard....&lt;/P&gt;</description>
      <pubDate>Sat, 19 May 2012 22:29:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56009#M13690</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2012-05-19T22:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56010#M13691</link>
      <description>&lt;P&gt;Don't ask for a field if you just plan to exclude it. I've tried to do this, and, AFAIK, there isn't a way to do this successfully. You'll always end up with a header, and presuming you're trying to export these results into something else, you'll end up with trouble. Just duplicate the search and leave the field off, save yourself a headache on the other side of things. &lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2012 18:23:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56010#M13691</guid>
      <dc:creator>jbsplunk</dc:creator>
      <dc:date>2012-05-30T18:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: remove column name from |table result</title>
      <link>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56011#M13692</link>
      <description>&lt;P&gt;if ever  2 data in one field and they are Domain_Name = Domestic_Dev and Domain_Name = Domestic_QA I want to remove the  Domain_Name =Domestic_QA&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 19:41:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/remove-column-name-from-table-result/m-p/56011#M13692</guid>
      <dc:creator>atulod1</dc:creator>
      <dc:date>2020-09-29T19:41:05Z</dc:date>
    </item>
  </channel>
</rss>

