<?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 Problem with odbc connect in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-odbc-connect/m-p/583366#M1115239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;till we have installed the releas 11.20 SR5 we have a Problem to make a Connection to the Database with ODBC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before the Installation the call in the script was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [xxxx]&lt;BR /&gt;If I let the script run, the QV asked me about my credentials for the connection. With the correct Username and Password the connection was ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, (on WindowsServer 2012 and QV 11.20 SR5) if I let the same script run, there comes an errormessage "Not enough information to log on ODBC CONNECT TO [xxxx]".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I make the connection with this call: "ODBC CONNECT TO [xxxx] (XUserID Is nnnnConnection is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does any body know, why QV didn't ask me about my credentials anymore and how I can change that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;Greets Samuel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: the Database is Teradata&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Feb 2014 16:39:56 GMT</pubDate>
    <dc:creator>samuel_frauenkn</dc:creator>
    <dc:date>2014-02-13T16:39:56Z</dc:date>
    <item>
      <title>Problem with odbc connect</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-odbc-connect/m-p/583366#M1115239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;till we have installed the releas 11.20 SR5 we have a Problem to make a Connection to the Database with ODBC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before the Installation the call in the script was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [xxxx]&lt;BR /&gt;If I let the script run, the QV asked me about my credentials for the connection. With the correct Username and Password the connection was ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, (on WindowsServer 2012 and QV 11.20 SR5) if I let the same script run, there comes an errormessage "Not enough information to log on ODBC CONNECT TO [xxxx]".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I make the connection with this call: "ODBC CONNECT TO [xxxx] (XUserID Is nnnnConnection is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does any body know, why QV didn't ask me about my credentials anymore and how I can change that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;Greets Samuel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: the Database is Teradata&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 16:39:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-odbc-connect/m-p/583366#M1115239</guid>
      <dc:creator>samuel_frauenkn</dc:creator>
      <dc:date>2014-02-13T16:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with odbc connect</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-odbc-connect/m-p/583367#M1115240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have installed 11.20 releas SR6, I'm trying to load data with ODBC and get stuck loading the first table. This is the sript:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SET ThousandSep='.';&lt;BR /&gt;SET DecimalSep=',';&lt;BR /&gt;SET MoneyThousandSep='.';&lt;BR /&gt;SET MoneyDecimalSep=',';&lt;BR /&gt;SET MoneyFormat='#.##0,00 €;-#.##0,00 €';&lt;BR /&gt;SET TimeFormat='h:mm:ss';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SET TimestampFormat='DD/MM/YYYY h:mm:ss[.fff]';&lt;BR /&gt;SET MonthNames='ene;feb;mar;abr;may;jun;jul;ago;sep;oct;nov;dic';&lt;BR /&gt;SET DayNames='lun;mar;mié;jue;vie;sáb;dom';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO ORACLE_XE(XUserId is USER, XPassword is PASSWORD);&lt;BR /&gt;//-------- Start Multiple Select Statements ------&lt;BR /&gt;SQL SELECT COMM, DEPTNO, EMPNO, ENAME, HIREDATE, JOB, MGR, SAL FROM EMP; &lt;BR /&gt; SQL SELECT DEPTNO, DNAME, LOC FROM DEPT;&lt;BR /&gt;//-------- End Multiple Select Statements ------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 10:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-odbc-connect/m-p/583367#M1115240</guid>
      <dc:creator />
      <dc:date>2014-04-28T10:23:57Z</dc:date>
    </item>
  </channel>
</rss>

