<?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: Create new rows from multi-value fields in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420116#M120798</link>
    <description>&lt;P&gt;Looks like it is working now. Thanks for your help.&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2019 18:52:35 GMT</pubDate>
    <dc:creator>robjackson</dc:creator>
    <dc:date>2019-04-22T18:52:35Z</dc:date>
    <item>
      <title>Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420106#M120788</link>
      <description>&lt;P&gt;So basically what we need is a new row with the new data. A new row for each value pair of Software and Version. &lt;/P&gt;

&lt;P&gt;If we have.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6921i6F4FD370004C94A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;We want this.&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6922iD41EEB1C695FC5C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 20:56:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420106#M120788</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2019-04-18T20:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420107#M120789</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Give a try&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval CI_Name="A",Software_installed="ms,info,block,top",Software_Version="2013,4.0,5.1,6" 
| eval Software_installed_temp=Software_installed, Software_Version_temp=Software_Version 
| makemv delim="," Software_installed 
| makemv delim="," Software_Version 
| eval temp = mvzip(Software_installed,Software_Version,",") 
| mvexpand temp 
| eval software_version= split(temp,",") 
| eval Software= mvindex(software_version,0) 
| eval SoftwareV= mvindex(software_version,1) 
| rename Software_installed_temp as Software_installed,Software_Version_temp as Software_Version 
| table CI_Name,Software_installed,Software_Version,Software,SoftwareV
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 18 Apr 2019 21:55:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420107#M120789</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-18T21:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420108#M120790</link>
      <description>&lt;P&gt;Hi @robjackson,&lt;BR /&gt;
   Please try below query.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval Cl_Name="A", Software_Installed="ms, info, block, top", Software_Version="2013, 4.0, 5.1, 6" 
| append 
    [| makeresults 
    | eval Cl_Name="B", Software_Installed="ms, info, block, top", Software_Version="2013, 4.0, 5.1, 6"] 
| append 
    [| makeresults 
    | eval Cl_Name="A", Software_Installed="ms, info, block, top", Software_Version="2013, 4.0, 5.1, 6"]
| table Cl_Name, Software_Installed, Software_Version
| eval soft_=Software_Installed
| eval ver_=Software_Version
| makemv soft_ delim=", "
| makemv ver_ delim=", "
| eval soft_zip = mvzip(soft_, ver_)
| mvexpand soft_zip
| rex field=soft_zip "(?&amp;lt;soft&amp;gt;.*),(?&amp;lt;ver&amp;gt;.*)"
| table Cl_Name Software_Installed, Software_Version, soft, ver
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Apr 2019 05:45:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420108#M120790</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-04-19T05:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420109#M120791</link>
      <description>&lt;P&gt;That works as a stand alone search.&lt;/P&gt;

&lt;P&gt;But returns no data when adding our search.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=something 
 | table Cl_Name, Software_Installed, Software_Version
 | eval soft_=Software_Installed
 | eval ver_=Software_Version
 | makemv soft_ delim=", "
 | makemv ver_ delim=", "
 | eval soft_zip = mvzip(soft_, ver_)
 | mvexpand soft_zip
 | rex field=soft_zip "(?&amp;lt;soft&amp;gt;.*),(?&amp;lt;ver&amp;gt;.*)"
 | table Cl_Name Software_Installed, Software_Version, soft, ver
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or since   | makeresults  must be the first command. the index=something returns over 15,000 CI_Name, but this search returns 0.&lt;/P&gt;

&lt;P&gt;If it would work I would expect 2 million rows. So CI_Name X (Software_Installed X Softeware_Version). &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | makeresults 
 [| search index=something]
 | table Cl_Name, Software_Installed, Software_Version
 | eval soft_=Software_Installed
 | eval ver_=Software_Version
 | makemv soft_ delim=", "
 | makemv ver_ delim=", "
 | eval soft_zip = mvzip(soft_, ver_)
 | mvexpand soft_zip
 | rex field=soft_zip "(?&amp;lt;soft&amp;gt;.*),(?&amp;lt;ver&amp;gt;.*)"
 | table Cl_Name Software_Installed, Software_Version, soft, ver
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:07:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420109#M120791</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420110#M120792</link>
      <description>&lt;P&gt;Parts of it work. But it only returns 15,000 CI_Name. &lt;/P&gt;

