<?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: error while running talend code to access table under h2 database sche in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207310#M7010</link>
    <description>hi Shong 
&lt;BR /&gt;Any update on this issue. 
&lt;BR /&gt;This is impacting our development work. 
&lt;BR /&gt;Appreciate your quick response. 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Gayathri B</description>
    <pubDate>Tue, 01 Mar 2011 14:36:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-03-01T14:36:44Z</dc:date>
    <item>
      <title>error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207302#M7002</link>
      <description>We have configured Talend admin console 4.1.2 using h2 database.&lt;BR /&gt;I am trying to extract data from the TABLE (USER) with in the SCHEMA - PUBLIC using component : tJdbcInput which is throwing error message as below &lt;BR /&gt;**********************************************************&lt;BR /&gt;org.h2.jdbc.JdbcSQLException: Table "USER" not found; SQL statement:&lt;BR /&gt;Select * from PUBLIC.USER &lt;BR /&gt;******************************&lt;BR /&gt;I am able to query this table from webconsole successfully.&lt;BR /&gt;I am using jdbc url as file based and classname as : "org.h2.Driver"&lt;BR /&gt;I am able to query tables from INFORMATION_SCHEMA but not able to query tables under PUBLIC schema</description>
      <pubDate>Sat, 16 Nov 2024 13:04:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207302#M7002</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207303#M7003</link>
      <description>Hello
&lt;BR /&gt;Try this query:
&lt;BR /&gt;"Select * from PUBLIC.\"USER\""
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 24 Feb 2011 01:51:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207303#M7003</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-24T01:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207304#M7004</link>
      <description>I have got similar error message if use above query.
&lt;BR /&gt;tarting job hsqldb at 13:31 25/02/2011.
&lt;BR /&gt; connecting to socket on port 3870
&lt;BR /&gt; connected
&lt;BR /&gt;Exception in component tJDBCInput_2
&lt;BR /&gt;org.h2.jdbc.JdbcSQLException: Table "USER" not found; SQL statement:
&lt;BR /&gt;Select * from PUBLIC."USER" 
&lt;BR /&gt; at org.h2.message.DbException.getJdbcSQLException(DbException.java:316)
&lt;BR /&gt; at org.h2.message.DbException.get(DbException.java:167)
&lt;BR /&gt; at org.h2.message.DbException.get(DbException.java:144)
&lt;BR /&gt; at org.h2.schema.Schema.getTableOrView(Schema.java:383)
&lt;BR /&gt; at org.h2.command.Parser.readTableOrView(Parser.java:4333)
&lt;BR /&gt; at org.h2.command.Parser.readTableFilter(Parser.java:1001)
&lt;BR /&gt; at org.h2.command.Parser.parseSelectSimpleFromPart(Parser.java:1529)
&lt;BR /&gt; at org.h2.command.Parser.parseSelectSimple(Parser.java:1626)
&lt;BR /&gt; at org.h2.command.Parser.parseSelectSub(Parser.java:1523)
&lt;BR /&gt; at org.h2.command.Parser.parseSelectUnion(Parser.java:1368)
&lt;BR /&gt; at org.h2.command.Parser.parseSelect(Parser.java:1356)
&lt;BR /&gt; at org.h2.command.Parser.parsePrepared(Parser.java:395)
&lt;BR /&gt; at org.h2.command.Parser.parse(Parser.java:278)
&lt;BR /&gt; at org.h2.command.Parser.parse(Parser.java:250)
&lt;BR /&gt; at org.h2.command.Parser.prepareCommand(Parser.java:222)
&lt;BR /&gt; at org.h2.engine.Session.prepareLocal(Session.java:420)
&lt;BR /&gt; at org.h2.engine.Session.prepareCommand(Session.java:381)
&lt;BR /&gt; at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1070)
&lt;BR /&gt; at org.h2.jdbc.JdbcStatement.executeQuery(JdbcStatement.java:70)
&lt;BR /&gt; at eidemo.hsqldb_0_1.hsqldb.tJDBCInput_2Process(hsqldb.java:548)
&lt;BR /&gt; at eidemo.hsqldb_0_1.hsqldb.runJobInTOS(hsqldb.java:1025)
&lt;BR /&gt; at eidemo.hsqldb_0_1.hsqldb.main(hsqldb.java:896)
&lt;BR /&gt; disconnected
&lt;BR /&gt;Job hsqldb ended at 13:31 25/02/2011.</description>
      <pubDate>Fri, 25 Feb 2011 13:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207304#M7004</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T13:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207305#M7005</link>
      <description>Hi
&lt;BR /&gt;It is case-sensitive, i try 
&lt;BR /&gt;"SELECT * FROM \"user\""
&lt;BR /&gt;and it works.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 25 Feb 2011 14:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207305#M7005</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T14:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207306#M7006</link>
      <description>I tried &lt;BR /&gt;"select * from public.\"user\""&lt;BR /&gt;"Select * from public.\"user\""&lt;BR /&gt;"Select * from PUBLIC.\"user\""&lt;BR /&gt;ITS THE SAME ERROR MESSAGE AS TABLE NOT FOUND.</description>
      <pubDate>Fri, 25 Feb 2011 14:40:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207306#M7006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T14:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207307#M7007</link>
      <description>Hi 
&lt;BR /&gt;Are you using the embedded H2? Why you add the schema 'public'? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 25 Feb 2011 14:44:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207307#M7007</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T14:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207308#M7008</link>
      <description>Shong 
&lt;BR /&gt;I have provided you screen shots and our login details in mail to shong@talend.com 
&lt;BR /&gt;Please check. 
&lt;BR /&gt;We are using h2(embeded) and I am able to query data successfully</description>
      <pubDate>Fri, 25 Feb 2011 16:18:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207308#M7008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T16:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207309#M7009</link>
      <description>We are able to query data successfully in H2console but not thru talend program.
&lt;BR /&gt;id/password are default values . tisadmin</description>
      <pubDate>Fri, 25 Feb 2011 16:19:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207309#M7009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-25T16:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207310#M7010</link>
      <description>hi Shong 
&lt;BR /&gt;Any update on this issue. 
&lt;BR /&gt;This is impacting our development work. 
&lt;BR /&gt;Appreciate your quick response. 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Gayathri B</description>
      <pubDate>Tue, 01 Mar 2011 14:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207310#M7010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-01T14:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: error while running talend code to access table under h2 database sche</title>
      <link>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207311#M7011</link>
      <description>Hi
&lt;BR /&gt;- Open the SQL builder and see if it works in SQL builder.
&lt;BR /&gt;- Which mapping file do you choose when you create connection metadata?
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 01 Mar 2011 14:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/error-while-running-talend-code-to-access-table-under-h2/m-p/2207311#M7011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-01T14:59:43Z</dc:date>
    </item>
  </channel>
</rss>

