<?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: Importing QVD in SQL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714402#M1063951</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;have a look at this extension too.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-5970"&gt;http://community.qlik.com/docs/DOC-5970&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Sep 2014 05:56:59 GMT</pubDate>
    <dc:creator>ashfaq_haseeb</dc:creator>
    <dc:date>2014-09-17T05:56:59Z</dc:date>
    <item>
      <title>Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714396#M1063942</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;I know QVD can be read by qlikview only but is there are any way to load data from qvd in SQL server..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to check ka data available in QVD..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 04:40:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714396#M1063942</guid>
      <dc:creator />
      <dc:date>2014-09-17T04:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714397#M1063943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this to import QVD data to SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Connection Sring&lt;/P&gt;&lt;P style="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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//Load Data from Excel file&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TABLE:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD transaction_date,&lt;/P&gt;&lt;P style="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-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-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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Data.qvd]&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="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-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-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-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-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-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-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-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-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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;NEXT;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this helps you.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="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, 17 Sep 2014 04:52:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714397#M1063943</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-17T04:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714398#M1063944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;But if i ask that say i have a excel file on desktop and i load it and converted to .qvd file .&lt;/P&gt;&lt;P&gt;NOw i want to load .qvd data into another empty and new excel file on desktop.&lt;/P&gt;&lt;P&gt;How can i do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please hep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 05:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714398#M1063944</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-09-17T05:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714399#M1063945</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;If CSV file is ok then use STORE command like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM FileName.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE TableName INTO FileName.csv;&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, 17 Sep 2014 05:44:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714399#M1063945</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-17T05:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714400#M1063946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;DOes this sTORE command create a file FileNAme.csv and&amp;nbsp; store the data in FileNAme.csv ??&lt;/P&gt;&lt;P&gt;IS it so ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 05:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714400#M1063946</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-09-17T05:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714401#M1063949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 05:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714401#M1063949</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-17T05:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714402#M1063951</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;have a look at this extension too.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-5970"&gt;http://community.qlik.com/docs/DOC-5970&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 05:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714402#M1063951</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-09-17T05:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714403#M1063954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy ,&lt;/P&gt;&lt;P&gt;IT does work in csv.&lt;/P&gt;&lt;P&gt;BUt when i tried to create excel file by changing extension to .xlsx , a file is created but it doesnot open.&lt;/P&gt;&lt;P&gt;What to do ??&lt;/P&gt;&lt;P&gt;Please tell.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 06:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714403#M1063954</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-09-17T06:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714404#M1063957</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;Create new thread for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are mixing topics&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;STORE TableName INTO FileName.csv(txt);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 06:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714404#M1063957</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-09-17T06:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714405#M1063960</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;This won't work for Excel, instead you can open the CSV in Excel also.&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, 17 Sep 2014 06:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714405#M1063960</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-17T06:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714406#M1063963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I opened .csv in excel but no meaningful information is there in excel sheet.&lt;/P&gt;&lt;P&gt;How can i get data in excel sheet from a .qvd ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 06:17:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/714406#M1063963</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-09-17T06:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Importing QVD in SQL</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/1529271#M1063966</link>
      <description>&lt;P&gt;Well, I know this is an old thread. But for anyone who's ending up here and wants to get QVD-data in SQL: this is a way to do it:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use the free Q-Eye Qlikview Data File Editor&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Open the editor&lt;/LI&gt;&lt;LI&gt;Open the QVD-file&lt;/LI&gt;&lt;LI&gt;Make sure you don't have the default partial load (1000 records), but the full load&lt;/LI&gt;&lt;LI&gt;Save as&lt;/LI&gt;&lt;LI&gt;SQL Insert&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The tool is rather slow, but will do the job&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 06:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-QVD-in-SQL/m-p/1529271#M1063966</guid>
      <dc:creator>WalTig</dc:creator>
      <dc:date>2019-01-11T06:37:02Z</dc:date>
    </item>
  </channel>
</rss>