&lt;P&gt;soft = the Softeware_Installed and Software_Version&lt;BR /&gt;
ver= just the first value of the multi-value Software_Version&lt;/P&gt;

&lt;P&gt;Index=something&lt;/P&gt;

&lt;P&gt;| table CI_Name Software_Installed, Software_Version&lt;/P&gt;

&lt;P&gt;| eval soft_=Software_Installed&lt;BR /&gt;
 | eval ver_=Software_Version&lt;BR /&gt;
 | makemv soft_ delim=", "&lt;BR /&gt;
 | makemv ver_ delim=", "&lt;BR /&gt;
 | eval soft_zip = mvzip(soft_, ver_)&lt;BR /&gt;
 | mvexpand soft_zip&lt;BR /&gt;
 | rex field=soft_zip "(?.&lt;EM&gt;),(?.&lt;/EM&gt;)"&lt;BR /&gt;
 | table CI_Name Software_Installed, Software_Version, soft, ver, soft_, ver_&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:07:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420110#M120792</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420111#M120793</link>
      <description>&lt;P&gt;I got it to kinda of work.&lt;/P&gt;

&lt;P&gt;The delimiter in the data was " ," instead of ", ". However, when i run index=something and filter only items with something in Software_Installed. I get over 9,000 unique CI_Name items.&lt;/P&gt;

&lt;P&gt;the same search with the added extracts creates 52600 rows. But, only has 169 unique CI_Name items.&lt;/P&gt;

&lt;P&gt;index=something&lt;/P&gt;

&lt;P&gt;| table CI_Name Software_Installed, Software_Version &lt;BR /&gt;
| eval soft_=Software_Installed &lt;BR /&gt;
| eval ver_=Software_Version &lt;BR /&gt;
| makemv soft_ delim=" ," &lt;BR /&gt;
| makemv ver_ delim=" ," &lt;BR /&gt;
| eval soft_zip = mvzip(soft_, ver_) &lt;BR /&gt;
| mvexpand soft_zip &lt;BR /&gt;
| rex field=soft_zip "(?.&lt;EM&gt;),(?.&lt;/EM&gt;)" &lt;BR /&gt;
| table CI_Name Software_Installed, Software_Version, soft, ver, soft_, ver_&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:07:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420111#M120793</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420112#M120794</link>
      <description>&lt;P&gt;You need &lt;CODE&gt;makemv&lt;/CODE&gt; to make the fields multi-valued, and then &lt;CODE&gt;mvexpand&lt;/CODE&gt; to split them into individual rows:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Makemv"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Makemv&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Mvexpand"&gt;https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Mvexpand&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2019 14:44:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420112#M120794</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-04-21T14:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420113#M120795</link>
      <description>&lt;P&gt;The SPL works. But is only returning 51400 rows. Root cause the max_mem_usage_mb in the limits.conf is 500 MB and the search exceeds this. &lt;/P&gt;

&lt;P&gt;May have to change both settings below.&lt;/P&gt;

&lt;P&gt;max_mem_usage_mb = 500 #default memory usage per search is 200MB probably need to increase to support that many rows&lt;BR /&gt;
[searchresults]&lt;BR /&gt;
maxresultrows = 86400 #default return for rows is 50000&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:08:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420113#M120795</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420114#M120796</link>
      <description>&lt;P&gt;@robjackson try the following approach with &lt;CODE&gt;stats&lt;/CODE&gt; instead of &lt;CODE&gt;mvexpand&lt;/CODE&gt;. &lt;BR /&gt;
