<?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: Load JSON data in Qlik Sense in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143417#M5462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Performance should be based on the sql server as you are passing the query to the database and the database itself is doing the work. for Json_Value function, I think you need to know the name of the column as it goes by the path($.Key) however if your database is not an azure and has an object OpenJson you can use that, it can be call dynamically (like select * from table) here's the info for both: OpenJSON - &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/library/dn921885.aspx" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/dn921885.aspx&lt;/A&gt;&lt;SPAN&gt; JSON_Value - &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/library/dn921898.aspx" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/dn921898.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2017 15:40:25 GMT</pubDate>
    <dc:creator>hoangvvo</dc:creator>
    <dc:date>2017-01-12T15:40:25Z</dc:date>
    <item>
      <title>Load JSON data in Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143413#M5458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Assuming I have an external source which has an REST/SOAP API returning JSON data, Is it possible to read a REST or SOAP API&amp;nbsp; and load JSON data into Qlik? &lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 17:33:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143413#M5458</guid>
      <dc:creator />
      <dc:date>2016-06-17T17:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Load JSON data in Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143414#M5459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is possible.&lt;/P&gt;&lt;P&gt;Just use the Qlik REST Connector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Jun 2016 16:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143414#M5459</guid>
      <dc:creator>konrad_mattheis</dc:creator>
      <dc:date>2016-06-18T16:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load JSON data in Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143415#M5460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do a select on the json string to create a data model.&lt;/P&gt;&lt;P&gt;ex:jsonstring= [{"key1":"value1"},{"key2":"value2"}]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tmp:&lt;/P&gt;&lt;P&gt;Load Id,Name,Address;&lt;/P&gt;&lt;P&gt;SQL Select Id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name=JSON_VALUE(JSonStringColumn,'$.key1'),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Address=JSON_VALUE(JsonStringColumn,'$.key2')&lt;/P&gt;&lt;P&gt;from your table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will then create a table with Name and Address as the two column.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is what you meant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 15:53:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143415#M5460</guid>
      <dc:creator>hoangvvo</dc:creator>
      <dc:date>2016-06-23T15:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Load JSON data in Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143416#M5461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is very helpful. Do you have any idea what the performance implications of this strategy would be? Also, would there be a way to load the column names dynamically based on the Key in the JSON?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 14:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143416#M5461</guid>
      <dc:creator>TKendrick20</dc:creator>
      <dc:date>2017-01-12T14:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Load JSON data in Qlik Sense</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143417#M5462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Performance should be based on the sql server as you are passing the query to the database and the database itself is doing the work. for Json_Value function, I think you need to know the name of the column as it goes by the path($.Key) however if your database is not an azure and has an object OpenJson you can use that, it can be call dynamically (like select * from table) here's the info for both: OpenJSON - &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/library/dn921885.aspx" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/dn921885.aspx&lt;/A&gt;&lt;SPAN&gt; JSON_Value - &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/library/dn921898.aspx" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/dn921898.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Load-JSON-data-in-Qlik-Sense/m-p/1143417#M5462</guid>
      <dc:creator>hoangvvo</dc:creator>
      <dc:date>2017-01-12T15:40:25Z</dc:date>
    </item>
  </channel>
</rss>

