<?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: Split apart MV column into other columns in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556736#M158120</link>
    <description>&lt;P&gt;First of all, you can't have two columns (fields) with the same name. Secondly, how do you know which dependency is an(other) application and which is a server?&lt;/P&gt;</description>
    <pubDate>Tue, 22 Jun 2021 16:46:38 GMT</pubDate>
    <dc:creator>ITWhisperer</dc:creator>
    <dc:date>2021-06-22T16:46:38Z</dc:date>
    <item>
      <title>Split apart MV column into other columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556733#M158118</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a MV field that I need to split apart into other mv fields&lt;/P&gt;&lt;P&gt;Here is the result of the query&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dcase999_0-1624379599124.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14755i3360614D766F4ED6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dcase999_0-1624379599124.png" alt="dcase999_0-1624379599124.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want it to look like is&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dcase999_1-1624379947828.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/14756i694EBFD504676E86/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dcase999_1-1624379947828.png" alt="dcase999_1-1624379947828.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been fighting with MV commands but nothing seems to work quite like I wanted it to sooooo I figured I'd raise my hand and ask the Splunk Wizards &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 16:42:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556733#M158118</guid>
      <dc:creator>dcase999</dc:creator>
      <dc:date>2021-06-22T16:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Split apart MV column into other columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556736#M158120</link>
      <description>&lt;P&gt;First of all, you can't have two columns (fields) with the same name. Secondly, how do you know which dependency is an(other) application and which is a server?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 16:46:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556736#M158120</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-22T16:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Split apart MV column into other columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556740#M158123</link>
      <description>&lt;P&gt;ooops on the application name - you are right, that can be changed to anything else&lt;/P&gt;&lt;P&gt;On the "what is an application vs what is a server" question, anything that begins with C-S would be a server, anything else would be an application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 16:56:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556740#M158123</guid>
      <dc:creator>dcase999</dc:creator>
      <dc:date>2021-06-22T16:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Split apart MV column into other columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556744#M158126</link>
      <description>&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval Criticality=1, Application="APblah", Name="Fred Flintstone", Dependencies=split("APsomeotherblah,DNSsomething,C-Ssomeserver,C-Ssomeotherserver",",")
| table Criticality Application Name Dependencies
| eval Servers=mvfilter(match(Dependencies,"^C-S.*"))
| eval Applications=mvfilter(NOT match(Dependencies,"^C-S.*"))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 22 Jun 2021 17:04:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556744#M158126</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-06-22T17:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split apart MV column into other columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556747#M158128</link>
      <description>&lt;P&gt;ok, wow that is most impressive!&amp;nbsp; Many thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;!!!!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 17:13:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Split-apart-MV-column-into-other-columns/m-p/556747#M158128</guid>
      <dc:creator>dcase999</dc:creator>
      <dc:date>2021-06-22T17:13:38Z</dc:date>
    </item>
  </channel>
</rss>

