<?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 How to connect a shared .qvw file to the general database? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183999#M49051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;All the above is to be done on the computer that will reload the document (or the development computer), nothing to do with the QlikView Server.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Mar 2011 10:56:14 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-03-28T10:56:14Z</dc:date>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183994#M49046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I'm new to QlikView..Pls let me know, how to connect a shared (existing) &lt;B&gt;.QVW&lt;/B&gt; file to the general database through ODBC driver.&lt;/P&gt;&lt;P&gt;Is there any need to change the props.qvs file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 06:20:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183994#M49046</guid>
      <dc:creator />
      <dc:date>2011-03-28T06:20:29Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183995#M49047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;First of all, the ODBC must exist in the computer that is going to perform reloads. You can create it in the Administrative Tools, Data Sources of the computer.&lt;/P&gt;&lt;P&gt;You need to open the QVW file in the development application (QlikVIew Desktop). Then go to the script editor and before the SQL SELECT statement, click on the "Database" Dropdow, select ODBC button, set username and password if needed.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 06:34:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183995#M49047</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-03-28T06:34:18Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183996#M49048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried what you mentioned ...I'm sure that the odbc connection established well and able to view the tables...Thanks a lot &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; .....But i'm still confused how to link this individual .qvw file to this database,because once I establish the connection and click on RELOAD button I couldn't see any changes in the list box where i'm suppose to retrieve data....&lt;/P&gt;&lt;P&gt;Pls clarify my knowledge ,whether only a single .qvw file is more enough to link the DB(which is in remote server) or we need to change any script(.qvs) file...?&lt;/P&gt;&lt;P&gt;Once again I thank for replying Miguel:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 07:19:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183996#M49048</guid>
      <dc:creator />
      <dc:date>2011-03-28T07:19:57Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183997#M49049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;QlikView (QVW files) pulls data from the database only "on demand" that is, when you click on the "Reload" button, or it's done by the QlikView Server if you have it.&lt;/P&gt;&lt;P&gt;So, the ODBC line is needed to allow the document (QVW file) to get data from the database. A very basic example of script should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;ODBC CONNECT TO ODBCName; Table:LOAD *;SQL SELECT *FROM Database.Table; STORE Table INTO Table.qvd; // Stores the previous into a file in the hard disk DROP TABLE Table; // Removes the table from memory&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It's not "linking" the file, because the data will not be updated until you reload the document.&lt;/P&gt;&lt;P&gt;Usually I create one extraction document that extracts from database and generates QVD files (a very fast QlikView data storage file) and another one with the charts that uses that QVD information.&lt;/P&gt;&lt;P&gt;If you need to create to different data sources, you can set as many ODBC CONNECT sentences as you need, QlikView will disconnect from previous when it reads another ODBC CONNECT.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 07:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183997#M49049</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-03-28T07:39:13Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183998#M49050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;I don't have Qlikview Server,How can I create an extraction documents?....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 10:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183998#M49050</guid>
      <dc:creator />
      <dc:date>2011-03-28T10:11:38Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183999#M49051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;All the above is to be done on the computer that will reload the document (or the development computer), nothing to do with the QlikView Server.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 10:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/183999#M49051</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-03-28T10:56:14Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184000#M49052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 13:00:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184000#M49052</guid>
      <dc:creator />
      <dc:date>2011-03-28T13:00:33Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184001#M49053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;If there are multiple data sources viz., SAP, Oracle, SQL, Excel..is it possible to link all these sources to one Qlikview desktop and analyse data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 18:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184001#M49053</guid>
      <dc:creator />
      <dc:date>2011-04-20T18:13:56Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184002#M49054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajyalakshmi,&lt;/P&gt;&lt;P&gt;I am not sure about SAP ..But i have worked with excel and oracle in a single .qvw file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 10:06:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184002#M49054</guid>
      <dc:creator />
      <dc:date>2011-04-21T10:06:28Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184003#M49055</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;Ya you can link all these sources to one qlikview application but different connection string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2011 10:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184003#M49055</guid>
      <dc:creator>neetu_singh</dc:creator>
      <dc:date>2011-04-21T10:23:52Z</dc:date>
    </item>
    <item>
      <title>How to connect a shared .qvw file to the general database?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184004#M49056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;As Neetu says above, yes, you can do that. In case of SAP, you will likely need the SAP Connector, which is a different product and has an independent license from QlikView.&lt;/P&gt;&lt;P&gt;You can organize your script in tabs. So you can create one tab for SAP extraction, another tab for Excel extraction, another for Oracle... If you save all these sources into QVD files, you can easily use them later to build a fact table.&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2011 18:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-connect-a-shared-qvw-file-to-the-general-database/m-p/184004#M49056</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-04-22T18:31:48Z</dc:date>
    </item>
  </channel>
</rss>

