<?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: how to insert CSV file data into database using Qlikview script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976996#M333861</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chinna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the Answer please close this thread by giving Correct Answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jan 2016 05:45:47 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2016-01-11T05:45:47Z</dc:date>
    <item>
      <title>how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976992#M333857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share your ideas to insert data into oracle databse from csv file using QV script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 06:33:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976992#M333857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-23T06:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976993#M333858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Connection Sring&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ODBC Connect to trDatabase;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Load Data from Excel file&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TABLE:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD transaction_date,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; location,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; item,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; site&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Data.xlsx]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Getting number of records in Table&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET V_ROWS = NoOfRows('TABLE');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Loop through the records and insert into Database table&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FOR V_ROW = 0 TO V_ROWS - 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET V_FIELD1 = Peek('transaction_date',V_ROW);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET V_FIELD2 = Peek('location',V_ROW);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET V_FIELD3 = Peek('item',V_ROW);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET V_FIELD4 = Peek('site',V_ROW);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL INSERT INTO dbo.temp_Table(transaction_date, location,item, site) VALUES('$(V_FIELD1)','$(V_FIELD2)', '$(V_FIELD3)','$(V_FIELD4)');&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;NEXT;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 06:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976993#M333858</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-12-23T06:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976994#M333859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reference: &lt;A href="https://community.qlik.com/docs/DOC-6655"&gt;Inserting records into Database using Qlikview Script&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 06:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976994#M333859</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-12-23T06:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976995#M333860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;might be below thread help you :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/884078"&gt;Re: Can Qlikview write-back to an Oracle database?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 06:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976995#M333860</guid>
      <dc:creator>ashwanin</dc:creator>
      <dc:date>2015-12-23T06:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976996#M333861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chinna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the Answer please close this thread by giving Correct Answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2016 05:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976996#M333861</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-01-11T05:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert CSV file data into database using Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976997#M333862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will test and mark accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Chinna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 09:32:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-insert-CSV-file-data-into-database-using-Qlikview-script/m-p/976997#M333862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-14T09:32:27Z</dc:date>
    </item>
  </channel>
</rss>

