<?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: append new row with few different values kv store in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657549#M9685</link>
    <description>&lt;P&gt;You are not doing what I suggested in my first response&amp;nbsp;&lt;/P&gt;&lt;P&gt;Remove the key_field=_key&lt;/P&gt;&lt;P&gt;You are explicitly telling it to update the SAME row in KV store&lt;/P&gt;</description>
    <pubDate>Thu, 14 Sep 2023 07:24:40 GMT</pubDate>
    <dc:creator>bowesmana</dc:creator>
    <dc:date>2023-09-14T07:24:40Z</dc:date>
    <item>
      <title>How to append new row with few different values kv store?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657489#M9680</link>
      <description>&lt;P&gt;Here is my kv store lookup&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="20%" height="24px"&gt;name&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;rating&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;comment&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;experience&amp;nbsp;&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;subject&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="24px"&gt;A&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;3&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;good&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;4&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;math&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="24px"&gt;B&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;4&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;very good&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;7&lt;/TD&gt;
&lt;TD width="20%" height="24px"&gt;science&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now i want to append new row like this with different rating&lt;/P&gt;
&lt;TABLE border="1"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="94.675px" height="24px"&gt;name&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;rating&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;comment&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;experience&amp;nbsp;&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;subject&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="94.675px" height="24px"&gt;A&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;3&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;good&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;math&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="94.675px" height="24px"&gt;B&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;very good&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;7&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;science&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="94.675px" height="24px"&gt;A&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;5&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;Excellent&amp;nbsp;&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;
&lt;TD width="94.675px" height="24px"&gt;math&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i am trying to use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;| inputlookup table_a
      |search name="A" |eval rating=5 ,comment="Execellent" key=_key| outputlookup  append=true  key_field=key table_a&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this is not working..Please someone help me with this..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 17:12:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657489#M9680</guid>
      <dc:creator>sivaranjiniG</dc:creator>
      <dc:date>2023-09-14T17:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657508#M9681</link>
      <description>&lt;P&gt;In what way is it not working?&lt;/P&gt;&lt;P&gt;You are setting key_field to the key from the original record - which is what you would do if you are trying to update an existing row in the table, but you actually want to append a new row. Remove the &lt;STRONG&gt;key_field=key&lt;/STRONG&gt;, but keep the &lt;STRONG&gt;append=true&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 23:47:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657508#M9681</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-09-13T23:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657516#M9682</link>
      <description>&lt;P&gt;I tried it too.its not working&lt;/P&gt;&lt;P&gt;should i enable anything or add any property while creating lookup file&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 02:20:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657516#M9682</guid>
      <dc:creator>sivaranjiniG</dc:creator>
      <dc:date>2023-09-14T02:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657519#M9683</link>
      <description>&lt;P&gt;Are you talking about lookup files or kv stores?&lt;/P&gt;&lt;P&gt;Can you describe what is not 'working' and give an example of what you see when you try the commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 03:24:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657519#M9683</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-09-14T03:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657525#M9684</link>
      <description>&lt;P&gt;Its KV store..&lt;/P&gt;&lt;P&gt;when i try to add a row its updating the existing row&lt;/P&gt;&lt;P&gt;example, instead of this output i am getting&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;name&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;rating&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;comment&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;experience&amp;nbsp;&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;subject&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;A&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;3&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;good&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;math&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;B&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;very good&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;7&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;science&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;A&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;5&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;Excellent&amp;nbsp;&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;math&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;this,&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;name&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;rating&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;comment&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;experience&amp;nbsp;&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;subject&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;A&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;5&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;Excellent&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;math&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="94.675px" height="24px"&gt;B&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;4&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;very good&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;7&lt;/TD&gt;&lt;TD width="94.675px" height="24px"&gt;science&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried these 2 solutions, I thought i dont have write access but i have i can update the&amp;nbsp; file but not able to add a new row&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup table_a
      |search name="A" |eval rating=5 ,comment="Execellent" key=_key| outputlookup  append=true  key_field=key table_a

-----------------------------

| inputlookup table_a
      |search name="A" |eval rating=5 ,comment="Execellent" | outputlookup  append=true table_a&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 04:38:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657525#M9684</guid>
      <dc:creator>sivaranjiniG</dc:creator>
      <dc:date>2023-09-14T04:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657549#M9685</link>
      <description>&lt;P&gt;You are not doing what I suggested in my first response&amp;nbsp;&lt;/P&gt;&lt;P&gt;Remove the key_field=_key&lt;/P&gt;&lt;P&gt;You are explicitly telling it to update the SAME row in KV store&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 07:24:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657549#M9685</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-09-14T07:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657602#M9686</link>
      <description>&lt;P&gt;Please read the my previous response fully...I have tried in both ways&lt;/P&gt;&lt;P&gt;Anyways thanks for your response. I found a solution&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 12:36:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/657602#M9686</guid>
      <dc:creator>sivaranjiniG</dc:creator>
      <dc:date>2023-09-14T12:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/702679#M10320</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/178517"&gt;@sivaranjiniG&lt;/a&gt;&amp;nbsp;Please let us know the solution as we are facing the same task.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2024 11:00:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/702679#M10320</guid>
      <dc:creator>cadrija</dc:creator>
      <dc:date>2024-10-24T11:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: append new row with few different values kv store</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/702699#M10321</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/94619"&gt;@cadrija&lt;/a&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;I’m a Community Moderator in the Splunk Community.&lt;/P&gt;
&lt;P&gt;This question was posted 1 year ago, so it might not get the attention you need for your question to be answered. We recommend that you post a new question so that your issue can get the &amp;nbsp;visibility it deserves. To increase your chances of getting help from the community, follow &lt;A href="http://docs.splunk.com/Documentation/Splunkbase/splunkbase/Answers/Questions" target="_blank"&gt;&lt;U&gt;these guidelines&lt;/U&gt;&lt;/A&gt; in the Splunk Answers User Manual when creating your post.&lt;/P&gt;
&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2024 14:09:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-append-new-row-with-few-different-values-kv-store/m-p/702699#M10321</guid>
      <dc:creator>DanielPi</dc:creator>
      <dc:date>2024-10-24T14:09:47Z</dc:date>
    </item>
  </channel>
</rss>

