<?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: Postgresql database, schemas and case-sensitivity in Installing and Upgrading</title>
    <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395195#M8013</link>
    <description>Hi ! 
&lt;BR /&gt;I still have problems with postgresql. 
&lt;BR /&gt;I just want to insert data from a inputFile in a table on a Postgresql database. And, I can't..... 
&lt;BR /&gt;I have a Postgresql database called "testTalend", in which I have a schema called "myTalendSchema". In this schema, I have a table "Rue". The structure of the table : 
&lt;BR /&gt; CREATE TABLE "myTalendSchema"."Rue" ( 
&lt;BR /&gt; "idLocalite" BIGINT NOT NULL, 
&lt;BR /&gt; "idRuePoste" BIGINT NOT NULL, 
&lt;BR /&gt; "libelle" VARCHAR(50) NOT NULL, 
&lt;BR /&gt; "genreRue" SMALLINT DEFAULT 0 NOT NULL, 
&lt;BR /&gt; "codePreposition" SMALLINT DEFAULT 0 NOT NULL, 
&lt;BR /&gt; "npaAdressage" VARCHAR(20) NOT NULL 
&lt;BR /&gt;) ; 
&lt;BR /&gt;I can create a connection with a right click on the DbConnections. And then, the schema. All is okay. You will find images below. You can also find the property of the DbOutput. 
&lt;BR /&gt;But when I try to execute the insert, I have this error message : 
&lt;BR /&gt;..... 
&lt;BR /&gt;ThreadStat started... 
&lt;BR /&gt;Connecting to talendStudio on port 3334...connected. 
&lt;BR /&gt;DBD: 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MAB6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158321i00588DF41617C922/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MAB6.png" alt="0683p000009MAB6.png" /&gt;&lt;/span&gt;g::st execute failed: ERROR: column "idlocalite" of relation "Rue" does not exist 
&lt;BR /&gt;can't execute insert query 
&lt;BR /&gt;A thread exited while 2 threads were running. 
&lt;BR /&gt;Job writeTalend ended at 10:45 19/10/2006. 
&lt;BR /&gt;...... 
&lt;BR /&gt;Talend can read fields with different cases (idLocalite &amp;lt;=&amp;gt; idlocalite) ? I don't think that... 
&lt;BR /&gt;Thanks a lot for you help. 
&lt;BR /&gt;Kim</description>
    <pubDate>Thu, 19 Oct 2006 09:52:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2006-10-19T09:52:27Z</dc:date>
    <item>
      <title>Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395192#M8010</link>
      <description>I work with a Postgresql database. I can't use postgresql schemas. Talend dosen't recognize them. It works only with the public schema. I also have an other problem with the case-sensitivity : Talend dosen't recognize tables or fields which contain capital letters... For example, noStreet is unknown and nostreet is ok.&lt;BR /&gt;Will it be corrected in further versions ?&lt;BR /&gt;Thanks a lot.&lt;BR /&gt;Kim</description>
      <pubDate>Sat, 16 Nov 2024 14:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395192#M8010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395193#M8011</link>
      <description>Hello,&lt;BR /&gt;Have you define a Schema value for the Db PostgreSQL connection ?&lt;BR /&gt;Have you some problems in the repositories or to use it in the Job Designer ?&lt;BR /&gt;In the SQL properties of tDbInput (Job Designer) don't forget to specify your Schema as example : 'Select * from mySchema.myTable'&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 16 Oct 2006 10:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395193#M8011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-16T10:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395194#M8012</link>
      <description>Hello !&lt;BR /&gt;It seems to be okay when you use double quote in the query for DBInput. You also can retreive metadata with upper and lower letters.&lt;BR /&gt;Thanks a lot&lt;BR /&gt;Kim</description>
      <pubDate>Tue, 17 Oct 2006 15:50:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395194#M8012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-17T15:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395195#M8013</link>
      <description>Hi ! 