PS: I did not hit memory limit of 500 MB with mvexpand with &lt;CODE&gt;52K&lt;/CODE&gt; rows (most likely because the dummy data generation query using makeresults for demo purpose is way less expensive than your existing main search). So I bumped up makeresults rows to &lt;CODE&gt;520K&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;While stats worked fine for me, I had issue with &lt;CODE&gt;mvexpand&lt;/CODE&gt; results being truncated (query 2 below threw following message: &lt;CODE&gt;command.mvexpand: output will be truncated at 1497700 results due to excessive memory usage. Memory threshold of 500MB as configured in limits.conf / [mvexpand] / max_mem_usage_mb has been reached.&lt;/CODE&gt;)&lt;/P&gt;

&lt;P&gt;Please confirm that truncation is avoided with first stats query below or not:&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;STRONG&gt;Query with stats&lt;/STRONG&gt; (Search returned all 520000*4=2080000 results)&lt;/P&gt;

&lt;HR /&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults count=520000 
| fields - _time 
| eval CI_Name="A",Software_installed="ms,info,block,top",Software_Version="2013,4.0,5.1,6" 
| streamstats count as sno 
| eval sno=printf("%05d",sno), CI_Name=CI_Name.sno 
| fields - sno
| makemv delim="," Software_installed 
| makemv delim="," Software_Version 
| eval temp = mvzip(Software_installed,Software_Version,",") 
| stats count by CI_Name temp 
| fields - count 
| eval temp=split(temp,",") 
| eval Software_installed=mvindex(temp,0),Software_Version=mvindex(temp,1) 
| fields - temp
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;P&gt;*&lt;EM&gt;Query with mvexpand *&lt;/EM&gt; (Results got truncated due to mvexpand memory usage limit of 500 MB on my machine. Only 1497700 results returned)&lt;/P&gt;

&lt;HR /&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults count=520000 
| fields - _time 
| eval CI_Name="A",Software_installed="ms,info,block,top",Software_Version="2013,4.0,5.1,6" 
| streamstats count as sno 
| eval sno=printf("%05d",sno), CI_Name=CI_Name.sno 
| fields - sno
| makemv delim="," Software_installed 
| makemv delim="," Software_Version 
| eval temp = mvzip(Software_installed,Software_Version,",") 
| stats count by CI_Name temp 
| fields - count 
| eval temp=split(temp,",") 
| eval Software_installed=mvindex(temp,0),Software_Version=mvindex(temp,1) 
| fields - temp
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Apr 2019 18:15:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420114#M120796</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-22T18:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420115#M120797</link>
      <description>&lt;P&gt;I changed the following on the search head cluster.&lt;/P&gt;

&lt;P&gt;[mvexpand]&lt;BR /&gt;
max_mem_usage_mb = 2500&lt;/P&gt;

&lt;P&gt;the systems have plenty of ram. How high can we go for this setting? the report would run every 12 hours and output(overwrite) to a lookup.&lt;/P&gt;

&lt;P&gt;The error stopped but it still is not showing all of the data.&lt;/P&gt;

&lt;P&gt;there are over 4000 devices. Either still ram or the row returned max.&lt;/P&gt;

&lt;P&gt;before the change it showed 51400 rows which was only 19 device ( used Excel to remove duplicates).&lt;/P&gt;

&lt;P&gt;After the change it shows over 246k rows for 23 devices. But no memory error. &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:08:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420115#M120797</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420116#M120798</link>
      <description>&lt;P&gt;Looks like it is working now. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 18:52:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420116#M120798</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2019-04-22T18:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420117#M120799</link>
      <description>&lt;P&gt;@robjackson, first off, request you to &lt;CODE&gt;post a comment&lt;/CODE&gt; to any of the existing Answers that community members have provided. Posting comment as an Answer is misleading and due to your karma points requires moderators to publish the same (causing delay).&lt;/P&gt;

&lt;P&gt;Did you get to test and compare the two options provided in my answer above? Did the stats one work for you?&lt;/P&gt;

