<?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 get the ODBC connection string from an external file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329191#M121163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I totally missed that part of your question. Sorry, I don't know what algorithm QV uses for scrambling. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Nov 2011 17:57:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-11-18T17:57:44Z</dc:date>
    <item>
      <title>How to get the ODBC connection string from an external file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329188#M121160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Is there a way to somehow generate and read the ODBC connection string from an external file?&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;For example: &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ODBC&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt; CONNECT&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; DW (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;XUserId&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; QMQCSZFMGG, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;XPassword&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; HWOBcZFMVA); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;Is the string and I want the QlikView script to read it from a file. The question is if it's possible, especially with the scrambled user and password which I'm not sure if it can be generated outside of QlikView... &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 16:22:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329188#M121160</guid>
      <dc:creator />
      <dc:date>2011-11-18T16:22:11Z</dc:date>
    </item>
    <item>
      <title>How to get the ODBC connection string from an external file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329189#M121161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works, taking input from a file that only contains the connection string you posted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set ConnectString = '';&lt;/P&gt;&lt;P&gt;test:&lt;/P&gt;&lt;P&gt;LOAD @1&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, no labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let ConnectString = peek('@1',-1,test);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(ConnectString);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 17:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329189#M121161</guid>
      <dc:creator />
      <dc:date>2011-11-18T17:38:30Z</dc:date>
    </item>
    <item>
      <title>How to get the ODBC connection string from an external file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329190#M121162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks, Juan. I was thinking about something similar. However, the main question I have is how to generate a scrambled user name and password outside of QlikView, and yet allow QlikView to understand it. Is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 17:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329190#M121162</guid>
      <dc:creator />
      <dc:date>2011-11-18T17:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ODBC connection string from an external file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329191#M121163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I totally missed that part of your question. Sorry, I don't know what algorithm QV uses for scrambling. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 17:57:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329191#M121163</guid>
      <dc:creator />
      <dc:date>2011-11-18T17:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the ODBC connection string from an external file</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329192#M121164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Doron,&lt;/P&gt;&lt;P&gt;Can you please share whether did you get answer for :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ODBC&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt; CONNECT&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; DW (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;XUserId&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; QMQCSZFMGG, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;XPassword&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; HWOBcZFMVA); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Is the string and I want the QlikView script to read it from a file.?&lt;/DIV&gt;&lt;DIV&gt;How is the string generated ?&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;What are the basic steps to get this string generated ?&lt;/DIV&gt;&lt;DIV&gt;Regards&lt;/DIV&gt;&lt;DIV&gt;Ravi&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 May 2013 14:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-ODBC-connection-string-from-an-external-file/m-p/329192#M121164</guid>
      <dc:creator />
      <dc:date>2013-05-28T14:25:39Z</dc:date>
    </item>
  </channel>
</rss>

