<?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: Convert single row values to multiple rows in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189296#M187142</link>
    <description>&lt;P&gt;How did you get the results that you are showing? What was the original search string? What does the data look like? Without this information, I don't think the community can help much.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Oct 2014 13:39:33 GMT</pubDate>
    <dc:creator>lguinn2</dc:creator>
    <dc:date>2014-10-30T13:39:33Z</dc:date>
    <item>
      <title>Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189295#M187141</link>
      <description>&lt;P&gt;Hi Srinath,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Srinath     USER1   IND0010001
              USER2     IND0010002
              USER3     IND0010003      
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;how to convert above single row values to seperate rows like below&lt;/P&gt;

&lt;P&gt;Srinath     USER1   IND0010001 &lt;/P&gt;

&lt;P&gt;Srinath USER2   IND0010002 &lt;/P&gt;

&lt;P&gt;Srinath USER3     IND0010003                                        &lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Srinath&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:18:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189295#M187141</guid>
      <dc:creator>srinathd</dc:creator>
      <dc:date>2014-10-30T13:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189296#M187142</link>
      <description>&lt;P&gt;How did you get the results that you are showing? What was the original search string? What does the data look like? Without this information, I don't think the community can help much.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:39:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189296#M187142</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-10-30T13:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189297#M187143</link>
      <description>&lt;P&gt;This is the search quiery &lt;/P&gt;

&lt;P&gt;index=test sourcetype=testuser | makemv delim="\xFD" APPLICATION | makemv delim="\xFD" COMPANY | makemv delim="\xFD" FUNCTION | stats list(APPLICATION) as application, list(COMPANY_RESTR) as company,  list(FUNCTION) as function by USER_NAME&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:02:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189297#M187143</guid>
      <dc:creator>srinathd</dc:creator>
      <dc:date>2020-09-28T18:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189298#M187144</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=test sourcetype=testuser | makemv delim="xFD" APPLICATION | makemv delim="xFD" COMPANY | makemv delim="xFD" FUNCTION | stats list(APPLICATION) as application, list(COMPANY_RESTR) as company, list(FUNCTION) as function by USER_NAME | eval temp=mvzip(mvzip(application,company,"#"),function,"#") | mvexpand temp | rex field=temp "(?&amp;lt;application&amp;gt;.*)#(?&amp;lt;company&amp;gt;.*)#(?&amp;lt;function&amp;gt;.*)" | fields - temp
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Oct 2014 14:33:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189298#M187144</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-10-30T14:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189299#M187145</link>
      <description>&lt;P&gt;Thanks a lot.. it is working well&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:18:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189299#M187145</guid>
      <dc:creator>srinathd</dc:creator>
      <dc:date>2014-10-30T15:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189300#M187146</link>
      <description>&lt;P&gt;It is fetching the first record for each user if any of the field which is used in the mvzip is null otherwise it is fetching all the records. It is working well if all the values present. &lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:37:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/189300#M187146</guid>
      <dc:creator>srinathd</dc:creator>
      <dc:date>2014-10-30T15:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert single row values to multiple rows</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/551727#M187147</link>
      <description>&lt;LI-CODE lang="markup"&gt;I also need to do this..... would you please explain me the code I didn't understood.

What is APPLICATION, FUNCTION... and USER_NAME here ? and how does it works&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 16 May 2021 02:53:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Convert-single-row-values-to-multiple-rows/m-p/551727#M187147</guid>
      <dc:creator>crepantherx</dc:creator>
      <dc:date>2021-05-16T02:53:36Z</dc:date>
    </item>
  </channel>
</rss>

