<?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: order changing with the table command ?? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100981#M26088</link>
    <description>&lt;P&gt;Hi MuS,&lt;/P&gt;

&lt;P&gt;when i am used like this..i am getting the newraw values alone...Received , Sent are not at all displayin ..pls help..&lt;/P&gt;</description>
    <pubDate>Thu, 25 Oct 2012 15:59:10 GMT</pubDate>
    <dc:creator>rakesh_498115</dc:creator>
    <dc:date>2012-10-25T15:59:10Z</dc:date>
    <item>
      <title>order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100977#M26084</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;

&lt;P&gt;When i am using the table command ? i am not getting the fields in the order i have ginen ??&lt;BR /&gt;
how can i do it be in the same order which i have mentioned ??&lt;/P&gt;

&lt;P&gt;my query is :&lt;/P&gt;

&lt;P&gt;soucetype="mydata" | table _raw,Recieved,Sent&lt;/P&gt;

&lt;P&gt;i want this order of display . but i am gettin in Received,Sent,_raw in this order ..pls help..i want the same order mentiond with the table commmand .. &lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2012 12:59:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100977#M26084</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-10-24T12:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100978#M26085</link>
      <description>&lt;P&gt;Use &lt;CODE&gt;fields&lt;/CODE&gt;.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;fields _raw,Received,Sent
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Oct 2012 14:33:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100978#M26085</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-10-24T14:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100979#M26086</link>
      <description>&lt;P&gt;fields command is not working like this .... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 10:06:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100979#M26086</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-10-25T10:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100980#M26087</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;it took me some reading the docs and trying out of some commands and I got what you are looking for &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;the easiest way is to rename _raw to anything and use the new field name in the table:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; soucetype="mydata" | rename _raw as newraw | table newraw, Recieved, Sent
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;there are probably more effective ways of doing this, but it worked for example you provided and it answers your question.&lt;/P&gt;

&lt;P&gt;cheers,&lt;/P&gt;

&lt;P&gt;MuS&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 11:00:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100980#M26087</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2012-10-25T11:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100981#M26088</link>
      <description>&lt;P&gt;Hi MuS,&lt;/P&gt;

&lt;P&gt;when i am used like this..i am getting the newraw values alone...Received , Sent are not at all displayin ..pls help..&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 15:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100981#M26088</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-10-25T15:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100982#M26089</link>
      <description>&lt;P&gt;rakesh, sorry but I hope you are aware that you can scroll a windows not only up and down but also to the left or to the right? _raw is usually very long, therefore received and sent are WAY ON THE RIGHT of your screen.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2012 08:01:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100982#M26089</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2012-10-26T08:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100983#M26090</link>
      <description>&lt;P&gt;Thans Mus .. i got it now ..:)&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2012 19:23:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100983#M26090</guid>
      <dc:creator>rakesh_498115</dc:creator>
      <dc:date>2012-10-26T19:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100984#M26091</link>
      <description>&lt;P&gt;Best way to do it as below&lt;BR /&gt;
 &lt;STRONG&gt;&lt;EM&gt;soucetype="mydata" | rename _raw as newraw | table Recieved, Sent, newraw&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;
it will adjust raw data at most right position.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jul 2016 04:08:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100984#M26091</guid>
      <dc:creator>rajeev_ku</dc:creator>
      <dc:date>2016-07-20T04:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: order changing with the table command ??</title>
      <link>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100985#M26092</link>
      <description>&lt;P&gt;| table Receive,sent,_raw&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 07:01:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/order-changing-with-the-table-command/m-p/100985#M26092</guid>
      <dc:creator>arihant16cse</dc:creator>
      <dc:date>2019-02-07T07:01:05Z</dc:date>
    </item>
  </channel>
</rss>

