<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Pentaho 3.6 with MySQL, PostgreSQL &amp; Oracle.</title>
	<atom:link href="http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/</link>
	<description>The Trials and Tribulations of a Data Analyst</description>
	<lastBuildDate>Thu, 18 Aug 2011 16:53:29 +1000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Farouk TANGAO</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-7731</link>
		<dc:creator>Farouk TANGAO</dc:creator>
		<pubDate>Sun, 15 May 2011 11:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-7731</guid>
		<description>I had the same problem as Tobias. Now it Works !
I also changed the pentaho.xml file.</description>
		<content:encoded><![CDATA[<p>I had the same problem as Tobias. Now it Works !<br />
I also changed the pentaho.xml file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-6838</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Sun, 17 Apr 2011 12:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-6838</guid>
		<description>Ok, I got it working now. You also have to change the data source settings in the file &quot;biserver-ce/tomcat/conf/Catalina/localhost/pentaho.xml&quot; (same as file &quot;\tomcat\webapps\pentaho\META-INF\context.xml&quot;).</description>
		<content:encoded><![CDATA[<p>Ok, I got it working now. You also have to change the data source settings in the file &#8220;biserver-ce/tomcat/conf/Catalina/localhost/pentaho.xml&#8221; (same as file &#8220;\tomcat\webapps\pentaho\META-INF\context.xml&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobias</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-6836</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Sun, 17 Apr 2011 11:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-6836</guid>
		<description>Hi!

First, thanks for this great guide and the SQL scripts!

But unfortunately I am getting the same error as Mirko and Rob when trying to set up Pentaho with MySQL.

Any ideas what is going wrong?

Thanks,
Tobias</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>First, thanks for this great guide and the SQL scripts!</p>
<p>But unfortunately I am getting the same error as Mirko and Rob when trying to set up Pentaho with MySQL.</p>
<p>Any ideas what is going wrong?</p>
<p>Thanks,<br />
Tobias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Esfandiar Amirrahimi</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-6259</link>
		<dc:creator>Esfandiar Amirrahimi</dc:creator>
		<pubDate>Mon, 28 Mar 2011 04:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-6259</guid>
		<description>Excellent tutorial, excellent material and very helpful by a generous man! Thank you so much for sharing your knowledge.</description>
		<content:encoded><![CDATA[<p>Excellent tutorial, excellent material and very helpful by a generous man! Thank you so much for sharing your knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: p1005</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-6188</link>
		<dc:creator>p1005</dc:creator>
		<pubDate>Fri, 25 Mar 2011 16:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-6188</guid>
		<description>hello,
If I have a look at pentaho.log:
.. Failed to obtain DB connection from data source &#039;myDS&#039;: java.sql.SQLException: There is no DataSource named &#039;myDS&#039;...

This message appears when HSQL database startup is disabled in tomcat/webapps/pentaho/WEB-INF/web.xml

Make changes in   /opt/pentaho/biserver-ce/tomcat/conf/Catalina/localhost/pentaho.xml to have exactly the same than tomcat/webapps/pentaho/META_INF/context.xml

Don&#039;t make change in  quartz.properties especially:
org.quartz.jobStore.dataSource = myDS
...
org.quartz.dataSource.myDS.jndiURL = Quartz

Next you could have another error in pentaho.log:
ERROR [org.pentaho.platform.util.logging.Logger] misc-org.pentaho.platform.engine.services.connection.datasource.dbcp.PooledDatasourceSystemListener: PooledDatasourceSystemListener.ERROR_0003 - Unable to pool datasource object: SampleData caused by java.sql.SQLException: socket creation error
It seems it can&#039;t find SampleData
make changes in tomcat/webapps/pentaho/META_INF/context.xml, adding the following lines:
    

make changes in tomcat/webapps/pentaho/WEB-INF/web.xml adding the following lines at the end of the file:
   
        SampleData Connection
        jdbc/SampleData
     javax.sql.DataSource
        Container
    
Restart the server

Thanks to Prashant for his ressources
Marc</description>
		<content:encoded><![CDATA[<p>hello,<br />
If I have a look at pentaho.log:<br />
.. Failed to obtain DB connection from data source &#8216;myDS&#8217;: java.sql.SQLException: There is no DataSource named &#8216;myDS&#8217;&#8230;</p>
<p>This message appears when HSQL database startup is disabled in tomcat/webapps/pentaho/WEB-INF/web.xml</p>
<p>Make changes in   /opt/pentaho/biserver-ce/tomcat/conf/Catalina/localhost/pentaho.xml to have exactly the same than tomcat/webapps/pentaho/META_INF/context.xml</p>
<p>Don&#8217;t make change in  quartz.properties especially:<br />
org.quartz.jobStore.dataSource = myDS<br />
&#8230;<br />
org.quartz.dataSource.myDS.jndiURL = Quartz</p>
<p>Next you could have another error in pentaho.log:<br />
ERROR [org.pentaho.platform.util.logging.Logger] misc-org.pentaho.platform.engine.services.connection.datasource.dbcp.PooledDatasourceSystemListener: PooledDatasourceSystemListener.ERROR_0003 &#8211; Unable to pool datasource object: SampleData caused by java.sql.SQLException: socket creation error<br />
It seems it can&#8217;t find SampleData<br />
make changes in tomcat/webapps/pentaho/META_INF/context.xml, adding the following lines:</p>
<p>make changes in tomcat/webapps/pentaho/WEB-INF/web.xml adding the following lines at the end of the file:</p>
<p>        SampleData Connection<br />
        jdbc/SampleData<br />
     javax.sql.DataSource<br />
        Container</p>
<p>Restart the server</p>
<p>Thanks to Prashant for his ressources<br />
Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish S.</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-6014</link>
		<dc:creator>Ashish S.</dc:creator>
		<pubDate>Fri, 18 Mar 2011 08:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-6014</guid>
		<description>Hi Prashant,

I am using Pentaho 3.7 on Windows XP with Oracle XE. I get the following error while running the load sample users script:
SQL&gt; @3_load_sample_users_ora
Connected.
INSERT INTO USERS (username, password, enabled) VALUES(&#039;joe&#039;,&#039;cGFzc3dvcmQ=&#039;,1)
            *
ERROR at line 1:
ORA-00942: table or view does not exist

......

I checked and the error seems to lie in the fact that 1_create_repository_ora.sql has missing semi-colon after CREATE TABLE terminating brackets..
Sharing.. just in case :P</description>
		<content:encoded><![CDATA[<p>Hi Prashant,</p>
<p>I am using Pentaho 3.7 on Windows XP with Oracle XE. I get the following error while running the load sample users script:<br />
SQL&gt; @3_load_sample_users_ora<br />
Connected.<br />
INSERT INTO USERS (username, password, enabled) VALUES(&#8216;joe&#8217;,'cGFzc3dvcmQ=&#8217;,1)<br />
            *<br />
ERROR at line 1:<br />
ORA-00942: table or view does not exist</p>
<p>&#8230;&#8230;</p>
<p>I checked and the error seems to lie in the fact that 1_create_repository_ora.sql has missing semi-colon after CREATE TABLE terminating brackets..<br />
Sharing.. just in case <img src='http://www.prashantraju.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mirko</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-5806</link>
		<dc:creator>Mirko</dc:creator>
		<pubDate>Mon, 07 Mar 2011 16:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-5806</guid>
		<description>Hi prashant,
I&#039;ve followed your guide (very good guide i think) but i have a problem.
When i go on localhost:8080/pentaho i see a message:
The following errors were detected
[it_49] One or more system listeners failed. These are set in the systemListeners.xml.
   PentahoSystem.ERROR_0014 - Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener

The log says:
org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source &#039;myDS&#039;: java.sql.SQLException: Could not retrieve datasource via JNDI url &#039;java:comp/env/jdbc/Quartz&#039; org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (socket creation error) [See nested exception: java.sql.SQLException: Could not retrieve datasource via JNDI url &#039;java:comp/env/jdbc/Quartz&#039; org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (socket creation error)]]
and so on.
Can you help me?
Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi prashant,<br />
I&#8217;ve followed your guide (very good guide i think) but i have a problem.<br />
When i go on localhost:8080/pentaho i see a message:<br />
The following errors were detected<br />
[it_49] One or more system listeners failed. These are set in the systemListeners.xml.<br />
   PentahoSystem.ERROR_0014 &#8211; Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener</p>
<p>The log says:<br />
org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'myDS': java.sql.SQLException: Could not retrieve datasource via JNDI url 'java:comp/env/jdbc/Quartz' org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (socket creation error) [See nested exception: java.sql.SQLException: Could not retrieve datasource via JNDI url 'java:comp/env/jdbc/Quartz' org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (socket creation error)]]<br />
and so on.<br />
Can you help me?<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: omar</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-5535</link>
		<dc:creator>omar</dc:creator>
		<pubDate>Wed, 23 Feb 2011 17:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-5535</guid>
		<description>hi prasahnt, 
is there an issue with Informix DB ?

friendly</description>
		<content:encoded><![CDATA[<p>hi prasahnt,<br />
is there an issue with Informix DB ?</p>
<p>friendly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: omar</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-5534</link>
		<dc:creator>omar</dc:creator>
		<pubDate>Wed, 23 Feb 2011 17:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-5534</guid>
		<description>hi prasahnt, 
is there an issur with Informix DB ?

friendly</description>
		<content:encoded><![CDATA[<p>hi prasahnt,<br />
is there an issur with Informix DB ?</p>
<p>friendly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kari</title>
		<link>http://www.prashantraju.com/2010/06/pentaho-3-5-with-mysql-postgresql-oracle/comment-page-1/#comment-3890</link>
		<dc:creator>Kari</dc:creator>
		<pubDate>Sat, 20 Nov 2010 10:17:16 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/analysethis/?p=88#comment-3890</guid>
		<description>Hi,

I found a problem in the 1_create_repository_ora.sql file. After each table creation script there should be &#039;;&#039;. Now that is only after datasource table.

Kari</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I found a problem in the 1_create_repository_ora.sql file. After each table creation script there should be &#8216;;&#8217;. Now that is only after datasource table.</p>
<p>Kari</p>
]]></content:encoded>
	</item>
</channel>
</rss>