&lt;BR /&gt;I still have problems with postgresql. 
&lt;BR /&gt;I just want to insert data from a inputFile in a table on a Postgresql database. And, I can't..... 
&lt;BR /&gt;I have a Postgresql database called "testTalend", in which I have a schema called "myTalendSchema". In this schema, I have a table "Rue". The structure of the table : 
&lt;BR /&gt; CREATE TABLE "myTalendSchema"."Rue" ( 
&lt;BR /&gt; "idLocalite" BIGINT NOT NULL, 
&lt;BR /&gt; "idRuePoste" BIGINT NOT NULL, 
&lt;BR /&gt; "libelle" VARCHAR(50) NOT NULL, 
&lt;BR /&gt; "genreRue" SMALLINT DEFAULT 0 NOT NULL, 
&lt;BR /&gt; "codePreposition" SMALLINT DEFAULT 0 NOT NULL, 
&lt;BR /&gt; "npaAdressage" VARCHAR(20) NOT NULL 
&lt;BR /&gt;) ; 
&lt;BR /&gt;I can create a connection with a right click on the DbConnections. And then, the schema. All is okay. You will find images below. You can also find the property of the DbOutput. 
&lt;BR /&gt;But when I try to execute the insert, I have this error message : 
&lt;BR /&gt;..... 
&lt;BR /&gt;ThreadStat started... 
&lt;BR /&gt;Connecting to talendStudio on port 3334...connected. 
&lt;BR /&gt;DBD: 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MAB6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158321i00588DF41617C922/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MAB6.png" alt="0683p000009MAB6.png" /&gt;&lt;/span&gt;g::st execute failed: ERROR: column "idlocalite" of relation "Rue" does not exist 
&lt;BR /&gt;can't execute insert query 
&lt;BR /&gt;A thread exited while 2 threads were running. 
&lt;BR /&gt;Job writeTalend ended at 10:45 19/10/2006. 
&lt;BR /&gt;...... 
&lt;BR /&gt;Talend can read fields with different cases (idLocalite &amp;lt;=&amp;gt; idlocalite) ? I don't think that... 
&lt;BR /&gt;Thanks a lot for you help. 
&lt;BR /&gt;Kim</description>
      <pubDate>Thu, 19 Oct 2006 09:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395195#M8013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-19T09:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395196#M8014</link>
      <description>Hello, 
&lt;BR /&gt;I have created the same Table in our PostgreSQL Database, and i have the same error for your job. 
&lt;BR /&gt;Then i have testing in another SQLClient and it's the same result as you can see in attach file. 
&lt;BR /&gt;It's a PostgreSQL bug : 
&lt;BR /&gt;In PostgreSQL the Queries are case sensitive, and it appears that PostgreSQL automatically lower-case the column names in queries before running them - even though the columns have mixed-case names. 
&lt;BR /&gt;The solution is to enclose colum_name with 
&lt;B&gt;"&lt;/B&gt; character as 
&lt;I&gt;INSERT INTO "mypostgres"."Rue" ("idLocalite","idRuePoste","libelle","genreRue","codePreposition","npaAdressage") VALUES (1,1,'tt',1,1,'uu');&lt;/I&gt;. 
&lt;BR /&gt;We are working on this solution, you can follow this 
&lt;A href="http://talendforge.org/bugs/view.php?id=205" target="_blank" rel="nofollow noopener noreferrer"&gt;features in our BugTracker&lt;/A&gt;. 
&lt;BR /&gt;Normally it will be include in our next Update Site(v1.0.1). 
&lt;BR /&gt;Best regards.</description>
      <pubDate>Thu, 19 Oct 2006 12:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395196#M8014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-19T12:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395197#M8015</link>
      <description>Hello !&lt;BR /&gt;When you do an insert query, you can put the ". But when you want to insert data from Talend to a postgres table, how to do ?&lt;BR /&gt;Best regards.&lt;BR /&gt;Kim</description>
      <pubDate>Thu, 19 Oct 2006 13:50:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395197#M8015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-19T13:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395198#M8016</link>
      <description>There is a bug with PostgreSQL queries, but we can workaround it in Talend, when the &lt;A href="http://talendforge.org/bugs/view.php?id=205" target="_blank" rel="nofollow noopener noreferrer"&gt;bug 205&lt;/A&gt; will be resolved.</description>
      <pubDate>Thu, 19 Oct 2006 14:07:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395198#M8016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-10-19T14:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395199#M8017</link>
      <description>Hi !&lt;BR /&gt;We can't see views in the postgresql schema. How to reach a view on a database ? (I have the same problem with an odbc driver for AS400)&lt;BR /&gt;Thanks a lot&lt;BR /&gt;Kim</description>
      <pubDate>Fri, 03 Nov 2006 08:16:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395199#M8017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-03T08:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Postgresql database, schemas and case-sensitivity</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395200#M8018</link>
      <description>Hi,&lt;BR /&gt;I have created a &lt;A href="http://talendforge.org/bugs/view.php?id=227" target="_blank" rel="nofollow noopener noreferrer"&gt;feature in our Bug Tracker&lt;/A&gt; about to retrieve VIEWS as TABLE in the Db Connection wizard.&lt;BR /&gt;Regards.</description>
      <pubDate>Fri, 03 Nov 2006 10:14:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Postgresql-database-schemas-and-case-sensitivity/m-p/2395200#M8018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-11-03T10:14:29Z</dc:date>
    </item>
  </channel>
</rss>