&lt;P&gt;The answer to question you have posted here &lt;CODE&gt;the systems have plenty of ram. How high can we go for this setting?&lt;/CODE&gt;, is that it depends on how much data you can test this with (in your test environment which simulates production configuration). &lt;/P&gt;

&lt;P&gt;Use my query above and keep extending the numbers until you get &lt;CODE&gt;max_mem_usage_mb&lt;/CODE&gt;. You would also need to continuously monitor your test machine memory usage with respect to splunkd process whether it reaches 100% or not. You may get to OS terminate splunkd process if it lead to full memory consumption, thereby terminating job.&lt;/P&gt;

&lt;P&gt;Also depending on the maximum number of software installed per CI, you can calculate the total number of events to be cooked up and total number of results to be displayed in the final results (maximum expected volume). However for us to assist you better you would need to provide more detail of your raw event for example, do you actually run the following command or do you perform stats aggregate before using table command? Are you interested only in the latest data per CI or not? Comma separated values exist for each CI or you perform some calculation to derive this in Splunk. Only after you can provide some more insight to your data we would be able to assist you better.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=something
 | table CI_Name Software_Installed, Software_Version
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Finally, I would suggest you to reach out to Splunk Support with your entitlement or else take Splunk Professional Services help as this issue seems more on your data/infrastructure and query performance tuning and scale kind of issue. Community assistance without access to your infrastructure/data would be a tough ask!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:13:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420117#M120799</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-22T19:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420118#M120800</link>
      <description>&lt;P&gt;@robjackson glad you got it to work! Do accept my answer above and up vote the comment/s that helped!&lt;BR /&gt;
As stated earlier, instead of posting a New Answer, use an existing answer or thread and use &lt;CODE&gt;Add comment&lt;/CODE&gt; to post your comment.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:14:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420118#M120800</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-22T19:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420119#M120801</link>
      <description>&lt;P&gt;@robjackson did you get your query working by &lt;CODE&gt;mvexpand&lt;/CODE&gt; with higher memory or by using &lt;CODE&gt;stats&lt;/CODE&gt; command? What is your final query?&lt;BR /&gt;
While posting code use the &lt;CODE&gt;code button on Splunk Answer&lt;/CODE&gt; i.e. &lt;CODE&gt;101010 or shortcut Ctrl+K&lt;/CODE&gt;, so that special characters in your search query does not escape.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:39:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420119#M120801</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-22T19:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420120#M120802</link>
      <description>&lt;P&gt;Had to change the max_mem_usage_mb in the local\limits.conf file on each search head. Default was 500.&lt;/P&gt;

&lt;P&gt;[mvexpand]&lt;BR /&gt;
max_mem_usage_mb = 2500&lt;/P&gt;

&lt;P&gt;index=something&lt;/P&gt;

&lt;P&gt;| eval soft_=Software_Installed &lt;BR /&gt;
| eval ver_=Software_Version &lt;BR /&gt;
| makemv soft_ delim=" ," &lt;BR /&gt;
| makemv ver_ delim=" ," &lt;BR /&gt;
| eval soft_zip = mvzip(soft_, ver_) &lt;BR /&gt;
| mvexpand soft_zip &lt;BR /&gt;
| rex field=soft_zip "(?.&lt;EM&gt;),(?.&lt;/EM&gt;)" &lt;BR /&gt;
| table *&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:08:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420120#M120802</guid>
      <dc:creator>robjackson</dc:creator>
      <dc:date>2020-09-30T00:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create new rows from multi-value fields</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420121#M120803</link>
      <description>&lt;P&gt;Ok refer to my previous answer with stats and you might not need to increase the memory limit as mvexpand need memory. ( up to you to try as your issue is already resolved) &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 20:02:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-new-rows-from-multi-value-fields/m-p/420121#M120803</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-04-22T20:02:28Z</dc:date>
    </item>
  </channel>
</rss>

