<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Pentaho Community Forums</title>
		<link>http://forums.pentaho.com/</link>
		<description>Pentaho, Open Source, BI, Business Intelligence, Open, Reporting, Analysis, Workflow, Dashboards, Data Mining</description>
		<language>en</language>
		<lastBuildDate>Wed, 16 May 2012 15:34:55 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.pentaho.com/images/misc/rss.png</url>
			<title>Pentaho Community Forums</title>
			<link>http://forums.pentaho.com/</link>
		</image>
		<item>
			<title>how to set  css style of CDE Date input component</title>
			<link>http://forums.pentaho.com/showthread.php?95661-how-to-set-css-style-of-CDE-Date-input-component&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 14:17:13 GMT</pubDate>
			<description><![CDATA[hi, all, I'm a beginner of CDE, and I use date input component as follows: 
Attachment 8727...]]></description>
			<content:encoded><![CDATA[<div>hi, all, I'm a beginner of CDE, and I use date input component as follows:<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8727&amp;d=1337177631"  title="Name:  Screenshot-3.jpg
Views: 1
Size:  13.9 KB">Screenshot-3.jpg</a><br />
<br />
how can I set its css style so that the date input box width looks much larger?<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8728&amp;d=1337177765"  title="Name:  Screenshot-2.png
Views: 1
Size:  1.4 KB">Screenshot-2.png</a><br />
<br />
I have tried set start_day_layout css style, but it doesn't affect.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8727&amp;d=1337177631">Screenshot-3.jpg</a> 
(13.9 KB)
</li><li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/png.gif" alt="File Type: png" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8728&amp;d=1337177765">Screenshot-2.png</a> 
(1.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>yanshuai</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95661-how-to-set-css-style-of-CDE-Date-input-component</guid>
		</item>
		<item>
			<title>Change context root of administration console</title>
			<link>http://forums.pentaho.com/showthread.php?95660-Change-context-root-of-administration-console&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 14:10:55 GMT</pubDate>
			<description>I am trying to change the context root of the administration console from / to /admin. I have extended the org.pentaho.pac.common.server.JettyServer...</description>
			<content:encoded><![CDATA[<div>I am trying to change the context root of the administration console from / to /admin. I have extended the org.pentaho.pac.common.server.JettyServer class with a new class overriding createServletContext() and configureServlets(Context servletContext) see below. I have changed the classpath in start-pac.sh to -cp $CLASSPATH  org.pentaho.pac.server.JettyServerAdmin. However when I start the administration console it is still running under context root /<br />
<br />
How can I change the context root?<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">package org.pentaho.pac.server;<br />
<br />
import org.mortbay.jetty.handler.ContextHandlerCollection;<br />
import org.mortbay.jetty.servlet.Context;<br />
import org.mortbay.jetty.servlet.ServletHolder;<br />
<br />
public class JettyServerAdmin extends JettyServer {<br />
<br />
&nbsp; public JettyServerAdmin() {<br />
&nbsp; &nbsp; super();<br />
&nbsp; }<br />
&nbsp; <br />
&nbsp; protected Context createServletContext() {<br />
&nbsp; &nbsp; ContextHandlerCollection contextHandlers = new ContextHandlerCollection();<br />
&nbsp; &nbsp; Context servletContext = new Context(contextHandlers, &quot;/admin&quot;, Context.SESSIONS); //$NON-NLS-1$<br />
&nbsp; &nbsp; servletContext.setResourceBase( getResourceBaseName() ); <br />
&nbsp; &nbsp; servletContext.setWelcomeFiles( getWelcomeFiles() ); <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; return servletContext;<br />
&nbsp; }<br />
&nbsp; <br />
&nbsp; public void configureServlets( Context servletContext ) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; // add servlets<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder defaultServlet = new ServletHolder(new DefaultConsoleServlet(&quot;/admin-ce&quot;, this)); //$NON-NLS-1$<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(defaultServlet, &quot;/admin/*&quot;); //$NON-NLS-1$<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(defaultServlet, &quot;/admin/halt&quot;); //$NON-NLS-1$<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder welcomeServlet = new ServletHolder(new BrowserLocaleServlet());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(welcomeServlet, &quot;/admin/browserlocalesvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder pacsvc = new ServletHolder(new org.pentaho.pac.server.PacServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(pacsvc, &quot;/admin/pacsvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder schedulersvc = new ServletHolder(new org.pentaho.pac.server.SchedulerServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(schedulersvc, &quot;/admin/schedulersvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder subscriptionsvc = new ServletHolder(new org.pentaho.pac.server.SubscriptionServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(subscriptionsvc, &quot;/admin/subscriptionsvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder solutionrepositorysvc = new ServletHolder(new org.pentaho.pac.server.SolutionRepositoryServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(solutionrepositorysvc, &quot;/admin/solutionrepositorysvc&quot;); //$NON-NLS-1$<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder jdbcdriverdiscoveryservice = new ServletHolder(new org.pentaho.pac.server.common.JdbcDriverDiscoveryServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(jdbcdriverdiscoveryservice, &quot;/admin/jdbcdriverdiscoverysvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ServletHolder hibernateconfigurationservice = new ServletHolder(new org.pentaho.pac.server.common.HibernateConfigurationServiceImpl());<br />
&nbsp; &nbsp; &nbsp; &nbsp; servletContext.addServlet(hibernateconfigurationservice, &quot;/admin/hibernateconfigurationsvc&quot;); //$NON-NLS-1$<br />
<br />
&nbsp; &nbsp; &nbsp; }<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?289-BI-Platform-Developer">BI Platform Developer</category>
			<dc:creator>bjork</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95660-Change-context-root-of-administration-console</guid>
		</item>
		<item>
			<title>Oracle e CDE</title>
			<link>http://forums.pentaho.com/showthread.php?95658-Oracle-e-CDE&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:54:35 GMT</pubDate>
			<description><![CDATA[Hello, 
How to create a connection from a datasource with Oracle database in CDE. 
I've tried sever always, but they are not recognized. 
 
Thank...]]></description>
			<content:encoded><![CDATA[<div><font color="#333333"><span style="font-family: arial"><br />
</span></font><font size="3"><span style="font-family: arial"><font color="#333333">Hello,</font><br />
<font color="#333333">How to create </font><font color="#333333">a connection from a </font><font color="#333333">datasource </font><font color="#333333">with </font><font color="#333333">Oracle database </font><font color="#333333">in </font><font color="#333333">CDE</font><font color="#333333">.</font><br />
<font color="#333333">I've tried </font><font color="#333333">sever al</font><font color="#333333">ways</font><font color="#333333">, </font><font color="#333333">but they </font><font color="#333333">are not recognized</font><font color="#333333">.</font><br />
<font color="#333333"><br />
Thank you.</font><font color="#333333"><br />
<br />
</font><font color="#333333">Sorry, any misspelling. My language is portuguese.</font></span></font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>Jose Sobral</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95658-Oracle-e-CDE</guid>
		</item>
		<item>
			<title>drill down in prpt charts</title>
			<link>http://forums.pentaho.com/showthread.php?95657-drill-down-in-prpt-charts&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:49:27 GMT</pubDate>
			<description>when drilling down from Parent report to Child report , the parameters of the parent report are not hidden.</description>
			<content:encoded><![CDATA[<div>when drilling down from Parent report to Child report , the parameters of the parent report are not hidden.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>Ponb</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95657-drill-down-in-prpt-charts</guid>
		</item>
		<item>
			<title>PDI:  Looking for help to add a field of a previous row  in a newl field</title>
			<link>http://forums.pentaho.com/showthread.php?95655-PDI-Looking-for-help-to-add-a-field-of-a-previous-row-in-a-newl-field&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:30:03 GMT</pubDate>
			<description>As a new kettle / pdi user I am looking for help. I have a single column in a tabel where some elements are headers and some elements are details...</description>
			<content:encoded><![CDATA[<div>As a new kettle / pdi user I am looking for help. I have a single column in a tabel where some elements are headers and some elements are details belonging to the header. <br />
The header is always before the details. The number of detail recors are not known.<br />
<br />
I would like to have the header info as an additional field at the subinfo row level. Any ides how this can be addressed best.<br />
<br />
For <a href="https://docs.google.com/open?id=0B76f6iv6JFH-T01aVGJNbWExaE0" target="_blank">An example of the column see li</a>nk.<br />
<br />
Thnx for the support.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>pgeers</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95655-PDI-Looking-for-help-to-add-a-field-of-a-previous-row-in-a-newl-field</guid>
		</item>
		<item>
			<title>gzip streaming task awesome, is there a regular zip version?</title>
			<link>http://forums.pentaho.com/showthread.php?95654-gzip-streaming-task-awesome-is-there-a-regular-zip-version&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:14:41 GMT</pubDate>
			<description><![CDATA[Hey all, 
I'm quite impressed with the gzip streaming task (direct to transformation, no pre-uncompression).  With large files (5-10G+), this makes a...]]></description>
			<content:encoded><![CDATA[<div>Hey all,<br />
I'm quite impressed with the gzip streaming task (direct to transformation, no pre-uncompression).  With large files (5-10G+), this makes a huge difference from the old job-level approach of unzip file to a working directory first (that then becomes 20-30G+ raw), then read through, then cleanup afterwords.<br />
<br />
Now, just gzip read the file as-is without an uncompress and cleanup process....and what's better is that I've been seeing 100k+ rows/sec throughput, 2x fold better than raw! <br />
<br />
question:<br />
Is there an equivalent for regular zip?  I understand there are more challenges:<br />
*Zip files can contain multiple files, while gzip only one (in the above scenario, assuming non-tar files).  As such, need to regex/identify which file (dir depth?) within the zip file.<br />
*password protected (optional), zip can also be password protected, and in my research there are multiple algorithms.  Personally, I would be happy if this wasn't included initially since most setups already have a 'pre-process' file to unprotect first anyway.<br />
*there is a chance of different compression algorithms, again, optional and I would be happy with basic/standard support.<br />
<br />
p.s. I've been 'arrow-in-the-knee' deep in SSIS('05,'08), and I miss Pentaho Kettle ETL work :-)</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>dhartford</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95654-gzip-streaming-task-awesome-is-there-a-regular-zip-version</guid>
		</item>
		<item>
			<title><![CDATA[Request For Kettle User's manual]]></title>
			<link>http://forums.pentaho.com/showthread.php?95650-Request-For-Kettle-User-s-manual&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 11:05:34 GMT</pubDate>
			<description><![CDATA[Hello All 
 
Could anybody tell me name of  user's manual about defininig Job in kettle. 
I want to create a job in kettle but unfortunately I don't...]]></description>
			<content:encoded><![CDATA[<div>Hello All<br />
<br />
Could anybody tell me name of  user's manual about defininig Job in kettle.<br />
I want to create a job in kettle but unfortunately I don't have any good user's manual to advice me around this subject.<br />
<br />
Thanks in advance</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>fariborzgolara</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95650-Request-For-Kettle-User-s-manual</guid>
		</item>
		<item>
			<title>Http Post JSON input variables from source database table or csv</title>
			<link>http://forums.pentaho.com/showthread.php?95647-Http-Post-JSON-input-variables-from-source-database-table-or-csv&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 10:18:33 GMT</pubDate>
			<description>I have a JSON call I am making using Http Post and have a problem with the amount of data that is coming back and need to split the call into stages...</description>
			<content:encoded><![CDATA[<div>I have a JSON call I am making using Http Post and have a problem with the amount of data that is coming back and need to split the call into stages for each code param within the JSON call. The body of the Http post is saved in a .js file but I need to change one of the params so I can save the data returned for each id then move onto the next, I have over 13,000 different Code's that I need to call data for then save into a database.<br />
Here is an example of the JSON call body in the input .js file;<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{&quot;jsonrpc&quot;: &quot;2.0&quot;,<br />
&nbsp;&quot;method&quot;: &quot;DataReturn&quot;,<br />
&nbsp;&quot;params&quot;: {&quot;User&quot;: &quot;user1&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Password&quot;: &quot;pass1&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Codes&quot;: [&quot;123455&quot;, &quot;123456&quot;],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Items&quot;: [&quot;Data&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  },<br />
&nbsp;&quot;id&quot;:&nbsp; &nbsp; 1001<br />
}</code><hr />
</div>I have done some tests and one call comes back in 2 secs and can add 5 codes returns in 10-12 secs but over that I run into memory issues with the amount of data that is coming back and cannot save it so think it would be simplist if I can loop through a list of codes and save the data from each one in turn or can I save the data as it comes back?<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>torosol</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95647-Http-Post-JSON-input-variables-from-source-database-table-or-csv</guid>
		</item>
		<item>
			<title>Looking for help on xml data extraction</title>
			<link>http://forums.pentaho.com/showthread.php?95646-Looking-for-help-on-xml-data-extraction&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 10:12:52 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
I am new to Pentaho-Kettle tool.. Here i am tring to import xml data into mysql db.  
 
My xml is something like this: 
 
<PriceChange...]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
I am new to Pentaho-Kettle tool.. Here i am tring to import xml data into mysql db. <br />
<br />
My xml is something like this:<br />
<br />
<font color="#990000">&lt;PriceChange ChangeType</font><font color="#0000ff">=&quot;</font><b>ADD</b><font color="#0000ff">&quot;</font><font color="#990000"> ID</font><font color="#0000ff">=&quot;</font><b>40000859</b><font color="#0000ff">&quot;</font><font color="#990000"> StartDate</font><font color="#0000ff">=&quot;</font><b>2007-01-28</b><font color="#0000ff">&quot;</font><font color="#990000"> TemplateType</font><font color="#0000ff">=&quot;</font><b>Default</b><font color="#0000ff">&quot;&gt;</font> <font color="#0000ff">&lt;</font><font color="#990000">Description</font><font color="#0000ff">&gt;</font><b>Board Games</b><font color="#0000ff">&lt;/</font><font color="#990000">Description</font><font color="#0000ff">&gt;</font> <br />
<br />
<a href="http://forums.pentaho.com/#" target="_blank"><b><span style="font-family: Courier New"><font color="#ff0000">-</font></span></b></a> <font color="#0000ff">&lt;</font><font color="#990000">Item ID</font><font color="#0000ff">=&quot;</font><b>20020002</b><font color="#0000ff">&quot;</font><font color="#990000"> TemplateType</font><font color="#0000ff">=&quot;</font><b>Default</b><font color="#0000ff">&quot;&gt;</font><br />
<font color="#0000ff">&lt;</font><font color="#990000">Price</font><font color="#0000ff">&gt;</font><b>199.99</b><font color="#0000ff">&lt;/</font><font color="#990000">Price</font><font color="#0000ff">&gt;</font> <br />
<br />
<font color="#0000ff">&lt;</font><font color="#990000">Price CurrencyCode</font><font color="#0000ff">=&quot;</font><b>CAD</b><font color="#0000ff">&quot;&gt;</font><b>299.99</b><font color="#0000ff">&lt;/</font><font color="#990000">Price</font><font color="#0000ff">&gt;</font> <br />
<br />
<font color="#0000ff">&lt;/</font><font color="#990000">Item</font><font color="#0000ff">&gt;</font><br />
<br />
<br />
<a href="http://forums.pentaho.com/#" target="_blank"><b><span style="font-family: Courier New"><font color="#ff0000">-</font></span></b></a> <font color="#0000ff">&lt;</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font><b>04241</b><font color="#0000ff">&lt;/</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font> <br />
<br />
<font color="#0000ff">&lt;</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font><b>04242</b><font color="#0000ff">&lt;/</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font> <br />
<br />
<font color="#0000ff">&lt;</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font><b>04243</b><font color="#0000ff">&lt;/</font><font color="#990000">StoreID</font><font color="#0000ff">&gt;</font> <br />
<br />
<font color="#0000ff">&lt;/</font><font color="#990000">PriceChange</font><font color="#0000ff">&gt;</font><br />
<br />
<br />
<br />
<br />
Issue that i am facing;<br />
1. <font color="#0000ff">&lt;</font><font color="#990000">Price</font><font color="#0000ff">&gt; node, the smae is repeating 2 times under item node. while specifing <font size="4">PriceChange/Item/Price <font size="2">just getting the first price that is 199.00, but i am looking for the second price node's value too.. that is 299.00<br />
<br />
2. How to retrive the repeating &lt;storeID&gt; node id values those are 04241,04242,04243 <br />
<br />
I am using :Pentaho,kettle -spoon stable release -4.2.0<br />
<br />
Thanks for the help.<br />
<br />
Anoop.<br />
<br />
</font></font></font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>anoop3525</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95646-Looking-for-help-on-xml-data-extraction</guid>
		</item>
		<item>
			<title>Translating UUID to number primary/foreign keys</title>
			<link>http://forums.pentaho.com/showthread.php?95641-Translating-UUID-to-number-primary-foreign-keys&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 07:46:41 GMT</pubDate>
			<description>I am using PDI 4.2.1 and I am involved in migrating an Oracle 10i database to an SQL Server 2008 database. 
 
In the old Oracle database there is...</description>
			<content:encoded><![CDATA[<div>I am using PDI 4.2.1 and I am involved in migrating an Oracle 10i database to an SQL Server 2008 database.<br />
<br />
In the old Oracle database there is around 40 tables using UUIDs as primary and foreign keys, stored in a CHAR(16 BYTE) fields.  There is of course references between the tables with these UUIDs.<br />
<br />
When migrating, the plan/requirement is to migrate the UUID primary and foreign keys to new generated numbers (digits only) and the strategi is to take the tables in sequence, one by one, one job/transformation per each table, and generate new number primary keys.<br />
<br />
I am trying to figure out how to do this, as the foreign keys also have to be updated so I need some sort of lookup per each table. <br />
<br />
How can I solved this, any help is appreciated? <br />
<br />
- Per</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>Per</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95641-Translating-UUID-to-number-primary-foreign-keys</guid>
		</item>
		<item>
			<title>A Special Thank you for the forum</title>
			<link>http://forums.pentaho.com/showthread.php?95637-A-Special-Thank-you-for-the-forum&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 06:03:06 GMT</pubDate>
			<description><![CDATA[This forum definitely deserves a "Thank you" for bringing out great ideas from people. We gave a topic to think and people came up with brilliant...]]></description>
			<content:encoded><![CDATA[<div>This forum definitely deserves a &quot;Thank you&quot; for bringing out great ideas from people. We gave a topic to think and people came up with brilliant ideas. <br />
<br />
When we say Thanx, we say it our way like this:<br />
<br />
<a href="http://www.pictofigo.com/download.php?id=1851" target="_blank"><a href="http://forums.pentaho.com/attachment.php?attachmentid=8726&amp;d=1337148008"  title="Name:  Thankyou.png
Views: 2
Size:  13.1 KB">Thankyou.png</a></a><br />
<br />
more we have uploaded for you here: <a href="http://bit.ly/LQw9SL" target="_blank">http://bit.ly/LQw9SL</a><br />
<br />
Keep your good work going.<br />
<br />
Regards,<br />
<br />
p!<br />
Pictofigo<br />
(<a href="http://www.pictofigo.com" target="_blank">http://www.pictofigo.com</a>)<br />
--World's best freehand drawing search engine</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/png.gif" alt="File Type: png" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8726&amp;d=1337148008">Thankyou.png</a> 
(13.1 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?299-Agile-BI-Development-and-Methodology">Agile BI Development and Methodology</category>
			<dc:creator>pictofigo</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95637-A-Special-Thank-you-for-the-forum</guid>
		</item>
		<item>
			<title>Collapse Pentaho 3.8 + BIRT</title>
			<link>http://forums.pentaho.com/showthread.php?95635-Collapse-Pentaho-3-8-BIRT&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 05:39:15 GMT</pubDate>
			<description>Sorry for my english 
 
I havean installation ofpentahocommunity 3.8 andBIRT.There are about200 usersaccessing abirtreport. The reportisa HTML...</description>
			<content:encoded><![CDATA[<div>Sorry for my english<br />
<br />
<font color="#333333"><span style="font-family: arial">I have</span></font><font color="#333333"><span style="font-family: arial">an installation of</span></font><font color="#333333"><span style="font-family: arial">pentaho<font color="#333333"><span style="font-family: arial">community </span></font>3.8 and</span></font><font color="#333333"><span style="font-family: arial">BIRT.</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial">There are about</span></font><font color="#333333"><span style="font-family: arial">200 users</span></font><font color="#333333"><span style="font-family: arial">accessing a</span></font><font color="#333333"><span style="font-family: arial">birt</span></font><font color="#333333"><span style="font-family: arial">report</span></font><font color="#333333"><span style="font-family: arial">. </span></font><font color="#333333"><span style="font-family: arial"><font color="#333333"><span style="font-family: arial">The report</span></font><font color="#333333"><span style="font-family: arial">is</span></font><font color="#333333"><span style="font-family: arial">a HTML table</span></font><font color="#333333"><span style="font-family: arial">of</span></font><font color="#333333"><span style="font-family: arial"> &quot;</span></font><font color="#333333"><span style="font-family: arial">3Mb&quot;</span></font><br />
</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial">Every 2</span></font><font color="#333333"><span style="font-family: arial">days I have to</span></font><font color="#333333"><span style="font-family: arial">restart</span></font><font color="#333333"><span style="font-family: arial">tomcat</span></font><font color="#333333"><span style="font-family: arial">because the system</span></font><font color="#333333"><span style="font-family: arial">collapses,</span></font><font color="#333333"><span style="font-family: arial">then the </span></font><font color="#333333"><span style="font-family: arial">users</span></font><font color="#333333"><span style="font-family: arial">can</span></font><font color="#333333"><span style="font-family: arial">not</span></font><font color="#333333"><span style="font-family: arial">login. </span></font><font color="#333333"><span style="font-family: arial">After restarting tomcat, everything is perfect.<br />
</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial"><br />
-&gt; configuration TOMCAT</span></font><font color="#333333"><span style="font-family: arial">:</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial">Minimum</span></font><font color="#333333"><span style="font-family: arial">memory:</span></font><font color="#333333"><span style="font-family: arial">3000m</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial">Maximum</span></font><font color="#333333"><span style="font-family: arial">memory:</span></font><font color="#333333"><span style="font-family: arial">6000m</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><font color="#333333"><span style="font-family: arial">Reserved Memory</span></font><font color="#333333"><span style="font-family: arial">: 3000m</span></font><font color="#333333"><span style="font-family: arial"><br />
</span></font><br />
<span style="font-family: arial"><font size="3"><font color="#333333"><br />
What do i doing?<br />
<br />
--------------------------------------------------------------------<br />
edit 16/05/2012:<br />
SO:    Red Hat</font></font></span></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>halter</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95635-Collapse-Pentaho-3-8-BIRT</guid>
		</item>
		<item>
			<title>Connection leakage in pentaho</title>
			<link>http://forums.pentaho.com/showthread.php?95632-Connection-leakage-in-pentaho&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 04:26:24 GMT</pubDate>
			<description>Hi All, 
 
Can anyone of you help,why the below error is throwing.when we run the kettle job. 
 
Below is the report by oracle support.Please reply...</description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
Can anyone of you help,why the below error is throwing.when we run the kettle job.<br />
<br />
Below is the report by oracle support.Please reply me asap.<br />
<br />
File Name:<br />
Error Message:<br />
----------------------------<br />
####&lt;Apr 21, 2012 7:27:36 AM CEST&gt; &lt;Warning&gt; &lt;JDBC&gt; &lt;SEKIAZW1027&gt; &lt;tmed_server1&gt; &lt;[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'&gt; &lt;&lt;WLS Kernel&gt;&gt; &lt;&gt; &lt;&gt; &lt;1334986056881&gt; &lt;BEA-001153&gt; &lt;Forcibly releasing inactive connection &quot;weblogic.jdbc.wrapper.PoolConnection...nnection@77e71&quot; back into the connection pool &quot;T-Med Explore non XA Data Source&quot;, currently reserved by: java.lang.Exception<br />
at weblogic.jdbc.common.internal.ConnectionEnv.setup(ConnectionEnv.java:318)<br />
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:344)<br />
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:322)<br />
at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.java:438)<br />
at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.java:317)<br />
at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(ConnectionPoolManager.java:93)<br />
at weblogic.jdbc.common.internal.RmiDataSource.getPoolConnection(RmiDataSource.java:342)<br />
at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:360)<br />
at org.pentaho.di.core.database.Database.initWithNamedDataSource(Database.java:386)<br />
at org.pentaho.di.core.database.Database.connectUsingClass(Database.java:409)<br />
at org.pentaho.di.core.database.Database.normalConnect(Database.java:354)<br />
at org.pentaho.di.core.database.Database.connect(Database.java:319)<br />
at org.pentaho.di.core.database.Database.connect(Database.java:281)<br />
at org.pentaho.di.trans.steps.combinationlookup.CombinationLookup.init(CombinationLookup.java:729)<br />
at org.pentaho.di.trans.step.StepInitThread.run(StepInitThread.java:52)<br />
at java.lang.Thread.run(Thread.java:619)<br />
----------------------------<br />
The above error message indicates that a connection which was reserved by the application, but was not released, was forcibly evicted by WebLogic Server. This means that somewhere within your application you have a connection leak and the connection which is being acquired is not being closed correctly after it has been used. In an application servers, when con.close is called on a connection, it is returned to the data-source and is made available for any other application requests which calls for the JDBC connection when DataSource.getConnection() is called.<br />
In this scenario, after acquiring the connection the application needs to close the connection reference by calling con.close after it utilizes it completely. Failure to do so will result in a connection leak which would ultimately exhaust JDBC connections on the application server and sessions at the database end. With the current evidence on hand we can see that the same is not being done within the application. According to the stack trace present on the SR, we can see that the connection is being acquired at the following class.<br />
--  org.pentaho.di.core.database.Database.initWithNamedDataSource(Database.java:386)<br />
Following the same, however it is not being closed off. Additionally, please note that this error message means that the connection was found to be leaking and hence was forcibly released back into the connection pool by WebLogic. This feature is activated when we set the Inactive Connection Timeout in datasource properties. With this setting in place you will have a stable environment; however the resolution would be to find the connection leak within the application and mitigate the same.<br />
With reference to the same, please consult with your application team/architects to understand the flow and lifecycle of the connection reference acquired within your application. This would enable you to determine where the leak is happening and mitigate the same.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>Surendar</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95632-Connection-leakage-in-pentaho</guid>
		</item>
		<item>
			<title>How to hide Datasource / metadata model in PUC when creating new report</title>
			<link>http://forums.pentaho.com/showthread.php?95620-How-to-hide-Datasource-metadata-model-in-PUC-when-creating-new-report&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 21:36:49 GMT</pubDate>
			<description>Hi,  
 
I have two metadata models available in Pentaho User Console. These two metadata models show up as available DATASOURCEs when I select new...</description>
			<content:encoded><![CDATA[<div>Hi, <br />
<br />
I have two metadata models available in Pentaho User Console. These two metadata models show up as available DATASOURCEs when I select new Report.<br />
<br />
Is there a way to hide one of these two datasources/metadata models to be available to the user to use it for report creation?<br />
<br />
Please find below the screen shot of the same.<br />
Thanks,<br />
Nick.<a href="http://forums.pentaho.com/attachment.php?attachmentid=8725&amp;d=1337117742"  title="Name:  puc.jpg
Views: 7
Size:  30.2 KB">puc.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8725&amp;d=1337117742">puc.jpg</a> 
(30.2 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95620-How-to-hide-Datasource-metadata-model-in-PUC-when-creating-new-report</guid>
		</item>
		<item>
			<title>CDE: Autocomplete components and prpt in an iframe</title>
			<link>http://forums.pentaho.com/showthread.php?95615-CDE-Autocomplete-components-and-prpt-in-an-iframe&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 19:13:37 GMT</pubDate>
			<description><![CDATA[Preface: Love all the work that has went into CDE/CDF and I'm not trying to bust anyone's chops, but I always assume I'm doing something wrong first...]]></description>
			<content:encoded><![CDATA[<div>Preface: Love all the work that has went into CDE/CDF and I'm not trying to bust anyone's chops, but I always assume I'm doing something wrong first and it's been a real pain to do this correctly.<br />
<br />
Ok, I decided to make a simple dashboard to do auto completes on our customer names and spit out a single page report on various data related to them including sales and trends.<br />
<br />
So I created a CDE dashboard, created a row and two columns, named them, then created a datasource to retrieve the customer names, a text component to give the user a prompt and an &quot;Auto complete component&quot;.  I connected the component up to the data and all was fine except:<br />
<br />
1. Alignment of the text component was vertical-align: top as was the auto complete box.  Though the auto complete box actually extended outside the row at the top, cutting off the top border of the box.<br />
2. So I created a css style and applied it to the row expecting it to be inherited, background-color was, that's about it.<br />
3. Applied the style to the columns (divs) and received the same result.<br />
4. Firebug showed me that my css class was having keys filtered out.<br />
5. So I changed the text component to a simple html &lt;p&gt; with the class, instant fix for that.  However the auto complete would not respond to any attempts to get it 'down'.<br />
6. Created a spacer row with the same back color, that sort of fixed it, had to correct the text html (prompt) with different padding.<br />
7. This screwed up the rounded corners however...so...I finally gave up and moved to the Simple Autocomplete Component<br />
<br />
Simple Autocomplete Component<br />
<br />
1. This looked better, though I had to change the datasource to accept the search parameter which made more sense to me.<br />
2. Looking good.  The thing played nicely in the column.  Everything was looking good.<br />
3. Created my report at this time and a simple parameter.  Set the parameter in the Simple Autocomplete and set a listener in the PRPT component.<br />
4. First issue was when I selected the item in the autocomplete before the accordian window closed the report tried to refresh, ie: the fireChange went off with the list out.<br />
5. And because of this it was was sending only the letters typed into the box. ie: if I had typed &quot;fed&quot; and had selected &quot;Federal Express&quot; it was pushing &quot;fed&quot; into the <br />
parameter and nothing was found.<br />
6. I discovered this by unhiding the parameter box in the PRPT Component.<br />
7. I was also expecting the additional customer ID number I had passed as part of the query not the display name, just as a regular dropdown would give me when the value was queried.  This is probably not a bug just something that isn't part of the component.<br />
8. So I removed the &quot;parameter&quot; from the autocomplete component, stuck in a PostExecute function, set the parameter variable to the getValue() of the autocomplete component and fired the change.<br />
9. This did not work.<br />
10. There is some problem with the report in an iframe wherein the parameter is getting initially ignored when the report refreshes.  I haven't tried to debug it beyond noting that if I show the parameters in the PRPT component, the proper value shows up, but the report fails, however it DOES run after I hit the &quot;View Report&quot; button in the report viewer.<br />
11. I removed the iFrame option from the PRPT component and now it just works sweet.  Still alot of work and a great deal of sludging through web console to come up with a simple screen.<br />
<br />
Hope this helps someone.<br />
<br />
Btw: This is in the latest version of Firefox with 4.5 BI and the latest (I believe version of ctools)</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>flamierd</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95615-CDE-Autocomplete-components-and-prpt-in-an-iframe</guid>
		</item>
		<item>
			<title>SHA-2 Hash</title>
			<link>http://forums.pentaho.com/showthread.php?95611-SHA-2-Hash&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 17:32:59 GMT</pubDate>
			<description>Apologies if this is something I missed in my forum search but could not find: 
 
I need to hash encrypt a field in a transformation using SHA-2/256....</description>
			<content:encoded><![CDATA[<div>Apologies if this is something I missed in my forum search but could not find:<br />
<br />
I need to hash encrypt a field in a transformation using SHA-2/256.  Is this possible using Kettle?<br />
<br />
Thanks in advance, Jay</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>aysen</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95611-SHA-2-Hash</guid>
		</item>
		<item>
			<title>Using Oracle with the CDE</title>
			<link>http://forums.pentaho.com/showthread.php?95610-Using-Oracle-with-the-CDE&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 17:32:26 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I'm using Pentaho BI Server with the CDE, but when creating dashboardswith CDE and Oracle 11g, there not appear the datasources that I...]]></description>
			<content:encoded><![CDATA[<div><font color="#888888"><span style="font-family: arial"><font color="#333333">Hello,<br />
<br />
I'm using Pentaho BI Server with the CDE, but when creating dashboardswith CDE and Oracle 11g, there not appear the datasources that I created.<br />
Does anyone know if there is any special configuration for Oracle?<br />
The driver is correct, because I can create reports.<br />
I have used Microsoft SQL Server, and got success.<br />
<br />
Thank you.<br />
<br />
Sorry, any misspelling. My language is portuguese.<br />
<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8724&amp;d=1337103132"  title="Name:  jndi.jpg
Views: 10
Size:  14.6 KB">jndi.jpg</a></font><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</span></font></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8724&amp;d=1337103132">jndi.jpg</a> 
(14.6 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>Jose Sobral</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95610-Using-Oracle-with-the-CDE</guid>
		</item>
		<item>
			<title>Publish a report with a user other than joe</title>
			<link>http://forums.pentaho.com/showthread.php?95608-Publish-a-report-with-a-user-other-than-joe&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 16:31:41 GMT</pubDate>
			<description>I have a user named user1 and I want him to be running the published reports. Currently always was publishing reports with joe / password and would...</description>
			<content:encoded><![CDATA[<div>I have a user named user1 and I want him to be running the published reports. Currently always was publishing reports with joe / password and would like two things:<br />
1. - How I can do to make the user1 can run a report without having to enter the console user joe and use the option to share?<br />
2. - How I can publish the reports with a more generic user, other than joe / password as is the default?<br />
<br />
Please help me.<br />
Thanks a lot!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>fragume</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95608-Publish-a-report-with-a-user-other-than-joe</guid>
		</item>
		<item>
			<title>Heap Exhaustion - Is this a typical issue?</title>
			<link>http://forums.pentaho.com/showthread.php?95605-Heap-Exhaustion-Is-this-a-typical-issue&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 15:30:41 GMT</pubDate>
			<description><![CDATA[*Description of Problem: 
 
*I'm running a scheduled job every 30 minutes (controlled by the start step of the Job which is itself launched using...]]></description>
			<content:encoded><![CDATA[<div><font size="3"><b>Description of Problem:<br />
<br />
</b></font>I'm running a scheduled job every 30 minutes (controlled by the start step of the Job which is itself launched using Kitchen).<br />
<br />
The only transformation called by the job queries a web service, gets a very large XML stream, passes it into a stored procedure, and repeats. Additional steps aside from the REST Client and Call DB Procedure steps include logging, some minor &quot;Modify Java Script Value&quot; steps, and a couple small Table Input steps.<br />
<br />
This job executes correctly around 14 times when run from Kitchen over the course of a day, and then it gets a Java Heap exception as shown below.<br />
<br />
<b><font size="3">I would like to know:<br />
</font></b><br />
<ol class="decimal"><li style="">Is this a known problem when using large streams/strings as returned from the REST Client step?</li><li style="">Is there anything I can do to determine what exactly is leaking? (because there must be a leak since it works 14 times through prior to this).</li><li style="">Can anyone think of a way to mitigate this kid of problem or leak within Kettle?</li></ol><br />
<i><b>Thank you in advance, and here is the exception message:<br />
<br />
</b></i>ERROR 14-05 17:17:41,998 - EAN WS REST - UnexpectedError:<br />
ERROR 14-05 17:17:41,999 - EAN WS REST - java.lang.OutOfMemoryError: Java heap space<br />
at java.util.Arrays.copyOf(Unknown Source)<br />
at java.lang.AbstractStringBuilder.expandCapacity(Unknown Source)<br />
at java.lang.AbstractStringBuilder.append(Unknown Source)<br />
at java.lang.StringBuilder.append(Unknown Source)<br />
at com.sun.jersey.core.util.ReaderWriter.readFromAsString(ReaderWriter.java:172)<br />
at com.sun.jersey.core.util.ReaderWriter.readFromAsString(ReaderWriter.java:157)<br />
at com.sun.jersey.core.provider.AbstractMessageReaderWriterProvider.readFromAsString(AbstractMessageReaderWriterProvider.java:114)<br />
at com.sun.jersey.core.impl.provider.entity.StringProvider.readFrom(StringProvider.java:73)<br />
at com.sun.jersey.core.impl.provider.entity.StringProvider.readFrom(StringProvider.java:58)<br />
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:553)<br />
at com.sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.java:506)<br />
at org.pentaho.di.trans.steps.rest.Rest.callRest(Rest.java:172)<br />
at org.pentaho.di.trans.steps.rest.Rest.processRow(Rest.java:389)<br />
at org.pentaho.di.trans.step.RunThread.run(RunThread.java:40)<br />
at java.lang.Thread.run(Unknown Source)<br />
ERROR 14-05 17:17:42,000 - Execute Incremental Update - Something went wrong while trying to stop the transformation: org.pentaho.di.core.exception.KettleDatabaseException:<br />
Error cancelling statement<br />
Invalid state, the Statement object is closed.<br />
ERROR 14-05 17:17:42,021 - Execute Incremental Update - org.pentaho.di.core.exception.KettleDatabaseException:<br />
Error cancelling statement<br />
Invalid state, the Statement object is closed.<br />
at org.pentaho.di.core.database.Database.cancelStatement(Database.java:639)<br />
at org.pentaho.di.core.database.Database.cancelQuery(Database.java:619)<br />
at org.pentaho.di.trans.steps.sql.ExecSQL.stopRunning(ExecSQL.java:244)<br />
at org.pentaho.di.trans.Trans.stopAll(Trans.java:1352)<br />
at org.pentaho.di.trans.step.BaseStep.stopAll(BaseStep.java:2244)<br />
at org.pentaho.di.trans.step.RunThread.run(RunThread.java:64)<br />
at java.lang.Thread.run(Unknown Source)<br />
Caused by: java.sql.SQLException: Invalid state, the Statement object is closed.<br />
at net.sourceforge.jtds.jdbc.JtdsStatement.checkOpen(JtdsStatement.java:220)<br />
at net.sourceforge.jtds.jdbc.JtdsStatement.cancel(JtdsStatement.java:817)<br />
at org.pentaho.di.core.database.Database.cancelStatement(Database.java:633)<br />
... 6 more</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>w00te</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95605-Heap-Exhaustion-Is-this-a-typical-issue</guid>
		</item>
		<item>
			<title>Simultaneous Kettle Jobs Execution</title>
			<link>http://forums.pentaho.com/showthread.php?95603-Simultaneous-Kettle-Jobs-Execution&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 14:58:49 GMT</pubDate>
			<description>I pretend to scale my app and some part of the process includes to run kettle jobs simultaneously by some processing clients, in some point...</description>
			<content:encoded><![CDATA[<div>I pretend to scale my app and some part of the process includes to run kettle jobs simultaneously by some processing clients, in some point transformations need to perform combination lookup on some shared table (let's suppose &quot;clients_table&quot;), this table grows quickly due to all posible clients are unknown, so they are inserted as the show up. Combination lookup on simultaneously executing jobs (let's say 2 but could be more than that, each per client) over this table, it is presenting concurrency issues because of &quot;duplicate entry key xxx&quot; error, i suppose that happens while inserting non existing clients (when combination lookup didn't find them in the table to retrieves it's id). It's a fact that every time processing clients executes kettle jobs will transfer new clients so above problem it's very common. I wonder if i'm breaking kettle philosophy or i'm missing something, i've read about diferents extrategies on combination lookup step (table maximum + 1 or autoincrement) or making kettle transformations transactional could that be my solution????, (i think what's going on is that combination lookup step isn't transactional), please give me some ideas,  PS: I'm using Kettle 4.2 and MySql 5.2</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>ccverak</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95603-Simultaneous-Kettle-Jobs-Execution</guid>
		</item>
		<item>
			<title>Is it a bug? - rewriteBatchStatements</title>
			<link>http://forums.pentaho.com/showthread.php?95597-Is-it-a-bug-rewriteBatchStatements&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 12:21:23 GMT</pubDate>
			<description>Hi, 
 
I noticed that if you use rewriteBatchStatements=true with the mysql driver, and have a large commit size, then you blow the...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I noticed that if you use rewriteBatchStatements=true with the mysql driver, and have a large commit size, then you blow the max_prepared_stmt_count limit.<br />
( however this limit can be easily increased )<br />
<br />
I wondered, is that expected?  I guess it is. I guess if you have a commit size of 1000, and 30 fields, then you're going to use 30,000 bind variables right?<br />
<br />
( this only applies with the 5.x driver, not the 3.x one )<br />
<br />
Dan</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>codek</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95597-Is-it-a-bug-rewriteBatchStatements</guid>
		</item>
		<item>
			<title><![CDATA[prpt component & execute prpt component]]></title>
			<link>http://forums.pentaho.com/showthread.php?95595-prpt-component-amp-execute-prpt-component&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 11:40:56 GMT</pubDate>
			<description><![CDATA[hi, all, does PRPT component have some difference with execute PRPT componen? What''s the difference?]]></description>
			<content:encoded><![CDATA[<div>hi, all, does PRPT component have some difference with execute PRPT componen? What''s the difference?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>yanshuai</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95595-prpt-component-amp-execute-prpt-component</guid>
		</item>
		<item>
			<title>Problem with Cross tab report in PRD 3.8</title>
			<link>http://forums.pentaho.com/showthread.php?95593-Problem-with-Cross-tab-report-in-PRD-3-8&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:46:03 GMT</pubDate>
			<description>Hi, 
I am using cross tab in PRD 3.8.3. I am facing a problem in this.  
 
Below is the data which we queried from database: 
 
COL1 COL2 COL3 
A 1...</description>
			<content:encoded><![CDATA[<div><font color="#333333"><font color="#333333">Hi,</font></font><br />
<font color="#333333"><font color="#333333">I am using cross tab in PRD 3.8.3. I am facing a problem in this. </font></font><br />
<br />
<font color="#333333"><font color="#333333">Below is the data which we queried from database:</font></font><br />
<br />
<font color="#333333"><font color="#333333">COL1 COL2 </font></font><font color="#333333"><font color="#333333">COL3</font></font><br />
<font color="#333333"><font color="#333333">A 1</font></font><font color="#333333"><font color="#333333"> 11-NOV</font></font><br />
<font color="#333333"><font color="#333333">B </font></font><font color="#333333"><font color="#333333">2 </font></font><font color="#333333"><font color="#333333">11-NOV</font></font><br />
<font color="#333333"><font color="#333333">A</font></font><font color="#333333"><font color="#333333"> 3 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">C </font></font><font color="#333333"><font color="#333333">4 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">D </font></font><font color="#333333"><font color="#333333">5 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">E </font></font><font color="#333333"><font color="#333333">6 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">F </font></font><font color="#333333"><font color="#333333">7 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">B </font></font><font color="#333333"><font color="#333333">8 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<font color="#333333"><font color="#333333">G</font></font><font color="#333333"><font color="#333333"> 9 </font></font><font color="#333333"><font color="#333333">14-NOV</font></font><br />
<br />
<font color="#333333"><font color="#333333">And the below is the report which is being generated using the above data:</font></font><br />
<br />
<font color="#333333"><font color="#333333">A </font></font><font color="#333333"><font color="#333333">B</font></font><br />
<font color="#333333"><font color="#333333">11-NOV </font></font><font color="#333333"><font color="#333333">1 2</font></font><br />
<font color="#333333"><font color="#333333">14-NOV 3 4 5 6 7 8 9</font></font><br />
<br />
<font color="#333333"><font color="#333333">Above report has the following problems:</font></font><br />
<font color="#333333"><font color="#333333">1) Columns names(C,D,E,F,G) are not being displayed. This is because there is no data for 11-Nov however there is data for other dates.</font></font><br />
<font color="#333333"><font color="#333333">2) Value for 14-NOV and B is 8 but in the report it is coming as 4. Its taking the value in sequence.</font></font><br />
<br />
<font color="#333333"><font color="#333333">Is there any configuration to rectify these in PRD??</font></font><br />
<br />
<font color="#333333"><font color="#333333">Thanks</font></font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>renjitab</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95593-Problem-with-Cross-tab-report-in-PRD-3-8</guid>
		</item>
		<item>
			<title>Problem with Cross tab report in PRD 3.8</title>
			<link>http://forums.pentaho.com/showthread.php?95591-Problem-with-Cross-tab-report-in-PRD-3-8&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:26:50 GMT</pubDate>
			<description>Hi, 
I am using cross tab in PRD 3.8.3. I am facing a problem in this.  
 
Below is the data which we queried from database: 
 
COL1  COL2 COL3 
A   ...</description>
			<content:encoded><![CDATA[<div><font color="#333333">Hi,</font><br />
<font color="#333333">I am using cross tab in PRD 3.8.3. I am facing a problem in this. </font><br />
<br />
<font color="#333333">Below is the data which we queried from database:</font><br />
<br />
<font color="#333333">COL1  COL2 </font><font color="#333333">COL3</font><br />
<font color="#333333">A         1</font><font color="#333333"> 11-NOV</font><br />
<font color="#333333">B </font><font color="#333333">2 </font><font color="#333333">11-NOV</font><br />
<font color="#333333">A</font><font color="#333333"> 3 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">C </font><font color="#333333">4 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">D </font><font color="#333333">5 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">E </font><font color="#333333">6 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">F </font><font color="#333333">7 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">B </font><font color="#333333">8 </font><font color="#333333">14-NOV</font><br />
<font color="#333333">G</font><font color="#333333"> 9 </font><font color="#333333">14-NOV</font><br />
<br />
<font color="#333333">And the below is the report which is being generated using the above data:</font><br />
<br />
<font color="#333333">A   </font><font color="#333333">B</font><br />
<font color="#333333">11-NOV    </font><font color="#333333">1   2</font><br />
<font color="#333333">14-NOV    3   4   5   6   7   8   9</font><br />
<br />
<font color="#333333">Above report has the following problems:</font><br />
<font color="#333333">1) Columns names(C,D,E,F,G) are not being displayed. This is because there is no data for 11-Nov however there is data for other dates.</font><br />
<font color="#333333">2) Value for 14-NOV and B is 8 but in the report it is coming as 4. Its taking the value in sequence.</font><br />
<br />
<font color="#333333">Is there any configuration to rectify these in PRD??</font><br />
<br />
<font color="#333333">Thanks</font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>renjitab</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95591-Problem-with-Cross-tab-report-in-PRD-3-8</guid>
		</item>
		<item>
			<title><![CDATA[Execute Row SQL script -- Oracle says "invalid character"]]></title>
			<link>http://forums.pentaho.com/showthread.php?95590-Execute-Row-SQL-script-Oracle-says-quot-invalid-character-quot&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:25:58 GMT</pubDate>
			<description>Hello forum! 
 
I am trying to use the Execute Row SQL script to do the following: 
 
- I have a table that contains a CLOB field in which SQL...</description>
			<content:encoded><![CDATA[<div>Hello forum!<br />
<br />
I am trying to use the Execute Row SQL script to do the following:<br />
<br />
- I have a table that contains a CLOB field in which SQL scripts are stored<br />
- I read this CLOB field into Kettle<br />
- I use the Kettle field as source for the Execute Row SQL script.<br />
<br />
The issue is that Oracle complains about &quot;invalid character&quot; (ORA-00911). The script has several SQL sentences separated originally by /. I have tried both / and ;  but to no avail.<br />
It only seems to work when there's only one sentence, cannot seem to make it work with multiple.<br />
I have also tried executing the script with a normal SQL tool and it works fine.<br />
<br />
Any ideas?<br />
<br />
BTW, this is still good old v3.2. We're on the road to migration to 4.x but still not there.<br />
<br />
Many thanks,<br />
<br />
--<br />
Julio.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>juliocgut</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95590-Execute-Row-SQL-script-Oracle-says-quot-invalid-character-quot</guid>
		</item>
		<item>
			<title>Connection attempt failed: Communications link failure</title>
			<link>http://forums.pentaho.com/showthread.php?95584-Connection-attempt-failed-Communications-link-failure&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 07:12:22 GMT</pubDate>
			<description><![CDATA[I have downloaded the trial version of Pentaho EE and looks like its not going to work for me. I'm getting this error while I try to create a new...]]></description>
			<content:encoded><![CDATA[<div>I have downloaded the trial version of Pentaho EE and looks like its not going to work for me. I'm getting this error while I try to create a new data connection, and this is my first one. <br />
ERROR: Connection attempt failed: Communications link failure  The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.<br />
<br />
I can connect to Pentaho default database on jdbc:mysql://localhost:3306/hibernate, but when I try to connect to jdbc:mysql://localhost:8888/dwh it give this error. I can connect to this database using phpMyadmin or any other client.<br />
<br />
I tried adding the tomcat permission, and I tried changing my.cnf to bind to all host of my mysql server, copy the jdbc driver to all necessary and also to unnecessary folders of Pentaho installation :). Nothing helps <br />
<br />
My OS is Mac OSX Lion, and I'm using MAMP installation's mysql server.<br />
<br />
Please help me need to do this proof of concept to my manager so we can decide weather to buy Pentaho or not.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>thanura</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95584-Connection-attempt-failed-Communications-link-failure</guid>
		</item>
		<item>
			<title>Pentaho 3.8 not showing data</title>
			<link>http://forums.pentaho.com/showthread.php?95581-Pentaho-3-8-not-showing-data&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 06:16:31 GMT</pubDate>
			<description>Am still using 3.8, as we still need Mondrian for our office reporting needs. I recently created a new tableset and a new schema. The data started...</description>
			<content:encoded><![CDATA[<div>Am still using 3.8, as we still need Mondrian for our office reporting needs. I recently created a new tableset and a new schema. The data started third week of April, and has been working ever since. PDI is set to truncate the data over and over to make sure the data won't be doubled. By May 14, we noted that the data stopped appearing in 3.8 up until May 8. According to the database, the data is up-to-date. We have two Pentaho BI suite 3.8, one is the production and one is a staging, both on separate servers. Both show the same problem. Oddly enough, we have an old Pentaho 3.0 suite still active, but it shows the data all the way to the 15th. What could I be doing wrong? Please help.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>rider555</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95581-Pentaho-3-8-not-showing-data</guid>
		</item>
		<item>
			<title>Is run log in the correct order?</title>
			<link>http://forums.pentaho.com/showthread.php?95575-Is-run-log-in-the-correct-order&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 01:13:14 GMT</pubDate>
			<description>I have an issue with a transformation not working correctly, when I look at the run log I see my two sql execute components in the wrong order.  If...</description>
			<content:encoded><![CDATA[<div>I have an issue with a transformation not working correctly, when I look at the run log I see my two sql execute components in the wrong order.  If they executed in the order it's showing then it would cause the problem I am having but wanted to confirm that log is always in the order executed since they have the same time.<br />
<br />
If the order is right, any idea why second component would execute first when it is dependent on the first?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>jcstewar</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95575-Is-run-log-in-the-correct-order</guid>
		</item>
		<item>
			<title>HBase read with date range in start and stop key</title>
			<link>http://forums.pentaho.com/showthread.php?95571-HBase-read-with-date-range-in-start-and-stop-key&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 23:27:01 GMT</pubDate>
			<description>Using PDI(4.3 preview) Big data input/output and have a HBase table with key starting as date in format yyyyMMdd. Now while reading data from HBase,...</description>
			<content:encoded><![CDATA[<div>Using PDI(4.3 preview) Big data input/output and have a HBase table with key starting as date in format yyyyMMdd. Now while reading data from HBase, is it possible to read data from 20120501 to 20120515 date range? I tried putting these in start and stop key but didn't work as expected. Also, tried regex in the start key which also didn't work. Spoon picks only the start key and stop key column entry is not making any difference. Always output is from start till current date. <br />
<br />
Any suggestions?<br />
<br />
Thanks,<br />
Raj</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?301-Big-Data">Big Data</category>
			<dc:creator>rajpal</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95571-HBase-read-with-date-range-in-start-and-stop-key</guid>
		</item>
		<item>
			<title>Want to use Steel Wheels practice data - how to get it on system</title>
			<link>http://forums.pentaho.com/showthread.php?95566-Want-to-use-Steel-Wheels-practice-data-how-to-get-it-on-system&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 21:19:14 GMT</pubDate>
			<description><![CDATA[We have a corporate account and I have a login. But the example steel wheels is not on it and I don't want to practice on corporate data. How do I...]]></description>
			<content:encoded><![CDATA[<div>We have a corporate account and I have a login. But the example steel wheels is not on it and I don't want to practice on corporate data. How do I get the steel wheel data loaded on my system to practice on it? I don’t want to have to do an install.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>dougleppard</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95566-Want-to-use-Steel-Wheels-practice-data-how-to-get-it-on-system</guid>
		</item>
		<item>
			<title>Transform Verification</title>
			<link>http://forums.pentaho.com/showthread.php?95565-Transform-Verification&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 21:14:17 GMT</pubDate>
			<description><![CDATA[When I run "verify this transformation" from within Spoon I consistently see the Remark "file specifications are not checked".  What is this telling...]]></description>
			<content:encoded><![CDATA[<div>When I run &quot;verify this transformation&quot; from within Spoon I consistently see the Remark &quot;file specifications are not checked&quot;.  What is this telling me and what, if anything, should I do to rectify this?<br />
<br />
Thank you!<br />
<font size="2"><span style="font-family: comic sans ms"><i><font color="#0000CD">running CE 4.2.1 on Win7</font></i></span></font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>cnv_Ben</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95565-Transform-Verification</guid>
		</item>
		<item>
			<title>MQL related question - what should be the syntax</title>
			<link>http://forums.pentaho.com/showthread.php?95558-MQL-related-question-what-should-be-the-syntax&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 17:38:49 GMT</pubDate>
			<description>Hi,  
I am trying to add a condition where some fields are ANDed and then there is one condition which should be ORed. 
 
In plain sql it would be...</description>
			<content:encoded><![CDATA[<div>Hi, <br />
I am trying to add a condition where some fields are ANDed and then there is one condition which should be ORed.<br />
<br />
In plain sql it would be like <br />
<b>WHERE </b><br />
           TABLEA.COLA = 23<br />
     <b>AND </b>TABLEA.COLB = 2012<br />
     <b>AND </b>(TABLEB.COLA = 20932598 <b>OR</b> TABLEA.COLC = 20932598)<br />
<br />
In MQL I added it like:<br />
<br />
AND ( [TABLEA.COLA] = 23;<br />
         [TABLEA.COLB] = 2012;<br />
         ( OR ( [TABLEB.COLA] = 20932598 ;<br />
                  [TABLEA.COLC] = 20932598 )<br />
         )<br />
     )<br />
<br />
<br />
<br />
Caused by: org.pentaho.pms.core.exception.PentahoMetadataException: SqlOpenFormula.ERROR_0007 - An unknown error occurred with the formula <br />
AND ( [TABLEA.COLA] = 23; [TABLEA.COLB] = 2012; ( OR ( [TABLEB.COLA] = 20932598; [TABLEA.COLC] = 20932598 ) ) ).  See the log for details.<br />
 at org.pentaho.metadata.query.impl.sql.SqlOpenFormula.parseAndValidate(SqlOpenFormula.java:240)<br />
 at org.pentaho.metadata.query.impl.sql.SqlGenerator.getSQL(SqlGenerator.java:414)<br />
 at org.pentaho.metadata.query.impl.sql.SqlGenerator.generateSql(SqlGenerator.java:362)<br />
 at org.pentaho.platform.plugin.services.connections.metadata.sql.SqlMetadataQueryExec.executeQuery(SqlMetadataQueryExec.java:80)<br />
<br />
<br />
Please suggest how this can be implemented.<br />
<br />
Thanks,<br />
Nick</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?103-Metadata">Metadata</category>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95558-MQL-related-question-what-should-be-the-syntax</guid>
		</item>
		<item>
			<title>truncate not working the second time</title>
			<link>http://forums.pentaho.com/showthread.php?95553-truncate-not-working-the-second-time&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 14:59:47 GMT</pubDate>
			<description>Running against sql server 2005, I am trying to truncate a table in one execute sql component and insert from a select in the next execute sql...</description>
			<content:encoded><![CDATA[<div>Running against sql server 2005, I am trying to truncate a table in one execute sql component and insert from a select in the next execute sql component.  The first time I run the transformation it works fine, even when there is data in the table.  The next time I run it I get a primary key error...I can run the sql in a query tool over and over without issue.  I have tried putting begin trans and commit, nothing seems to help.  Any advice to this newbe would be appreciated.<br />
<br />
<br />
---issue resolved, you can ignore---</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>jcstewar</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95553-truncate-not-working-the-second-time</guid>
		</item>
		<item>
			<title>How to deal with datetime with millisecond in Kettle?</title>
			<link>http://forums.pentaho.com/showthread.php?95552-How-to-deal-with-datetime-with-millisecond-in-Kettle&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 14:58:03 GMT</pubDate>
			<description>I want to get the processing time for mapping(sumtransformation) with milliseconds. Does anyone have any suggestions? Thanks.</description>
			<content:encoded><![CDATA[<div>I want to get the processing time for mapping(sumtransformation) with milliseconds. Does anyone have any suggestions? Thanks.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>tonyhong</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95552-How-to-deal-with-datetime-with-millisecond-in-Kettle</guid>
		</item>
		<item>
			<title>Split field with names and values</title>
			<link>http://forums.pentaho.com/showthread.php?95550-Split-field-with-names-and-values&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 14:15:20 GMT</pubDate>
			<description><![CDATA[Hello, 
I have a "simple" problem ... in an excel file I have a column let us call it "metadata", inside this column there is a string that contain...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
I have a &quot;simple&quot; problem ... in an excel file I have a column let us call it &quot;metadata&quot;, inside this column there is a string that contain some &quot;field name&quot; followed by its values in this form:<br />
<br />
Last value: 5;Last sum: 15;Previous value: 23 and so on<br />
<br />
The format is quite simple in the Excel column taht I need to parse, the field name is followed by a colon and the semicolon is the fileds separator, but ... a row can contain the name/value pairs in different order and some row can contain different name/value pairs.<br />
<br />
For example:<br />
Last value: 5;Last sum: 15;Previous value: 23;Edited: 23/04/2012;Created: 12/12/2012<br />
Last value: 2;Previous value: 12;Edited: 20/04/2012;Created: 07/12/2012;Last sum: 1<br />
Previous value: 12;Edited: 20/04/2012;Created: 07/12/2012<br />
<br />
In a few world: <br />
- the field names are unknown<br />
- the order is not fixed<br />
- some fields can be present or not<br />
<br />
I need to process this excel field and obtain a new file where the column &quot;metadata&quot; is correctly splitted and grouped. So if the excel metadata column contain:<br />
<br />
Last value: 5;Last sum: 15;Previous value: 23;Edited: 23/04/2012;Created: 12/12/2012<br />
Last value: 2;Previous value: 12;Edited: 20/04/2012;Created: 07/12/2012;Last sum: 1<br />
Previous value: 4;Edited: 17/04/2012;Last Value:3<br />
<br />
I need to have as result something like:<br />
<br />
Last value: 5;Last sum: 15;Previous value: 23;Edited: 23/04/2012;Created: 12/12/2012;<br />
Last value: 2;Last sum: 1;Previous value: 12;Edited: 20/04/2012;Created: 07/12/2012;<br />
Last Value: 3;Last sum: ;Previous value: 4;Edited: 17/04/2012;Created: ;<br />
<br />
<br />
i.e. all the fields in order (no matter what order) and the eventually missing field &quot;filled&quot; with and &quot;empty value&quot; or costant sring (no matter) ...<br />
<br />
I think that the problem can be summarized as: how can I extract field and values name from a file where every row contain name/values pairs and the name is basically unknow?<br />
<br />
Thank to everyone can suggest a solution ...<br />
<br />
Regards<br />
Danilo</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>danilo.massa</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95550-Split-field-with-names-and-values</guid>
		</item>
		<item>
			<title>Create job using java API</title>
			<link>http://forums.pentaho.com/showthread.php?95545-Create-job-using-java-API&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 11:50:06 GMT</pubDate>
			<description>Hi, can anyone tell me(or give a link with an example) how to create job by using Java API? I should add two steps to the job, first step should be...</description>
			<content:encoded><![CDATA[<div><font color="#333333">Hi, can anyone </font><font color="#333333">tell me</font><font color="#333333">(or </font><font color="#333333">give a link </font><font color="#333333">with an example</font><font color="#333333">) how to </font><font color="#333333">create </font><font color="#333333">job </font><font color="#333333">by using </font><font color="#333333">Java API</font><font color="#333333">? </font><font color="#333333">I should add two steps to the job, first step should be &quot;Job Scheduling(START)&quot; and second &quot;Transformation&quot;. Also I have to pass some parameters to the transformation. And I want to do this using java api, only the transformation is already created and saved on the file system.</font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>iyotov</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95545-Create-job-using-java-API</guid>
		</item>
		<item>
			<title>OLAP4J Datasource (XMLA) against Mondrian fails</title>
			<link>http://forums.pentaho.com/showthread.php?95540-OLAP4J-Datasource-(XMLA)-against-Mondrian-fails&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 10:11:24 GMT</pubDate>
			<description><![CDATA[Hello, 
 
i've figured out, additional to 
  ...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
i've figured out, additional to<br />
  <br />
<a href="http://forums.pentaho.com/showthread.php?95342-Simple-MDX-Query-against-MS-SASS-12-fails-with-SOAP-Fault" target="_blank">http://forums.pentaho.com/showthread...ith-SOAP-Fault</a>, <br />
<br />
that a xmla connection to Mondrian fails with a related SOAP-Fault (see attachment).<br />
<br />
It seems to me that the olap4j datasources are not very well supported or bugy in report designer 3.9 !?<br />
<br />
Can anybody give me some feedback, if this will be better supported in further versions of report designer !?<br />
<br />
Kind regards, Thomas Wiesner</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/txt.gif" alt="File Type: txt" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8723&amp;d=1336990244">olap4J_mondrian_exception.txt</a> 
(5.4 KB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>ThomasWiesner</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95540-OLAP4J-Datasource-(XMLA)-against-Mondrian-fails</guid>
		</item>
		<item>
			<title>Vietnamese accent not supports</title>
			<link>http://forums.pentaho.com/showthread.php?95536-Vietnamese-accent-not-supports&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 08:30:42 GMT</pubDate>
			<description>Attachment 8721 (http://forums.pentaho.com/attachment.php?attachmentid=8721) 
 
 
Hi everybody  
 
    I am using BI-Server 3.0. Kindly note the...</description>
			<content:encoded><![CDATA[<div><a href="http://forums.pentaho.com/attachment.php?attachmentid=8721&amp;d=1336984022"  title="Name:  Filter criteria.jpg
Views: 4
Size:  9.5 KB">Filter criteria.jpg</a><br />
<br />
<br />
Hi everybody <br />
<br />
    I am using BI-Server 3.0. Kindly note the above Screen-shot the filter criteria SALESMAN list out words in both VIETNAMESE language format and ENGLISH language format. When I choose the word which is in English language format and runs the report It returns the Output in PDF format file. Instead of that When I choose the Vietnamese word  and runs the report. It returns the result as in the below Screen-shot.<br />
<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8722&amp;d=1336984131"  title="Name:  Screenshot.jpg
Views: 4
Size:  20.8 KB">Screenshot.jpg</a><br />
<br />
  	 	 	 	  How to solve the above issue? Any one help me to get out of this Issue..<br />
<br />
 <br />
<br />
                                                                                                                                                                                                                                                           Thanks in Advance</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8721&amp;d=1336984022">Filter criteria.jpg</a> 
(9.5 KB)
</li><li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8722&amp;d=1336984131">Screenshot.jpg</a> 
(20.8 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>thirumurugandesinghu</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95536-Vietnamese-accent-not-supports</guid>
		</item>
		<item>
			<title>BI Server 3.0 Does not support Vietnamese Accent Character</title>
			<link>http://forums.pentaho.com/showthread.php?95533-BI-Server-3-0-Does-not-support-Vietnamese-Accent-Character&amp;goto=newpost</link>
			<pubDate>Mon, 14 May 2012 06:54:13 GMT</pubDate>
			<description>Hi All, 
 
 
   Fortunately am using BI Server 3.0 due to compulsion based on requirement. In parameter of the reports, shows some issue i.e., it...</description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
<br />
   Fortunately am using BI Server 3.0 due to compulsion based on requirement. In parameter of the reports, shows some issue i.e., it works fine when using normal English words but it repeats when using the Vietnamese accent characters. For example, if parameter 'Customer Name' contains both the English and Vietnamese characters. Once we select the Customer Name contains the English word it shows the correct result. When we select the Customer Name contains the Vietnamese accent characters once again the parameter displays. The following screen shots denotes the issue <br />
<br />
Anybody help us to resolve this issue...<br />
<br />
Cheers<br />
Arunmadhavan</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8720&amp;d=1336978311">Screenshot1.jpg</a> 
(26.4 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>Arunmadhavan</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95533-BI-Server-3-0-Does-not-support-Vietnamese-Accent-Character</guid>
		</item>
		<item>
			<title>Same problem with conditional priority</title>
			<link>http://forums.pentaho.com/showthread.php?95507-Same-problem-with-conditional-priority&amp;goto=newpost</link>
			<pubDate>Sun, 13 May 2012 16:41:16 GMT</pubDate>
			<description>Hey hi X3n0n, 
 
I am trying to implement the same type of conditional priorities that  you mention A AND (B OR C). Did you get something to work for...</description>
			<content:encoded><![CDATA[<div>Hey hi <font color="#3E3E3E">X3n0n,<br />
<br />
I am trying to implement the same type of conditional priorities that  you mention A AND (B OR C). Did you get something to work for managing  this ?<br />
Please let me know. Thanks in advance.<br />
<br />
Regards,<br />
Julie</font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?103-Metadata">Metadata</category>
			<dc:creator>juliee</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95507-Same-problem-with-conditional-priority</guid>
		</item>
		<item>
			<title>Can a second parameter depend on the first one?</title>
			<link>http://forums.pentaho.com/showthread.php?95495-Can-a-second-parameter-depend-on-the-first-one&amp;goto=newpost</link>
			<pubDate>Sun, 13 May 2012 10:05:52 GMT</pubDate>
			<description><![CDATA[I have two parameters in a report, both of them are based on 'Selects' from two diferent tables, and both are drop-down controls 
 
param1: Select...]]></description>
			<content:encoded><![CDATA[<div>I have two parameters in a report, both of them are based on 'Selects' from two diferent tables, and both are drop-down controls<br />
<br />
param1: Select Distinct F1 from table Table1 -&gt; the user will choose a value<br />
<br />
I would need that the second parameter woul be like this:<br />
<br />
param2: Select Distinct M1 from Table2 where M2= param1, so the second drop-down control will show only the corresponding values...<br />
<br />
I don't know how to do this!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>imontalt</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95495-Can-a-second-parameter-depend-on-the-first-one</guid>
		</item>
		<item>
			<title>How to connect PDI 4.2.1 to Oracle 11G</title>
			<link>http://forums.pentaho.com/showthread.php?95488-How-to-connect-PDI-4-2-1-to-Oracle-11G&amp;goto=newpost</link>
			<pubDate>Sun, 13 May 2012 06:32:24 GMT</pubDate>
			<description>Hi Expert, 
 
Could anybody tell me how to connect from pdi 4.2.1 to oracle 11g 11.2.0.3.0 (64-bit) using OCI? 
 
Appreciated to your feedback. 
...</description>
			<content:encoded><![CDATA[<div>Hi Expert,<br />
<br />
Could anybody tell me how to connect from pdi 4.2.1 to oracle 11g 11.2.0.3.0 (64-bit) using OCI?<br />
<br />
Appreciated to your feedback.<br />
<br />
Kind Regards,<br />
<br />
Sean</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>sean</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95488-How-to-connect-PDI-4-2-1-to-Oracle-11G</guid>
		</item>
		<item>
			<title>Read whole unstructured text file and store it in 1 field</title>
			<link>http://forums.pentaho.com/showthread.php?95456-Read-whole-unstructured-text-file-and-store-it-in-1-field&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 12:21:38 GMT</pubDate>
			<description>Hello, 
 
I am trying to build a transformation that extracts information from an unstructured text file. My solution to this problem is the...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am trying to build a transformation that extracts information from an unstructured text file. My solution to this problem is the following:<br />
<br />
1. Read the whole text file and store the whole content into 1 field. The file contain blank lines in the middle of the text<br />
2. Find patterns using regexes within the content of the field<br />
3. Fill a list of fields with the strings that match the patterns<br />
<br />
My question is how to read the whole content of a text file and store it in only one field. Any suggestion?<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>Perito</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95456-Read-whole-unstructured-text-file-and-store-it-in-1-field</guid>
		</item>
		<item>
			<title>How could remove records from destination which have already deleted from source</title>
			<link>http://forums.pentaho.com/showthread.php?95453-How-could-remove-records-from-destination-which-have-already-deleted-from-source&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 11:37:39 GMT</pubDate>
			<description><![CDATA[Hi 
I have 2 tables : source table and destination table. 
I've already inserted all of the records from source table into destination table,...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
I have 2 tables : source table and destination table.<br />
I've already inserted all of the records from source table into destination table, afterwards I've deleted some records from source table.<br />
How could I delete that records from destination table which I've deleted from source table ?<br />
<br />
Note: I want to do this action by Kettle.does any body could help me ?<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>fariborzgolara</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95453-How-could-remove-records-from-destination-which-have-already-deleted-from-source</guid>
		</item>
		<item>
			<title>Combining one and many lines to an output</title>
			<link>http://forums.pentaho.com/showthread.php?95452-Combining-one-and-many-lines-to-an-output&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 11:25:13 GMT</pubDate>
			<description>Hello All, 
 
I would like to know if someone could point me in the right direction, I have been playing with Spoon ETL for a short while now and...</description>
			<content:encoded><![CDATA[<div>Hello All,<br />
<br />
I would like to know if someone could point me in the right direction, I have been playing with Spoon ETL for a short while now and just finding it impossible to figure out a solution to my problem any guidance would be appreciated;<br />
<br />
I have attached a file provided by my electricity retailer; I would like to get the data into a workable format so I can collect the data collected on a daily basis and import to a SQL database.<br />
<br />
the file consists of a line identifier (100, 200, 300, 900) and I would like to collate each of the lines to ensure the required data is captured on each line for this example there is one 100 line, one 200 line and many 300 lines the desired output would be that for each 300 line that the above 200 line and 100 lines is appended to the beginning of the dataline;<br />
<br />
In Australia the filetype is standard amongst electricity retailers and file specification exists, but trying to get the data into a workable format is very difficult. the file specification is here; <a href="http://www.aemo.com.au/~/media/Files/Other/electricityops/0630-0002%20pdf.pdf" target="_blank">http://www.aemo.com.au/~/media/Files...0002%20pdf.pdf</a><br />
<br />
<div class="cms_table"><table width="8176" class="cms_table"><tr valign="top" class="cms_table_tr"><TD class="cms_table_td"><b>RecordIndicator</b></TD>
<TD class="cms_table_td"><b>VersionHeader</b></TD>
<TD class="cms_table_td"><b>DateTime</b></TD>
<TD class="cms_table_td"><b>FromParticipant</b></TD>
<TD class="cms_table_td"><b>ToParticipant</b></TD>
<TD class="cms_table_td"><b>RecordIndicator</b></TD>
<TD class="cms_table_td"><b>NMI</b></TD>
<TD class="cms_table_td"><b>NMIConfiguration</b></TD>
<TD class="cms_table_td"><b>RegisterID</b></TD>
<TD class="cms_table_td"><b>NMISuffix</b></TD>
<TD class="cms_table_td"><b>MDMDataStreamIdentifier</b></TD>
<TD class="cms_table_td"><b>MeterSerialNumber</b></TD>
<TD class="cms_table_td"><b>UOM</b></TD>
<TD class="cms_table_td"><b>IntervalLength</b></TD>
<TD class="cms_table_td"><b>RecordIndicator</b></TD>
<TD class="cms_table_td"><b>IntervalDate</b></TD>
<TD class="cms_table_td"><b>IntVal1</b></TD>
<TD class="cms_table_td"><b>IntVal2</b></TD>
<TD class="cms_table_td"><b>IntVal3</b></TD>
<TD class="cms_table_td"><b>IntVal4</b></TD>
<TD class="cms_table_td"><b>IntVal5</b></TD>
<TD class="cms_table_td"><b>IntVal6</b></TD>
<TD class="cms_table_td"><b>IntVal7</b></TD>
<TD class="cms_table_td"><b>IntVal8</b></TD>
<TD class="cms_table_td"><b>IntVal9</b></TD>
<TD class="cms_table_td"><b>IntVal10</b></TD>
<TD class="cms_table_td"><b>IntVal11</b></TD>
<TD class="cms_table_td"><b>IntVal12</b></TD>
<TD class="cms_table_td"><b>IntVal13</b></TD>
<TD class="cms_table_td"><b>IntVal14</b></TD>
<TD class="cms_table_td"><b>IntVal15</b></TD>
<TD class="cms_table_td"><b>IntVal16</b></TD>
<TD class="cms_table_td"><b>IntVal17</b></TD>
<TD class="cms_table_td"><b>IntVal18</b></TD>
<TD class="cms_table_td"><b>IntVal19</b></TD>
<TD class="cms_table_td"><b>IntVal20</b></TD>
<TD class="cms_table_td"><b>IntVal21</b></TD>
<TD class="cms_table_td"><b>IntVal22</b></TD>
<TD class="cms_table_td"><b>IntVal23</b></TD>
<TD class="cms_table_td"><b>IntVal24</b></TD>
<TD class="cms_table_td"><b>IntVal25</b></TD>
<TD class="cms_table_td"><b>IntVal26</b></TD>
<TD class="cms_table_td"><b>IntVal27</b></TD>
<TD class="cms_table_td"><b>IntVal28</b></TD>
<TD class="cms_table_td"><b>IntVal29</b></TD>
<TD class="cms_table_td"><b>IntVal30</b></TD>
<TD class="cms_table_td"><b>IntVal31</b></TD>
<TD class="cms_table_td"><b>IntVal32</b></TD>
<TD class="cms_table_td"><b>IntVal33</b></TD>
<TD class="cms_table_td"><b>IntVal34</b></TD>
<TD class="cms_table_td"><b>IntVal35</b></TD>
<TD class="cms_table_td"><b>IntVal36</b></TD>
<TD class="cms_table_td"><b>IntVal37</b></TD>
<TD class="cms_table_td"><b>IntVal38</b></TD>
<TD class="cms_table_td"><b>IntVal39</b></TD>
<TD class="cms_table_td"><b>IntVal40</b></TD>
<TD class="cms_table_td"><b>IntVal41</b></TD>
<TD class="cms_table_td"><b>IntVal42</b></TD>
<TD class="cms_table_td"><b>IntVal43</b></TD>
<TD class="cms_table_td"><b>IntVal44</b></TD>
<TD class="cms_table_td"><b>IntVal45</b></TD>
<TD class="cms_table_td"><b>IntVal46</b></TD>
<TD class="cms_table_td"><b>IntVal47</b></TD>
<TD class="cms_table_td"><b>IntVal48</b></TD>
<TD class="cms_table_td"><b>IntVal49</b></TD>
<TD class="cms_table_td"><b>IntVal50</b></TD>
<TD class="cms_table_td"><b>IntVal51</b></TD>
<TD class="cms_table_td"><b>IntVal52</b></TD>
<TD class="cms_table_td"><b>IntVal53</b></TD>
<TD class="cms_table_td"><b>IntVal54</b></TD>
<TD class="cms_table_td"><b>IntVal55</b></TD>
<TD class="cms_table_td"><b>IntVal56</b></TD>
<TD class="cms_table_td"><b>IntVal57</b></TD>
<TD class="cms_table_td"><b>IntVal58</b></TD>
<TD class="cms_table_td"><b>IntVal59</b></TD>
<TD class="cms_table_td"><b>IntVal60</b></TD>
<TD class="cms_table_td"><b>IntVal61</b></TD>
<TD class="cms_table_td"><b>IntVal62</b></TD>
<TD class="cms_table_td"><b>IntVal63</b></TD>
<TD class="cms_table_td"><b>IntVal64</b></TD>
<TD class="cms_table_td"><b>IntVal65</b></TD>
<TD class="cms_table_td"><b>IntVal66</b></TD>
<TD class="cms_table_td"><b>IntVal67</b></TD>
<TD class="cms_table_td"><b>IntVal68</b></TD>
<TD class="cms_table_td"><b>IntVal69</b></TD>
<TD class="cms_table_td"><b>IntVal70</b></TD>
<TD class="cms_table_td"><b>IntVal71</b></TD>
<TD class="cms_table_td"><b>IntVal72</b></TD>
<TD class="cms_table_td"><b>IntVal73</b></TD>
<TD class="cms_table_td"><b>IntVal74</b></TD>
<TD class="cms_table_td"><b>IntVal75</b></TD>
<TD class="cms_table_td"><b>IntVal76</b></TD>
<TD class="cms_table_td"><b>IntVal77</b></TD>
<TD class="cms_table_td"><b>IntVal78</b></TD>
<TD class="cms_table_td"><b>IntVal79</b></TD>
<TD class="cms_table_td"><b>IntVal80</b></TD>
<TD class="cms_table_td"><b>IntVal81</b></TD>
<TD class="cms_table_td"><b>IntVal82</b></TD>
<TD class="cms_table_td"><b>IntVal83</b></TD>
<TD class="cms_table_td"><b>IntVal84</b></TD>
<TD class="cms_table_td"><b>IntVal85</b></TD>
<TD class="cms_table_td"><b>IntVal86</b></TD>
<TD class="cms_table_td"><b>IntVal87</b></TD>
<TD class="cms_table_td"><b>IntVal88</b></TD>
<TD class="cms_table_td"><b>IntVal89</b></TD>
<TD class="cms_table_td"><b>IntVal90</b></TD>
<TD class="cms_table_td"><b>IntVal91</b></TD>
<TD class="cms_table_td"><b>IntVal92</b></TD>
<TD class="cms_table_td"><b>IntVal93</b></TD>
<TD class="cms_table_td"><b>IntVal94</b></TD>
<TD class="cms_table_td"><b>IntVal95</b></TD>
<TD class="cms_table_td"><b>IntVal96</b></TD>
<TD class="cms_table_td">QualityMethod</TD>
<TD class="cms_table_td">ReasonCode</TD>
<TD class="cms_table_td">ReasonDescription</TD>
<TD class="cms_table_td">UpdateDateTime</TD>
<TD class="cms_table_td">MSATSLoadDateTime</TD>
</tr>
<tr valign="top" class="cms_table_tr"><TD class="cms_table_td">100</TD>
<TD class="cms_table_td">NEM12</TD>
<TD class="cms_table_td">2.01E+11</TD>
<TD class="cms_table_td">ABCMP</TD>
<TD class="cms_table_td">RETAILER</TD>
<TD class="cms_table_td">200</TD>
<TD class="cms_table_td">ABC1234567</TD>
<TD class="cms_table_td">E1K1Q1</TD>
<TD class="cms_table_td">1</TD>
<TD class="cms_table_td">E1</TD>
<TD class="cms_table_td">N1</TD>
<TD class="cms_table_td">1583</TD>
<TD class="cms_table_td">KWH</TD>
<TD class="cms_table_td">15</TD>
<TD class="cms_table_td">300</TD>
<TD class="cms_table_td">20070801</TD>
<TD class="cms_table_td">1558.712</TD>
<TD class="cms_table_td">1534.083</TD>
<TD class="cms_table_td">1508.636</TD>
<TD class="cms_table_td">1177.353</TD>
<TD class="cms_table_td">1113.294</TD>
<TD class="cms_table_td">1356.493</TD>
<TD class="cms_table_td">1446.134</TD>
<TD class="cms_table_td">1494.883</TD>
<TD class="cms_table_td">1402.962</TD>
<TD class="cms_table_td">1372.989</TD>
<TD class="cms_table_td">1432.878</TD>
<TD class="cms_table_td">1413.578</TD>
<TD class="cms_table_td">1522.154</TD>
<TD class="cms_table_td">1541.171</TD>
<TD class="cms_table_td">1528.717</TD>
<TD class="cms_table_td">1539.835</TD>
<TD class="cms_table_td">1540.979</TD>
<TD class="cms_table_td">1561.351</TD>
<TD class="cms_table_td">1453.379</TD>
<TD class="cms_table_td">1407.185</TD>
<TD class="cms_table_td">1413.5</TD>
<TD class="cms_table_td">1474.688</TD>
<TD class="cms_table_td">1451.26</TD>
<TD class="cms_table_td">1494.023</TD>
<TD class="cms_table_td">1530.999</TD>
<TD class="cms_table_td">1570.418</TD>
<TD class="cms_table_td">1559.591</TD>
<TD class="cms_table_td">1536.3</TD>
<TD class="cms_table_td">1491.417</TD>
<TD class="cms_table_td">1491.112</TD>
<TD class="cms_table_td">1514.988</TD>
<TD class="cms_table_td">1550.184</TD>
<TD class="cms_table_td">1525.674</TD>
<TD class="cms_table_td">1550.861</TD>
<TD class="cms_table_td">1557.186</TD>
<TD class="cms_table_td">1558.83</TD>
<TD class="cms_table_td">1559.805</TD>
<TD class="cms_table_td">1547.316</TD>
<TD class="cms_table_td">1569.184</TD>
<TD class="cms_table_td">1553.132</TD>
<TD class="cms_table_td">1558.719</TD>
<TD class="cms_table_td">1545.424</TD>
<TD class="cms_table_td">1543.384</TD>
<TD class="cms_table_td">1543.831</TD>
<TD class="cms_table_td">1544.61</TD>
<TD class="cms_table_td">1472.09</TD>
<TD class="cms_table_td">1494.821</TD>
<TD class="cms_table_td">1516.02</TD>
<TD class="cms_table_td">1570.395</TD>
<TD class="cms_table_td">1570.447</TD>
<TD class="cms_table_td">1570.935</TD>
<TD class="cms_table_td">1548.487</TD>
<TD class="cms_table_td">1529.651</TD>
<TD class="cms_table_td">1485.687</TD>
<TD class="cms_table_td">1490.034</TD>
<TD class="cms_table_td">1498.028</TD>
<TD class="cms_table_td">1542.346</TD>
<TD class="cms_table_td">1524.653</TD>
<TD class="cms_table_td">1541.562</TD>
<TD class="cms_table_td">1514.451</TD>
<TD class="cms_table_td">1519.4</TD>
<TD class="cms_table_td">1526.201</TD>
<TD class="cms_table_td">1548.342</TD>
<TD class="cms_table_td">1464.92</TD>
<TD class="cms_table_td">1361.833</TD>
<TD class="cms_table_td">1435.802</TD>
<TD class="cms_table_td">1416.961</TD>
<TD class="cms_table_td">1431.579</TD>
<TD class="cms_table_td">1489.341</TD>
<TD class="cms_table_td">1392.169</TD>
<TD class="cms_table_td">1505.813</TD>
<TD class="cms_table_td">1504.755</TD>
<TD class="cms_table_td">1479.057</TD>
<TD class="cms_table_td">1489.257</TD>
<TD class="cms_table_td">1391.421</TD>
<TD class="cms_table_td">1462.786</TD>
<TD class="cms_table_td">1544.082</TD>
<TD class="cms_table_td">1588.363</TD>
<TD class="cms_table_td">1650.675</TD>
<TD class="cms_table_td">1588.085</TD>
<TD class="cms_table_td">1644.887</TD>
<TD class="cms_table_td">1685.703</TD>
<TD class="cms_table_td">1721.565</TD>
<TD class="cms_table_td">1596.902</TD>
<TD class="cms_table_td">1598.841</TD>
<TD class="cms_table_td">1591.782</TD>
<TD class="cms_table_td">1189.614</TD>
<TD class="cms_table_td">1093.649</TD>
<TD class="cms_table_td">1029.607</TD>
<TD class="cms_table_td">988.671</TD>
<TD class="cms_table_td">1022.096</TD>
<TD class="cms_table_td">1028.525</TD>
<TD class="cms_table_td">1021.246</TD>
<TD class="cms_table_td">1006.829</TD>
<TD class="cms_table_td">1060.068</TD>
<TD class="cms_table_td">981.843</TD>
<TD class="cms_table_td">A</TD>
<TD class="cms_table_td"></TD>
<TD class="cms_table_td"></TD>
<TD class="cms_table_td">2.01E+13</TD>
<TD class="cms_table_td">2.01E+13</TD>
</tr>
</table></div>
<br />
Any guidance would be appreciated, if you can point me to any examples that would be great.</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/zip.gif" alt="File Type: zip" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8717&amp;d=1336820919">Nem12.zip</a> 
(47.5 KB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>udamnit</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95452-Combining-one-and-many-lines-to-an-output</guid>
		</item>
		<item>
			<title>stripping a URL from a field</title>
			<link>http://forums.pentaho.com/showthread.php?95449-stripping-a-URL-from-a-field&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 10:29:22 GMT</pubDate>
			<description><![CDATA[Hello all, 
 
What is the best way to strip away the URL from the following text field (single quotes not included): 
 
'Get 10% off your entire...]]></description>
			<content:encoded><![CDATA[<div>Hello all,<br />
<br />
What is the best way to strip away the URL from the following text field (single quotes not included):<br />
<br />
'Get 10% off your entire order! Coupon code: SAT10. &lt;a href=&quot;http://www.tkqlhce.com/click-123456-123456&quot;&gt;Click here!&lt;/a&gt;'<br />
<br />
Using the above example, I only want to keep '&lt;a href=&quot;http://www.tkqlhce.com/click-123456-123456&quot;&gt;'<br />
<br />
In advance, thanks!<br />
<br />
Joe</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>joe0855</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95449-stripping-a-URL-from-a-field</guid>
		</item>
		<item>
			<title><![CDATA["Custom" cross validation]]></title>
			<link>http://forums.pentaho.com/showthread.php?95448-quot-Custom-quot-cross-validation&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 10:22:17 GMT</pubDate>
			<description><![CDATA[Is there anyway to generate a "custom" cross validation? I need to create folds that contain certain records (not random as the traditional CV), so...]]></description>
			<content:encoded><![CDATA[<div>Is there anyway to generate a &quot;custom&quot; cross validation? I need to create folds that contain certain records (not random as the traditional CV), so for example in 5-fold CV:<br />
Fold 1: Records that have &quot;001&quot; as ZIP Code<br />
Fold 2: Records that have &quot;002&quot; as ZIP Code<br />
....<br />
<br />
Is this possible? Maybe using Knowledge Flow? <br />
If not, is there a method to obtain the same results (so the same Accuracy values and ROC curves) repeating evaluation with custom dataset that I could create?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?81-Pentaho-Data-Mining-WEKA"><![CDATA[Pentaho Data Mining [WEKA]]]></category>
			<dc:creator>R_Rossi</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95448-quot-Custom-quot-cross-validation</guid>
		</item>
		<item>
			<title>trim white spaces not working</title>
			<link>http://forums.pentaho.com/showthread.php?95425-trim-white-spaces-not-working&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 21:26:05 GMT</pubDate>
			<description><![CDATA[There is "trim type" in text file input step. Is that supposed to remove white spaces? 
I´ve tried both, left and right and none seem to work. 
 
I...]]></description>
			<content:encoded><![CDATA[<div>There is &quot;trim type&quot; in text file input step. Is that supposed to remove white spaces?<br />
I´ve tried both, left and right and none seem to work.<br />
<br />
I have these results:<br />
<br />
&quot;00     &quot;<br />
&quot;11     &quot;<br />
&quot;23     &quot;<br />
&quot;44     &quot;<br />
<br />
I want to remove these white spaces. How can I do this?<br />
I don´t understand how that happens, because I have a field with same type, format and length specs and works right:<br />
<br />
&quot;12&quot;<br />
&quot;123&quot;<br />
&quot;1234&quot;<br />
&quot;12345&quot;</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>helioshimojo</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95425-trim-white-spaces-not-working</guid>
		</item>
		<item>
			<title>Issue trying to connect to database repo using JDBC - PDI4.3.0</title>
			<link>http://forums.pentaho.com/showthread.php?95420-Issue-trying-to-connect-to-database-repo-using-JDBC-PDI4-3-0&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 18:44:46 GMT</pubDate>
			<description>Hi, 
 
I am running on Windows 7 laptop.  
 
I am trying to connect to a database repo using JDBC but get error (Hostname/port and database are all...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am running on Windows 7 laptop. <br />
<br />
I am trying to connect to a database repo using JDBC but get error (Hostname/port and database are all correct and user/password used in also OK.) :-<br />
<br />
Exception while loading class<br />
org.gjt.mm.mysql.Driver<br />
<br />
at org.pentaho.di.core.database.Database.normalConnect(Database.java:368)<br />
at org.pentaho.di.core.database.Database.connect(Database.java:317)<br />
at org.pentaho.di.core.database.Database.connect(Database.java:279)<br />
at org.pentaho.di.core.database.Database.connect(Database.java:269)<br />
at org.pentaho.di.core.database.DatabaseFactory.getConnectionTestReport(DatabaseFactory.java:86)<br />
at org.pentaho.di.core.database.DatabaseMeta.testConnection(DatabaseMeta.java:2464)<br />
at org.pentaho.ui.database.event.DataHandler.testDatabaseConnection(DataHandler.java:533)<br />
at sun.reflect.GeneratedMethodAccessor27.invoke(Unknown Source)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
at java.lang.reflect.Method.invoke(Unknown Source)<br />
at org.pentaho.ui.xul.impl.AbstractXulDomContainer.invoke(AbstractXulDomContainer.java:329)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:139)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:123)<br />
at org.pentaho.ui.xul.swt.tags.SwtButton.access$500(SwtButton.java:26)<br />
at org.pentaho.ui.xul.swt.tags.SwtButton$4.widgetSelected(SwtButton.java:119)<br />
at org.eclipse.swt.widgets.TypedListener.handleEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.runDeferredEvents(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.readAndDispatch(Unknown Source)<br />
at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)<br />
at org.eclipse.jface.window.Window.open(Window.java:796)<br />
at org.pentaho.ui.xul.swt.tags.SwtDialog.show(SwtDialog.java:378)<br />
at org.pentaho.ui.xul.swt.tags.SwtDialog.show(SwtDialog.java:304)<br />
at org.pentaho.di.ui.core.database.dialog.XulDatabaseDialog.open(XulDatabaseDialog.java:115)<br />
at org.pentaho.di.ui.core.database.dialog.DatabaseDialog.open(DatabaseDialog.java:62)<br />
at org.pentaho.di.ui.repository.kdr.KettleDatabaseRepositoryDialog$2.widgetSelected(KettleDatabaseRepositoryDialog.java:215)<br />
at org.eclipse.swt.widgets.TypedListener.handleEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.runDeferredEvents(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.readAndDispatch(Unknown Source)<br />
at org.pentaho.di.ui.repository.kdr.KettleDatabaseRepositoryDialog.open(KettleDatabaseRepositoryDialog.java:320)<br />
at org.pentaho.di.ui.repository.kdr.KettleDatabaseRepositoryDialog.open(KettleDatabaseRepositoryDialog.java:75)<br />
at org.pentaho.di.ui.repository.RepositoriesHelper.editRepository(RepositoriesHelper.java:148)<br />
at org.pentaho.di.ui.repository.controllers.RepositoriesController.editRepository(RepositoriesController.java:281)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
at java.lang.reflect.Method.invoke(Unknown Source)<br />
at org.pentaho.ui.xul.impl.AbstractXulDomContainer.invoke(AbstractXulDomContainer.java:329)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:139)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:123)<br />
at org.pentaho.ui.xul.swt.tags.SwtButton.access$300(SwtButton.java:26)<br />
at org.pentaho.ui.xul.swt.tags.SwtButton$2.mouseUp(SwtButton.java:87)<br />
at org.eclipse.swt.widgets.TypedListener.handleEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.runDeferredEvents(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.readAndDispatch(Unknown Source)<br />
at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)<br />
at org.eclipse.jface.window.Window.open(Window.java:796)<br />
at org.pentaho.ui.xul.swt.tags.SwtDialog.show(SwtDialog.java:378)<br />
at org.pentaho.ui.xul.swt.tags.SwtDialog.show(SwtDialog.java:304)<br />
at org.pentaho.di.ui.repository.controllers.RepositoriesController.show(RepositoriesController.java:194)<br />
at org.pentaho.di.ui.repository.RepositoriesDialog.show(RepositoriesDialog.java:102)<br />
at org.pentaho.di.ui.spoon.Spoon.openRepository(Spoon.java:3429)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
at java.lang.reflect.Method.invoke(Unknown Source)<br />
at org.pentaho.ui.xul.impl.AbstractXulDomContainer.invoke(AbstractXulDomContainer.java:329)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:139)<br />
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:123)<br />
at org.pentaho.ui.xul.swt.tags.SwtMenuitem.access$100(SwtMenuitem.java:27)<br />
at org.pentaho.ui.xul.swt.tags.SwtMenuitem$1.widgetSelected(SwtMenuitem.java:77)<br />
at org.eclipse.swt.widgets.TypedListener.handleEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.EventTable.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Widget.sendEvent(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.runDeferredEvents(Unknown Source)<br />
at org.eclipse.swt.widgets.Display.readAndDispatch(Unknown Source)<br />
at org.pentaho.di.ui.spoon.Spoon.readAndDispatch(Spoon.java:1183)<br />
at org.pentaho.di.ui.spoon.Spoon.start(Spoon.java:6968)<br />
at org.pentaho.di.ui.spoon.Spoon.main(Spoon.java:567)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
at java.lang.reflect.Method.invoke(Unknown Source)<br />
at org.pentaho.commons.launcher.Launcher.main(Launcher.java:134)<br />
Caused by: org.pentaho.di.core.exception.KettleDatabaseException: <br />
Exception while loading class<br />
org.gjt.mm.mysql.Driver<br />
at org.pentaho.di.core.database.Database.connectUsingClass(Database.java:423)<br />
at org.pentaho.di.core.database.Database.normalConnect(Database.java:352)<br />
... 78 more<br />
Caused by: java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver<br />
at java.net.URLClassLoader$1.run(Unknown Source)<br />
at java.net.URLClassLoader$1.run(Unknown Source)<br />
at java.security.AccessController.doPrivileged(Native Method)<br />
at java.net.URLClassLoader.findClass(Unknown Source)<br />
at java.lang.ClassLoader.loadClass(Unknown Source)<br />
at java.lang.ClassLoader.loadClass(Unknown Source)<br />
at java.lang.Class.forName0(Native Method)<br />
at java.lang.Class.forName(Unknown Source)<br />
at org.pentaho.di.core.database.Database.connectUsingClass(Database.java:414)<br />
... 79 more<br />
Hostname : 10.40.40.57<br />
Port : 3306<br />
Database name : pentaho_repo_dev<br />
<br />
<br />
Any help??<br />
<br />
Thanks,</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>tnewman</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95420-Issue-trying-to-connect-to-database-repo-using-JDBC-PDI4-3-0</guid>
		</item>
		<item>
			<title>Enterprise Registry Creation - Connection Error</title>
			<link>http://forums.pentaho.com/showthread.php?95418-Enterprise-Registry-Creation-Connection-Error&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 17:57:22 GMT</pubDate>
			<description>Below error when trying to connect to Enterprise Repository: 
 
org.pentaho.di.core.exception.KettleException: ...</description>
			<content:encoded><![CDATA[<div>Below error when trying to connect to Enterprise Repository:<br />
<br />
org.pentaho.di.core.exception.KettleException: <br />
com.sun.xml.ws.client.ClientTransportException: The server sent HTTP status code 401: Unauthorized<br />
The server sent HTTP status code 401: Unauthorized<br />
<br />
 at org.pentaho.di.repository.pur.PurRepository.connect(SourceFile:337)<br />
 at org.pentaho.di.ui.repository.RepositoriesHelper.loginToRepository(RepositoriesHelper.java:251)<br />
 at org.pentaho.di.ui.repository.controllers.RepositoriesController$3.run(RepositoriesController.java:215)<br />
 at java.lang.Thread.run(Unknown Source)<br />
Caused by: com.sun.xml.ws.client.ClientTransportException: The server sent HTTP status code 401: Unauthorized<br />
 at com.sun.xml.ws.transport.http.client.HttpTransportPipe.checkStatusCode(HttpTransportPipe.java:222)<br />
 at com.sun.xml.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:179)<br />
 at com.sun.xml.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:93)<br />
 at com.sun.xml.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:105)<br />
 at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:629)<br />
 at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:588)<br />
 at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:573)<br />
 at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:470)<br />
 at com.sun.xml.ws.client.Stub.process(Stub.java:319)<br />
 at com.sun.xml.ws.client.sei.SEIStub.doProcess(SEIStub.java:157)<br />
 at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:109)<br />
 at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)<br />
 at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:140)<br />
 at $Proxy45.sync(Unknown Source)<br />
 at org.pentaho.di.repository.pur.PurRepository.connect(SourceFile:294)<br />
 ... 3 more</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>fanner71</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95418-Enterprise-Registry-Creation-Connection-Error</guid>
		</item>
		<item>
			<title>Need a single column from a CSV</title>
			<link>http://forums.pentaho.com/showthread.php?95414-Need-a-single-column-from-a-CSV&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 16:33:04 GMT</pubDate>
			<description>I am currently stuck working on a transform that will read in a CSV from a folder.  I need to get profile_id field from this file, but will be unable...</description>
			<content:encoded><![CDATA[<div>I am currently stuck working on a transform that will read in a CSV from a folder.  I need to get profile_id field from this file, but will be unable to know what other fields the CSV will contain as it is a report that will be generated by other people.  This job will be running every 3 min to create email list from my data warehouse, with the source CSV is being generated from MicroStrategy.  <br />
<br />
How can I read in the file and only receive the profile_id field if I don't know that the field order is or what other fields will be present?<br />
<br />
Thanks in advance</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>cajames</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95414-Need-a-single-column-from-a-CSV</guid>
		</item>
		<item>
			<title>confused about drilldowns on cde</title>
			<link>http://forums.pentaho.com/showthread.php?95413-confused-about-drilldowns-on-cde&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 16:33:02 GMT</pubDate>
			<description>Help? Ive been stuck on this all day.  I cant get my head around why its not working.  Im new to cde and am trying to make a bar chart that when a...</description>
			<content:encoded><![CDATA[<div>Help? Ive been stuck on this all day.  I cant get my head around why its not working.  Im new to cde and am trying to make a bar chart that when a bar is clicked on opens another bar chart, preferably in the same window although for simplifying things, a different window is ok to begin with... I think theres something wrong with either the parameters or the click action code...<br />
<br />
I created 2 rows in the cde layout.  The first bar chart works fine.  For the second one, my sql query looks like this<br />
<br />
select stat,percent from table1<br />
where sname = ${Sname} <br />
<br />
I then, on the data sources screen, clicked parameters and entered Arg0: Sname Val0: NameA Type0: String<br />
Then on Components I add Simple parameter, Name Sname Property value NameA<br />
Next on the bar chart component for the 2nd chart I set listener to Sname and click parameters then put Arg0: Sname Val0: Sname (and do the other bits - width, height etc)<br />
Last step I go to the 1st chart and set clickable to True and Click Action code is like this:-<br />
<br />
function (s){<br />
<br />
  Dashboards.fireChange('Sname',s);<br />
} <br />
<br />
When i run the preview, both charts show as the 2nd is using the default value i set which was NameA but when I click anything on the top chart, the 2nd one says no data found.<br />
<br />
Being new, I am confused and not sure what I have done wrong?<br />
Bit more info, both bar charts use different sql data sources but the same database table.<br />
<br />
If anyone understands my description can they offer some help please? :confused:</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>fatbob</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95413-confused-about-drilldowns-on-cde</guid>
		</item>
		<item>
			<title><![CDATA[Need an example for "Add filenames to result"]]></title>
			<link>http://forums.pentaho.com/showthread.php?95411-Need-an-example-for-quot-Add-filenames-to-result-quot&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 15:52:22 GMT</pubDate>
			<description>I am trying to build a job that processes a list of files.  The files can be found using a file mask. 
However, I want to process the files one at a...</description>
			<content:encoded><![CDATA[<div>I am trying to build a job that processes a list of files.  The files can be found using a file mask.<br />
However, I want to process the files one at a time, possibly in a specific order.<br />
<br />
It looks like the &quot;Add filenames to result&quot; widget would be perfect to gather the list of<br />
files, so I don't have to know in advance how many files there are.<br />
<br />
But I can't figure out how to use the results of this step.  And I can't find any examples, either.<br />
<br />
Is there an example in the sample files I can look at?  Or does someone have an example?<br />
<br />
Werner</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>wlstolzus</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95411-Need-an-example-for-quot-Add-filenames-to-result-quot</guid>
		</item>
		<item>
			<title>Spoon transformation logging</title>
			<link>http://forums.pentaho.com/showthread.php?95410-Spoon-transformation-logging&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 15:34:19 GMT</pubDate>
			<description>I am working with a KTR which sources a series of text files, refortmats/transforms as necessary, and loads the results to a DB Table.  To enable the...</description>
			<content:encoded><![CDATA[<div>I am working with a KTR which sources a series of text files, refortmats/transforms as necessary, and loads the results to a DB Table.  To enable the KTR to function &quot;cleanly&quot;, I added a &quot;Write to Log&quot; Step after the DB Table in an effort to capture any DB errors -usually Primary key violations.  This is working correctly as far as viewing the errors in the Spoon logging window but is this information recorded anywhere?  The Write to log Step includes a Write to log parameter where I specified a location and file name.  I expected this to write the transform results to this file but that is not the case.<br />
<br />
Is Write to log the correct way to capture the Transform activity?  Is &quot;Text file output&quot; a better way of doing this?  Should I configure logging of the Transform itself from within the calling Job?<br />
<br />
Thank you for your help!<br />
Ben</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>cnv_Ben</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95410-Spoon-transformation-logging</guid>
		</item>
		<item>
			<title>sort rows and unique</title>
			<link>http://forums.pentaho.com/showthread.php?95408-sort-rows-and-unique&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 15:24:03 GMT</pubDate>
			<description><![CDATA[I'm trying to use a Sort rows step to only keep unique rows.  It works fine until I change the number of copies to start, say 2.  In that scenario,...]]></description>
			<content:encoded><![CDATA[<div>I'm trying to use a Sort rows step to only keep unique rows.  It works fine until I change the number of copies to start, say 2.  In that scenario, my duplicate rows all pass through it.  Is this a bug or a feature limitation?  I'm guessing it has to do with distributing the rows to the number of copies you specify.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>dnrickner</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95408-sort-rows-and-unique</guid>
		</item>
		<item>
			<title>Steps execution profile for advanced optimization</title>
			<link>http://forums.pentaho.com/showthread.php?95407-Steps-execution-profile-for-advanced-optimization&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 15:17:45 GMT</pubDate>
			<description><![CDATA[Hi. I can't find something in Kettle that can give me more information about a tranformation execution than "Step metrics" panel.  
I have a...]]></description>
			<content:encoded><![CDATA[<div>Hi. I can't find something in Kettle that can give me more information about a tranformation execution than &quot;Step metrics&quot; panel. <br />
I have a transformation involving multiple sources (DB, CSV) for lookups, very fast transformations (formulas, add constants, etc) and very low ones (Javascript with very complex code). <br />
I know steps are executed in parallel, but I want to know the timestamp each step &quot;see&quot; the first input row and the timestamp each step &quot;deliver&quot; the last output row. Is that possibile? I have to &quot;discover&quot; bottlenecks and quantify their criticality...</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>lorenzo-s</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95407-Steps-execution-profile-for-advanced-optimization</guid>
		</item>
		<item>
			<title>JNDI for classic report engine</title>
			<link>http://forums.pentaho.com/showthread.php?95404-JNDI-for-classic-report-engine&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 14:03:12 GMT</pubDate>
			<description><![CDATA[I'm developing a Java web application running on tomcat. I'v integrated a report using Pentaho Report SDK 3.8, the report displays fine with JDBC...]]></description>
			<content:encoded><![CDATA[<div>I'm developing a Java web application running on tomcat. I'v integrated a report using Pentaho Report SDK 3.8, the report displays fine with JDBC configuration, but how do we configure it using JNDI? It works fine with JNDI data source in PRD. But in report engine I get the following exception:-<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> ParentException: java.lang.UnsupportedOperationException: Not supported by BasicDataSource<br />
&nbsp; &nbsp; at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1062)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.JndiConnectionProvider.createConnection(JndiConnectionProvider.java:142)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.SimpleSQLReportDataFactory.getConnection(SimpleSQLReportDataFactory.java:184)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.SimpleSQLReportDataFactory.queryData(SimpleSQLReportDataFactory.java:239)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.SQLReportDataFactory.queryData(SQLReportDataFactory.java:95)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:135)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryInternal(CachingDataFactory.java:421)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.cache.CachingDataFactory.queryStatic(CachingDataFactory.java:183)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryStatic(CompoundDataFactory.java:130)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.CompoundDataFactory.queryData(CompoundDataFactory.java:85)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.datarow.ReportDataRow.createDataRow(ReportDataRow.java:97)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.performSubReportQuery(DefaultFlowController.java:260)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.process.ProcessState.initializeForSubreport(ProcessState.java:444)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.process.InlineSubreportProcessor.process(InlineSubreportProcessor.java:130)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.process.EndGroupHandler.commit(EndGroupHandler.java:52)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.states.process.ProcessState.commit(ProcessState.java:831)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.processPrepareLevels(AbstractReportProcessor.java:427)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.performStructuralPreprocessing(AbstractReportProcessor.java:594)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.prepareReportProcessing(AbstractReportProcessor.java:496)<br />
&nbsp; &nbsp; at org.pentaho.reporting.engine.classic.core.layout.output.AbstractReportProcessor.processReport(AbstractReportProcessor.java:1522)<br />
&nbsp; &nbsp; at com.ReportServlet.execute(RepSe.java:97)<br />
&nbsp; &nbsp; at com.ReportServlet.doGet(RepSe.java:49)<br />
&nbsp; &nbsp; at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br />
&nbsp; &nbsp; at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br />
&nbsp; &nbsp; at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)<br />
&nbsp; &nbsp; at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)<br />
&nbsp; &nbsp; at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)<br />
&nbsp; &nbsp; at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)<br />
&nbsp; &nbsp; at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)<br />
&nbsp; &nbsp; at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)<br />
&nbsp; &nbsp; at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)<br />
&nbsp; &nbsp; at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:291)<br />
&nbsp; &nbsp; at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)<br />
&nbsp; &nbsp; at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602)<br />
&nbsp; &nbsp; at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)<br />
&nbsp; &nbsp; at java.lang.Thread.run(Thread.java:679)</code><hr />
</div>I added the following resource to context.xml file of tomcat<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;Resource auth=&quot;Container&quot; driverClassName=&quot;com.mysql.jdbc.Driver&quot; maxActive=&quot;20&quot; maxIdle=&quot;5&quot; maxWait=&quot;10000&quot; <br />
name=&quot;jndiname&quot; password=&quot;pass&quot; type=&quot;javax.sql.DataSource&quot; url=&quot;jdbc:mysql://localhost:3306/db&quot; username=&quot;root&quot;/&gt;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?290-Reporting-Developer">Reporting Developer</category>
			<dc:creator>kaushiks</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95404-JNDI-for-classic-report-engine</guid>
		</item>
		<item>
			<title>Pentaho installation with postgres and Windows</title>
			<link>http://forums.pentaho.com/showthread.php?95401-Pentaho-installation-with-postgres-and-Windows&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 12:56:22 GMT</pubDate>
			<description>Hi, 
 
I have some problems with pentaho installation. When i try to access to http://localhost:8080/pentaho the following error occurs: 
...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have some problems with pentaho installation. When i try to access to <a href="http://localhost:8080/pentaho" target="_blank">http://localhost:8080/pentaho</a> the following error occurs:<br />
<br />
14:47:31,032 ERROR [Logger] Error: Pentaho<br />
14:47:31,032 ERROR [Logger] misc-org.pentaho.platform.engine.core.system.PentahoSystem: PentahoSystem.ERROR_0014 - Error mientras se intentaba ejecutar la secuencia de arranque por org.pentaho.platform.plugin.action.mondrian.MondrianSystemListener<br />
org.pentaho.platform.api.engine.PentahoSystemException: PentahoSystem.ERROR_0014 - Error mientras se intentaba ejecutar la secuencia de arranque por org.pentaho.platform.plugin.action.mondrian.MondrianSystemListener<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:350)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:324)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:291)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.init(PentahoSystem.java:208)<br />
	at org.pentaho.platform.web.http.context.SolutionContextListener.contextInitialized(SolutionContextListener.java:137)<br />
	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4135)<br />
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4630)<br />
	at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)<br />
	at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)<br />
	at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:546)<br />
	at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:637)<br />
	at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:563)<br />
	at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:498)<br />
	at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1277)<br />
	at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:321)<br />
	at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)<br />
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:785)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)<br />
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:445)<br />
	at org.apache.catalina.core.StandardService.start(StandardService.java:519)<br />
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)<br />
	at org.apache.catalina.startup.Catalina.start(Catalina.java:581)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />
	at java.lang.reflect.Method.invoke(Method.java:597)<br />
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)<br />
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)<br />
Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.pentaho.platform.repository.hibernate.HibernateUtil<br />
	at org.pentaho.platform.repository.solution.dbbased.DbBasedSolutionRepository.internalGetRootFolder(DbBasedSolutionRepository.java:968)<br />
	at org.pentaho.platform.repository.solution.dbbased.DbBasedSolutionRepository.init(DbBasedSolutionRepository.java:112)<br />
	at org.pentaho.platform.repository.solution.dbbased.DbBasedSolutionRepository.&lt;init&gt;(DbBasedSolutionRepository.java:97)<br />
	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br />
	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br />
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)<br />
	at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br />
	at java.lang.Class.newInstance0(Class.java:355)<br />
	at java.lang.Class.newInstance(Class.java:308)<br />
	at org.pentaho.platform.engine.core.system.objfac.AbstractSpringPentahoObjectFactory.instanceClass(AbstractSpringPentahoObjectFactory.java:78)<br />
	at org.pentaho.platform.engine.core.system.objfac.AbstractSpringPentahoObjectFactory.retreiveObject(AbstractSpringPentahoObjectFactory.java:117)<br />
	at org.pentaho.platform.engine.core.system.objfac.AbstractSpringPentahoObjectFactory.get(AbstractSpringPentahoObjectFactory.java:72)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.get(PentahoSystem.java:557)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.get(PentahoSystem.java:533)<br />
	at org.pentaho.platform.plugin.action.mondrian.MondrianSystemListener.loadMondrianProperties(MondrianSystemListener.java:60)<br />
	at org.pentaho.platform.plugin.action.mondrian.MondrianSystemListener.startup(MondrianSystemListener.java:46)<br />
	at org.pentaho.platform.engine.core.system.PentahoSystem.notifySystemListenersOfStartup(PentahoSystem.java:342)<br />
	... 28 more<br />
<br />
<br />
The version is &quot;biserver-ce-4.5.0-stable&quot;<br />
Can anyone help me?<br />
Tanks os much</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>conrado</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95401-Pentaho-installation-with-postgres-and-Windows</guid>
		</item>
		<item>
			<title>Problemas no Pentaho 3.10 - PacService.ERROR_0023 - BD POSTGRESQL 8.2.9</title>
			<link>http://forums.pentaho.com/showthread.php?95399-Problemas-no-Pentaho-3-10-PacService-ERROR_0023-BD-POSTGRESQL-8-2-9&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 12:24:31 GMT</pubDate>
			<description>Amigos estou com o seguinte problema na instalação do Pentaho 3.10 no Windows XP 
 
Faço a instalação do Java 7, adiciono as variaveis Java_Home /...</description>
			<content:encoded><![CDATA[<div>Amigos estou com o seguinte problema na instalação do Pentaho 3.10 no Windows XP<br />
<br />
Faço a instalação do Java 7, adiciono as variaveis Java_Home / PATCH / CLASSPATCH<br />
<br />
Insta-lo o POSTGRESQL 8.2.9 - verifico se esta conectando com o DB pelo pgMANANGER III<br />
<br />
Copio os arquivos para pasta *jar para pasata Java/jre/lib/ext<br />
<br />
Insta-lo o PENTAHO 3.10 - rodo o <font color="#00FF00">start-pentaho.bat,</font> funciona 100%<br />
<br />
Mas quando vou na administração do PENTAHO <font color="#00FF00">start-pac</font> ocorre o seguinte erro:<br />
<br />
<font color="#FF0000"><b>Connection refused: connect</b><br />
<br />
<b>Unable to refresh database connection list: PacService.ERROR_0023 - Failed to <br />
get a Data Source: Cannot open connection<br />
</b><br />
</font><b><font color="#FF0000">Unable to refresh security information: The call failed on the server; see <br />
server log for details<br />
</font><br />
</b>Vi varios pedidos de ajuda nos outros foruns, mas sem uma resposta para tal erro.<br />
<br />
Fico no aguardo de dicas para solucionar tal problema... <br />
<br />
        at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)<br />
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)<br />
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)<br />
        at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)<br />
        at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:367)<br />
        at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)<br />
        at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)<br />
        at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)<br />
        at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)<br />
        at org.mortbay.jetty.Server.handle(Server.java:285)<br />
        at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:502)<br />
        at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:835)<br />
        at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:638)<br />
        at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:202)<br />
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:378)<br />
        at org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:226)<br />
        at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)<br />
Caused by: org.hibernate.exception.JDBCConnectionException: Cannot open connection<br />
        at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:74)<br />
        at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)<br />
        at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:29)<br />
        at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:426)<br />
        at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)<br />
        at org.hibernate.jdbc.JDBCContext.connection(JDBCContext.java:119)<br />
        at org.hibernate.transaction.JDBCTransaction.begin(JDBCTransaction.java:57)<br />
        at org.hibernate.impl.SessionImpl.beginTransaction(SessionImpl.java:1326)<br />
        at org.springframework.orm.hibernate3.HibernateTransactionManager.doBegin(HibernateTransactionManager.java:558)<br />
        ... 34 more<br />
Caused by: java.sql.SQLException: socket creation error<br />
        at org.hsqldb.jdbc.Util.sqlException(Unknown Source)<br />
        at org.hsqldb.jdbc.jdbcConnection.&lt;init&gt;(Unknown Source)<br />
        at org.hsqldb.jdbcDriver.getConnection(Unknown Source)<br />
        at org.hsqldb.jdbcDriver.connect(Unknown Source)<br />
        at java.sql.DriverManager.getConnection(Unknown Source)<br />
        at java.sql.DriverManager.getConnection(Unknown Source)<br />
        at org.hibernate.connection.DriverManagerConnectionProvider.getConnectio<br />
n(DriverManagerConnectionProvider.java:110)<br />
        at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:423)<br />
        ... 39 more<br />
08:12:51,421 INFO  [UpdateChecker] New update(s) found: 2.4.7 [<a href="http://www.terracotta.org/confluence/display/release/Release+Notes+Ehcache+Core+2.4]" target="_blank">http://www.terracotta.org/confluence...ache+Core+2.4]</a>. Please chec<br />
k <a href="http://ehcache.org" target="_blank">http://ehcache.org</a> for the latest version.<br />
08:12:52,107 WARN  [JDBCExceptionReporter] SQL Error: -80, SQLState: 08000<br />
08:12:52,107 ERROR [JDBCExceptionReporter] socket creation error<br />
08:12:52,107 ERROR [/] Exception while dispatching incoming RPC call<br />
com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstr<br />
act org.pentaho.pac.common.UserRoleSecurityInfo org.pentaho.pac.client.PacServic<br />
e.getUserRoleSecurityInfo() throws org.pentaho.pac.common.PacServiceException' t<br />
hrew an unexpected exception: org.springframework.transaction.CannotCreateTransa<br />
ctionException: Could not open Hibernate Session for transaction; nested excepti<br />
on is org.hibernate.exception.JDBCConnectionException: Cannot open connection<br />
        at com.google.gwt.user.server.rpc.RPC.encodeResponseForFailure(RPC.java:378)<br />
        at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:581)<br />
        at com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:188)<br />
        at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:224)<br />
        at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)<br />
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)<br />
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)<br />
        at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)<br />
        at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:367)<br />
        at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)<br />
        at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)<br />
        at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)<br />
        at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)<br />
        at org.mortbay.jetty.Server.handle(Server.java:285)<br />
        at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:502)<br />
        at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:835)<br />
        at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:638)<br />
        at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:202)<br />
        at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:378)<br />
        at org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:226)<br />
        at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:450)<br />
Caused by: org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate<br />
.exception.JDBCConnectionException: Cannot open connection<br />
        at org.springframework.orm.hibernate3.HibernateTransactionManager.doBegin(HibernateTransactionManager.java:599)<br />
        at org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:374)<br />
        at org.springframework.transaction.support.TransactionTemplate.execute(T<br />
ransactionTemplate.java:125)<br />
        at org.pentaho.platform.engine.security.userroledao.hibernate.UserRoleDaoTransactionDecorator.getUsers(UserRoleDaoTransactionDecorator.java:117)<br />
        at org.pentaho.pac.server.UserRoleMgmtService.getUsers(UserRoleMgmtServi<br />
ce.java:153)<br />
        at org.pentaho.pac.server.PacServiceImpl.getUserRoleSecurityInfo(PacServiceImpl.java:124)<br />
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
        at java.lang.reflect.Method.invoke(Unknown Source)<br />
        at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:5<br />
        ... 19 more<br />
Caused by: org.hibernate.exception.JDBCConnectionException: Cannot open connection<br />
        at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:74)<br />
        at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelp<br />
er.java:43)<br />
        at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelp<br />
er.java:29)<br />
        at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager<br />
.java:426)<br />
        at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.<br />
java:144)<br />
        at org.hibernate.jdbc.JDBCContext.connection(JDBCContext.java:119)<br />
        at org.hibernate.transaction.JDBCTransaction.begin(JDBCTransaction.java:<br />
57)<br />
        at org.hibernate.impl.SessionImpl.beginTransaction(SessionImpl.java:1326<br />
)<br />
        at org.springframework.orm.hibernate3.HibernateTransactionManager.doBegi<br />
n(HibernateTransactionManager.java:558)<br />
        ... 29 more<br />
Caused by: java.sql.SQLException: socket creation error<br />
        at org.hsqldb.jdbc.Util.sqlException(Unknown Source)<br />
        at org.hsqldb.jdbc.jdbcConnection.&lt;init&gt;(Unknown Source)<br />
        at org.hsqldb.jdbcDriver.getConnection(Unknown Source)<br />
        at org.hsqldb.jdbcDriver.connect(Unknown Source)<br />
        at java.sql.DriverManager.getConnection(Unknown Source)<br />
        at java.sql.DriverManager.getConnection(Unknown Source)<br />
        at org.hibernate.connection.DriverManagerConnectionProvider.getConnectio<br />
n(DriverManagerConnectionProvider.java:110)<br />
        at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager<br />
.java:423)<br />
        ... 34 more<br />
<font color="#FF0000"><b>08:12:52,141 WARN  [JDBCExceptionReporter] SQL Error: -80, SQLState: 08000<br />
</b></font>08:12:52,141 ERROR [JDBCExceptionReporter] socket creation error<br />
08:13:14,687 INFO  [HttpMethodDirector] I/O exception (java.net.ConnectException<br />
) caught when processing request: Connection refused: connect</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?93-Portuguese">Portuguese</category>
			<dc:creator>Orlando</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95399-Problemas-no-Pentaho-3-10-PacService-ERROR_0023-BD-POSTGRESQL-8-2-9</guid>
		</item>
		<item>
			<title>Internationalization/Localization issue in Pentaho Report Designer 3.8.3</title>
			<link>http://forums.pentaho.com/showthread.php?95397-Internationalization-Localization-issue-in-Pentaho-Report-Designer-3-8-3&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 11:44:41 GMT</pubDate>
			<description>Hi, 
 
We are using BI Server 4.1 GA Enterprise Edition . 
 
We translated all the reports in 7 different languages,and for that we used property...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
We are using BI Server 4.1 GA Enterprise Edition .<br />
<br />
We translated all the reports in 7 different languages,and for that we used property files.<br />
If the translation has any special character present it's not get displayed properly on Browser.<br />
For Spanish “Informe de cÃ³digos de barras de actives” is got displayed instead of “Informe de códigos de barras de actives”<br />
Hence, for special characters translationis inaccurate.<br />
Please let us know if this a reported issue for pentaho? Is Pentaho unable to identify special characters?<br />
<br />
Is any workaround possible?<br />
<br />
 Any help will be appreciated. <br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>karthikpai</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95397-Internationalization-Localization-issue-in-Pentaho-Report-Designer-3-8-3</guid>
		</item>
		<item>
			<title>Fore_color</title>
			<link>http://forums.pentaho.com/showthread.php?95396-Fore_color&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 11:42:07 GMT</pubDate>
			<description>Hi, 
 
Using the style and format_string we can change the background colour of the measures...How do we change the foreground colour or the font...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Using the style and format_string we can change the background colour of the measures...How do we change the foreground colour or the font colour ?<br />
<br />
Need a solution for this problem in Analysis report(legacy) or MDX or using XML and not in report designer.<br />
<br />
<br />
Thanks,<br />
Abhitha:)</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>Abhitha</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95396-Fore_color</guid>
		</item>
		<item>
			<title>How to crate report with unknown number of fields?</title>
			<link>http://forums.pentaho.com/showthread.php?95391-How-to-crate-report-with-unknown-number-of-fields&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 09:14:09 GMT</pubDate>
			<description>How to create report in report designer with unknown number of fields?</description>
			<content:encoded><![CDATA[<div>How to create report in report designer with unknown number of fields?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>nafigator</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95391-How-to-crate-report-with-unknown-number-of-fields</guid>
		</item>
		<item>
			<title>How to create  drill down and crosstab reports in pentaho reporting</title>
			<link>http://forums.pentaho.com/showthread.php?95383-How-to-create-drill-down-and-crosstab-reports-in-pentaho-reporting&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 05:06:54 GMT</pubDate>
			<description>Hi all,   I am new to  Pentaho Rporting , I need to create a drill down report and creoss tab report can any one help me on this......:)</description>
			<content:encoded><![CDATA[<div>Hi all,   I am new to  Pentaho Rporting , I need to create a drill down report and creoss tab report can any one help me on this......:)</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>MaheshKrishna</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95383-How-to-create-drill-down-and-crosstab-reports-in-pentaho-reporting</guid>
		</item>
		<item>
			<title>Specified query not executable here - pentaho reporting - BI Server</title>
			<link>http://forums.pentaho.com/showthread.php?95381-Specified-query-not-executable-here-pentaho-reporting-BI-Server&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 04:59:04 GMT</pubDate>
			<description><![CDATA[So i've designed a report in Pentaho Report Designer 3.9 and previewed it and ran it on my machine and everything works fine. 
I have an input...]]></description>
			<content:encoded><![CDATA[<div><div style="text-align: left;"><font color="#000000"><span style="font-family: Arial">So i've designed a report in Pentaho Report Designer 3.9 and previewed it and ran it on my machine and everything works fine.<br />
I have an input paramater that is a dropdown list and gets its values from a query called Vertical-List.<br />
Now the drop down works on my machine. However, when i publish the report to the Online interface and try to access it, I get a message that says *<i>The Specified query &quot;Vertical-List&quot; is not executable here *</i> i dont know what that means and what to do. It worked this morning and suddenly it stopped working.<br />
Please help a brother out.<br />
<br />
<br />
</span></font></div></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>shahink</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95381-Specified-query-not-executable-here-pentaho-reporting-BI-Server</guid>
		</item>
		<item>
			<title>Weka 3.6.7 and 3.7.6 releases</title>
			<link>http://forums.pentaho.com/showthread.php?95377-Weka-3-6-7-and-3-7-6-releases&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 02:49:59 GMT</pubDate>
			<description>Hi everyone! 
 
New versions of Weka are available for download from the Weka homepage: 
 
* Weka 3.6.7 - stable book 3rd edition version. It is...</description>
			<content:encoded><![CDATA[<div>Hi everyone!<br />
<br />
New versions of Weka are available for download from the Weka homepage:<br />
<br />
* Weka 3.6.7 - stable book 3rd edition version. It is available as ZIP, with Win32 installer, Win32 installer incl. JRE 1.6.0_32, Win64 installer, Win64 installer incl. 64 bit JRE 1.6.0_32 and Mac OS X application.<br />
<br />
* Weka 3.7.6 - development version. It is available as ZIP, with Win32 installer, Win32 installer incl. JRE 1.6.0_32, Win64 installer, Win64 installer incl. 64 bit JRE 1.6.0_32 and Mac OS X application.<br />
<br />
Both versions contain a significant number of bugfixes, it is recommended to upgrade to the new versions. Stable Weka 3.6 receives bug fixes only. The development version receives bug fixes and new features.<br />
<br />
Weka homepage:<br />
<a href="http://www.cs.waikato.ac.nz/~ml/weka/" target="_blank">http://www.cs.waikato.ac.nz/~ml/weka/</a><br />
<br />
Pentaho data mining community documentation:<br />
<a href="http://wiki.pentaho.com/display/Pentaho+Data+Mining+Community+Documentation" target="_blank">http://wiki.pentaho.com/display/Pent...+Documentation</a><br />
<br />
Packages for Weka&gt;=3.7.2 can be browsed online at:<br />
<a href="http://weka.sourceforge.net/packageMetaData/" target="_blank">http://weka.sourceforge.net/packageMetaData/</a><br />
<br />
The Pentaho Weka micro site at <a href="http://weka.pentaho.com/" target="_blank">http://weka.pentaho.com/</a> will be updated to reflect the new releases soon.<br />
<br />
Note:<br />
It might take a while before Sourceforge.net has propagated all the files to its mirrors.<br />
<br />
What's new in 3.7.6?<br />
<br />
Some highlights<br />
---------------<br />
<br />
In core weka:<br />
<br />
* Weka 3.7 is now GPL 3.0.<br />
* Weka releases now available on Maven central<br />
* Logistic now has an option to use conjugate gradient descent rather than quasi-Newton with BFGS updates.<br />
* weka.classifiers.bayes.NaiveBayesMultinomialText - naive Bayes multinomial classifier that operates directly on string attributes.<br />
* Appender component for the Knowledge Flow that can append sets of instances together.<br />
* SubstringLabeler component for the Knowledge Flow that can use substring or regex matching on string attribute values to assign various user defined nominal values to a new &quot;label&quot; attribute.<br />
* SubstringReplacer component for the Knowledge Flow that can replace substrings or regex matches with user supplied strings in string attribute values.<br />
* Sorter component for the Knowledge Flow that implements a streaming merge sort that writes a sorted in-memory buffer to a file when full. Can sort descending or ascending on multiple attributes.<br />
* DatabaseSaver can now truncate the target table if desired.<br />
* Area under the precision-recall curve evaluation metric.<br />
* Package manager's cache refresh mechanism is now much faster.<br />
* Package manager now checks for new versions of existing packages on the server as well as entirely new packages.<br />
* Random forest now has an option to print all the ensemble trees as part of its output.<br />
<br />
<br />
In packages:<br />
* cascadeKMeans package - weka.clusterers.CascadeSimpleKMeans, contributed by Martin Guetlein.<br />
* weka.classifiers.functions.RBFRegressor added to the RBFNetwork package<br />
* jsonFieldExtractor package - Knowledge Flow step to extract one or more fields from repeating blocks of JSON text into new attributes.<br />
<br />
<br />
As usual, for a complete list of changes refer to the changelogs.<br />
<br />
Cheers,<br />
The Weka Team</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?81-Pentaho-Data-Mining-WEKA"><![CDATA[Pentaho Data Mining [WEKA]]]></category>
			<dc:creator>Mark</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95377-Weka-3-6-7-and-3-7-6-releases</guid>
		</item>
		<item>
			<title>sort order of bar chart or Group details data</title>
			<link>http://forums.pentaho.com/showthread.php?95370-sort-order-of-bar-chart-or-Group-details-data&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 23:12:28 GMT</pubDate>
			<description>Hi my fellow Pentahoers, 
 
My question is, how can I define the sort order of the data in either a chart element or the details section of a Group...</description>
			<content:encoded><![CDATA[<div>Hi my fellow Pentahoers,<br />
<br />
My question is, how can I define the sort order of the data in either a chart element or the details section of a Group element in a report. <br />
<br />
The question is coming about because of the following situation:<br />
<br />
I am trying to match the sort order of data in a chart with a table in the group element in a report. What is happening is the data on the chart (a stacked bar chart) is sorting the data in one direction and the details of the group element is sorting it in the opposite direction.  If you look at the attached image you'll see that the lowest data element in the stacked chart (the blue HEM data) corresponds with the top of the Group details data (and with the top of the chart legend for that matter). I would love to be able to reverse either the sort order in the chart or the Group details band, or sort them both in a particular way that will line up. <br />
<br />
<br />
Any suggestions?<br />
  <br />
<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8708&amp;d=1336690960"  title="Name:  chart and table example.jpg
Views: 4
Size:  15.9 KB">chart and table example.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8708&amp;d=1336690960">chart and table example.jpg</a> 
(15.9 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>rmadou</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95370-sort-order-of-bar-chart-or-Group-details-data</guid>
		</item>
		<item>
			<title>HBase data read with contains clause in key</title>
			<link>http://forums.pentaho.com/showthread.php?95363-HBase-data-read-with-contains-clause-in-key&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 19:22:56 GMT</pubDate>
			<description><![CDATA[For HBase input, does "Start Key Value for table scan" under configure query tab applies "contains" clause? For example, I have record with keys...]]></description>
			<content:encoded><![CDATA[<div>For HBase input, does &quot;Start Key Value for table scan&quot; under configure query tab applies &quot;contains&quot; clause? For example, I have record with keys &quot;AA-BB-CC-DD&quot; ,  &quot;AB-BB-BD-DD&quot; and &quot;BB-AA-CC-DD&quot;. How to configure query such that all the records with key starting with &quot;A&quot; could be read from HBase? Similarly, how all records whose key contains 'BB&quot;.<br />
I tried with &quot;A&quot; in the start key but didn't yield the expected result. <br />
<br />
I'm using CE 4.3 preview.<br />
<br />
UPDATE: PDI works as I initially thought i.e. its matches the starting part of key with the string provided in &quot;Start Key Value&quot; field. Mistake is on my part to miss it first attempt. <br />
<br />
Still unable to make it work with wildcard i.e reading records with matching multiple key patterns i.e. A[AB]<br />
<br />
<br />
Thanks,</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?301-Big-Data">Big Data</category>
			<dc:creator>rajpal</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95363-HBase-data-read-with-contains-clause-in-key</guid>
		</item>
		<item>
			<title>Introduce variable value as field value in a table output</title>
			<link>http://forums.pentaho.com/showthread.php?95360-Introduce-variable-value-as-field-value-in-a-table-output&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 18:25:36 GMT</pubDate>
			<description>Hi, I created a transformation that extracts the system time in PST and set it in a variable called job_timestamp, with the scope of valid in JVM. 
...</description>
			<content:encoded><![CDATA[<div>Hi, I created a transformation that extracts the system time in PST and set it in a variable called job_timestamp, with the scope of valid in JVM.<br />
<br />
<br />
In the next transformation I want to be able use the variable ${job_timestamp} as one of the field values in a table output , some thing like this :<br />
<a href="http://forums.pentaho.com/attachment.php?attachmentid=8707&amp;d=1336674039"  title="Name:  test_variable_insert.ktr
Views: 4
Size:  22.6 KB">test_variable_insert.ktr</a><br />
<br />
Basically I used the Calculator step to add a new field and set that field value to the value of the variable job_timestamp.<br />
but I get this error :Unable to find the first argument field 'extract_timestamp for calculation #1<br />
<br />
It looks like I cannot use a variable in a Calculator step ? How can I do something in this line to add a new field in the table output that gets its value from a variable.<br />
<br />
Appreciate any inputs to help ! Thanks.</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/ktr.gif" alt="File Type: ktr" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8707&amp;d=1336674039" target="_blank">test_variable_insert.ktr</a> 
(22.6 KB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>rcanalytics</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95360-Introduce-variable-value-as-field-value-in-a-table-output</guid>
		</item>
		<item>
			<title>String extraction with regex</title>
			<link>http://forums.pentaho.com/showthread.php?95356-String-extraction-with-regex&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 16:52:43 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I have a text field where I want to extract a specified portion of text (with regex) and put in a new field. 
 
I've tried with "regex...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I have a text field where I want to extract a specified portion of text (with regex) and put in a new field.<br />
<br />
I've tried with &quot;regex evaluation&quot; and &quot;Replace in string&quot; but seems to not work =/<br />
<br />
Some hint?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>vipex</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95356-String-extraction-with-regex</guid>
		</item>
		<item>
			<title>RegEx expression not working</title>
			<link>http://forums.pentaho.com/showthread.php?95352-RegEx-expression-not-working&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 15:19:13 GMT</pubDate>
			<description>I am trying to build a simple file split process using a regular expression to determine which lines to keep and which to discard. 
 
The regular...</description>
			<content:encoded><![CDATA[<div>I am trying to build a simple file split process using a regular expression to determine which lines to keep and which to discard.<br />
<br />
The regular expression is this: ^[0-9]{6}<br />
This looks for 6 digits between 0 and 9, starting at the beginning of the line.<br />
<br />
My text file input defines one field for the entire line, and passes this to the regex.  From the regex, it goes<br />
to a filter which uses the &quot;result&quot; from the regex to determine where to send the line.<br />
<br />
When I run this, all the lines go into the &quot;True&quot; file, and none go into the &quot;False&quot; file.  I have tested this regular<br />
expression on the file, and it works there.<br />
<br />
I have attached the transformation and a sample file, so you can see what I am trying to do.<br />
<br />
Does anyone know why this doesn't work?</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/ktr.gif" alt="File Type: ktr" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8705&amp;d=1336663082" target="_blank">PullAllDataLines3.ktr</a> 
(20.7 KB)
</li><li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/txt.gif" alt="File Type: txt" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8706&amp;d=1336663124">mspcashgpc2.txt</a> 
(10.5 KB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>wlstolzus</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95352-RegEx-expression-not-working</guid>
		</item>
		<item>
			<title>Pop up so user can set variable on the fly (job)</title>
			<link>http://forums.pentaho.com/showthread.php?95350-Pop-up-so-user-can-set-variable-on-the-fly-(job)&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 14:48:26 GMT</pubDate>
			<description>It might be a silly question. 
 
I have a job that depending on the user decision, it has different paths. 
But I couldn´t find a way to ask the user...</description>
			<content:encoded><![CDATA[<div>It might be a silly question.<br />
<br />
I have a job that depending on the user decision, it has different paths.<br />
But I couldn´t find a way to ask the user (pop up) to set a variable when he runs the job.<br />
I want to ask the user everytime he runs the job to place a value to the variable.<br />
<br />
How can I do this?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>helioshimojo</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95350-Pop-up-so-user-can-set-variable-on-the-fly-(job)</guid>
		</item>
		<item>
			<title>labels not displayed in excel format</title>
			<link>http://forums.pentaho.com/showthread.php?95349-labels-not-displayed-in-excel-format&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 14:40:50 GMT</pubDate>
			<description><![CDATA[hello, 
 
I'm using report designer. 
 
I've created a report containing many group headers, content of groups header isn't displayed in excel format...]]></description>
			<content:encoded><![CDATA[<div>hello,<br />
<br />
I'm using report designer.<br />
<br />
I've created a report containing many group headers, content of groups header isn't displayed in excel format<br />
even if visible is equals to true.<br />
<br />
This content is visible in all other formats.<br />
<br />
<br />
What to do so that content becomes visible with excel<br />
<br />
<br />
thanks in advance</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>yoruichi</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95349-labels-not-displayed-in-excel-format</guid>
		</item>
		<item>
			<title>Problem postal code Geomap</title>
			<link>http://forums.pentaho.com/showthread.php?95345-Problem-postal-code-Geomap&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 13:08:28 GMT</pubDate>
			<description>Hi all, 
 
I wanted to have a preview of Geomap with some datas...and I get a problem. 
I wanted to display some datas for some departments. For...</description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I wanted to have a preview of Geomap with some datas...and I get a problem.<br />
I wanted to display some datas for some departments. For this, I used postal codes of my country. <br />
<br />
But, instead of appear in my country, bubbles appear in the USA. I think the USA must have same postal code, but I want to display my datas in my country, and I don't know how...<br />
<br />
If somebody could help me, it will be very nice :)<br />
<br />
Thank you very much :)<br />
<br />
Benjamin</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>M4rs</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95345-Problem-postal-code-Geomap</guid>
		</item>
		<item>
			<title>Simple MDX Query against MS SASS 12 fails with SOAP-Fault</title>
			<link>http://forums.pentaho.com/showthread.php?95342-Simple-MDX-Query-against-MS-SASS-12-fails-with-SOAP-Fault&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 11:51:53 GMT</pubDate>
			<description><![CDATA[Hello, 
 
i'm working on a proof concept using pentaho report designer with an OLAP datasource connected to a MS SASS 12. The first step was trying a...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
i'm working on a proof concept using pentaho report designer with an OLAP datasource connected to a MS SASS 12. The first step was trying a simple MDX Query in the datasource editor of the designer.<br />
<br />
I've configured following datasource:<br />
<br />
Data -&gt; Add datasource -&gt; OLAP -&gt; OLAP4J<br />
<br />
And added the following database connection:<br />
<br />
Generic Database<br />
Access: Native (JDBC)<br />
<br />
Connection-URL: jdbc:xmla:Server=http://192.168.100.20/olap/msmdpump.dll;Catalog='Analysis Services Tutorial';Cube='Analysis Services Tutorial'<br />
Custom Driver: org.olap4j.driver.xmla.XmlaOlap4jDriver<br />
User and password are set.<br />
<br />
The test was ok. In the datasource i added the following query:<br />
<br />
SELECT Measures.MEMBERS ON COLUMNS FROM [Analysis Services Tutorial]<br />
<br />
While starting the preview for this connection, i'll get the following exception (see full exception in attachments):<br />
<br />
java.lang.RuntimeException: org.olap4j.OlapException: XMLA provider gave exception: &lt;soap:Fault xmlns=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; [^]<br />
    &lt;faultcode&gt;<br />
        XMLAnalysisError.0xc10f0006<br />
    &lt;/faultcode&gt;<br />
    &lt;faultstring&gt;<br />
        XML parsing failed at line 15, column 10: Ungültiges qualifiziertes Zeichen.<br />
.<br />
    &lt;/faultstring&gt;<br />
    &lt;detail&gt;<br />
        &lt;Error Description=&quot;XML parsing failed at line 15, column 10: Ungültiges qualifiziertes Zeichen.<br />
.&quot; ErrorCode=&quot;3238985734&quot; HelpFile=&quot;&quot; Source=&quot;Microsoft SQL Server 2012 Analysis Services&quot;&gt;<br />
        &lt;/Error&gt;<br />
    &lt;/detail&gt;<br />
&lt;/soap:Fault&gt;<br />
<br />
Request was:<br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;SOAP-ENV:Envelope<br />
    xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; [^]<br />
    SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot;&gt; [^]<br />
  &lt;SOAP-ENV:Body&gt;<br />
    &lt;Discover xmlns=&quot;urn:schemas-microsoft-com:xml-analysis&quot;<br />
        SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot;&gt; [^]<br />
    &lt;RequestType&gt;DISCOVER_DATASOURCES&lt;/RequestType&gt;<br />
    &lt;Restrictions&gt;<br />
      &lt;RestrictionList&gt;<br />
      &lt;/RestrictionList&gt;<br />
    &lt;/Restrictions&gt;<br />
    &lt;Properties&gt;<br />
      &lt;PropertyList&gt;<br />
        &lt;::PENTAHO-REPORTING::HOSTNAME&gt;&lt;/::PENTAHO-REPORTING::HOSTNAME&gt;<br />
        &lt;::PENTAHO-REPORTING::PORT&gt;1521&lt;/::PENTAHO-REPORTING::PORT&gt;<br />
        &lt;::PENTAHO-REPORTING::DATABASE-TYPE&gt;GENERIC&lt;/::PENTAHO-REPORTING::DATABASE-TYPE&gt;<br />
        &lt;::PENTAHO-REPORTING::NAME&gt;MS SASS&lt;/::PENTAHO-REPORTING::NAME&gt;<br />
        &lt;CUBE&gt;Analysis Services Tutorial&lt;/CUBE&gt;<br />
        &lt;::PENTAHO-REPORTING::DATABASE-NAME&gt;&lt;/::PENTAHO-REPORTING::DATABASE-NAME&gt;<br />
        &lt;Content&gt;Data&lt;/Content&gt;<br />
      &lt;/PropertyList&gt;<br />
    &lt;/Properties&gt;<br />
  &lt;/Discover&gt;<br />
&lt;/SOAP-ENV:Body&gt;<br />
<br />
If i try this query within a simple java class using OLAP4J with same connection parameters, i got no errors. I also figured out, that in this case the request looks like<br />
<br />
&lt;SOAP-ENV:Envelope<br />
    xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; [^]<br />
    SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot;&gt; [^]<br />
  &lt;SOAP-ENV:Body&gt;<br />
    &lt;Discover xmlns=&quot;urn:schemas-microsoft-com:xml-analysis&quot;<br />
        SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot;&gt; [^]<br />
    &lt;RequestType&gt;DISCOVER_DATASOURCES&lt;/RequestType&gt;<br />
    &lt;Restrictions&gt;<br />
      &lt;RestrictionList&gt;<br />
      &lt;/RestrictionList&gt;<br />
    &lt;/Restrictions&gt;<br />
    &lt;Properties&gt;<br />
      &lt;PropertyList&gt;<br />
        &lt;CUBE&gt;Analysis Services Tutorial&lt;/CUBE&gt;<br />
        &lt;Content&gt;Data&lt;/Content&gt;<br />
      &lt;/PropertyList&gt;<br />
    &lt;/Properties&gt;<br />
  &lt;/Discover&gt;<br />
&lt;/SOAP-ENV:Body&gt;<br />
<br />
It seems , that the pentaho reporting properties are not allowed !?<br />
<br />
Has anybody a hint or a solution for this problem ?<br />
<br />
Kind regards,<br />
<br />
Thomas Wiesner</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/txt.gif" alt="File Type: txt" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8704&amp;d=1336650658">ms_sass_exception_with_pentaho.txt</a> 
(10.1 KB)
</li>
			</ul>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>ThomasWiesner</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95342-Simple-MDX-Query-against-MS-SASS-12-fails-with-SOAP-Fault</guid>
		</item>
		<item>
			<title>сервера cs нового поколения понравится всем игрокам</title>
			<link>http://forums.pentaho.com/showthread.php?95339-сервера-cs-нового-поколения-понравится-всем-игрокам&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 10:45:53 GMT</pubDate>
			<description>Хотелось бы начать с того, что этот форум читал давно и вот решил зарегистрироваться. Спасибо администраторам этого сайта, за то что он всегда...</description>
			<content:encoded><![CDATA[<div>Хотелось бы начать с того, что этот форум читал давно и вот решил зарегистрироваться. Спасибо администраторам этого сайта, за то что он всегда настолько всем интересен.  И всем юзерам данного проекта оценить сервера CS и сайт нового поколенения, посвещённый этой захватывающей игре. Там работает хорошая команда специалистов, которая поддерживает сайт на высшем уровне качества. Постоянный онлайн и множество положительных эмоций. Если интересно можете перейти по одной из кнопок:   <a href="http://justserver.ru/index.php?/forum/38-novosti-kibersporta/" target="_blank">новости киберспорта</a> <a href="http://justserver.ru/" target="_blank">играть бесплатно в CS онлайн</a></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>useffuttAcile</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95339-сервера-cs-нового-поколения-понравится-всем-игрокам</guid>
		</item>
		<item>
			<title>union role</title>
			<link>http://forums.pentaho.com/showthread.php?95338-union-role&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 10:40:11 GMT</pubDate>
			<description><![CDATA[I  have created two roles one which can access "SER038 - Direzione Generale" and second which  can access "SER037 - Assistenza Farmaceutica  Area...]]></description>
			<content:encoded><![CDATA[<div>I  have created two roles one which can access &quot;SER038 - Direzione Generale&quot; and second which  can access &quot;SER037 - Assistenza Farmaceutica  Area Ospedaliera&quot; and tried creating a union of those two roles...but it doesn't work, can anyone help me?<br />
<br />
&lt;Role name=&quot;SER038&quot;&gt;<br />
    &lt;SchemaGrant access=&quot;all&quot;&gt;<br />
      &lt;CubeGrant cube=&quot;Dettaglio Accumulatori Profilo&quot; access=&quot;all&quot;&gt;<br />
        &lt;DimensionGrant dimension=&quot;Profilazione&quot; access=&quot;none&quot;&gt;<br />
        &lt;/DimensionGrant&gt;<br />
        &lt;HierarchyGrant hierarchy=&quot;Profilazione&quot; topLevel=&quot;macro&quot; bottomLevel=&quot;macro&quot; access=&quot;custom&quot;&gt;<br />
          &lt;MemberGrant member=&quot;[Profilazione].[SER038 - Direzione Generale]&quot; access=&quot;all&quot;&gt;<br />
          &lt;/MemberGrant&gt;<br />
        &lt;/HierarchyGrant&gt;<br />
      &lt;/CubeGrant&gt;<br />
    &lt;/SchemaGrant&gt;<br />
  &lt;/Role&gt;<br />
  &lt;Role name=&quot;SER037&quot;&gt;<br />
    &lt;SchemaGrant access=&quot;all&quot;&gt;<br />
      &lt;CubeGrant cube=&quot;Dettaglio Accumulatori Profilo&quot; access=&quot;all&quot;&gt;<br />
        &lt;DimensionGrant dimension=&quot;Profilazione&quot; access=&quot;none&quot;&gt;<br />
        &lt;/DimensionGrant&gt;<br />
        &lt;HierarchyGrant hierarchy=&quot;Profilazione&quot; topLevel=&quot;macro&quot; bottomLevel=&quot;macro&quot; access=&quot;custom&quot;&gt;<br />
          &lt;MemberGrant member=&quot;[Profilazione].[SER037 - Assistenza Farmaceutica  Area Ospedaliera]&quot; access=&quot;all&quot;&gt;<br />
          &lt;/MemberGrant&gt;<br />
        &lt;/HierarchyGrant&gt;<br />
      &lt;/CubeGrant&gt;<br />
    &lt;/SchemaGrant&gt;<br />
  &lt;/Role&gt;<br />
   &lt;Role name=&quot;SER&quot;&gt;<br />
      &lt;Union&gt;      <br />
      &lt;RoleUsage roleName =&quot;SER038&quot; /&gt;     <br />
      &lt;RoleUsage roleName =&quot;SER037&quot; /&gt;        <br />
&lt;/Union&gt;<br />
  &lt;/Role&gt;</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>fabioroma</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95338-union-role</guid>
		</item>
		<item>
			<title>Write a field value in details band ONLY IF is different from previous</title>
			<link>http://forums.pentaho.com/showthread.php?95337-Write-a-field-value-in-details-band-ONLY-IF-is-different-from-previous&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 10:23:49 GMT</pubDate>
			<description>Hi everyone. My report looks like: 
 
 
Code: 
--------- 
John Doe | Area one |  23 
John Doe | Area two | 678 
Jack Til | Area one |  12 
Jack Til |...</description>
			<content:encoded><![CDATA[<div>Hi everyone. My report looks like:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">John Doe | Area one |&nbsp; 23<br />
John Doe | Area two | 678<br />
Jack Til | Area one |&nbsp; 12<br />
Jack Til | Area two | 567</code><hr />
</div>Is it possible to display the same data, but hiding names when equal to previous row, ie:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">John Doe | Area one |&nbsp; 23<br />
&nbsp; &nbsp; &nbsp; &nbsp;  | Area two | 678<br />
Jack Til | Area one |&nbsp; 12<br />
&nbsp; &nbsp; &nbsp; &nbsp;  | Area two | 567</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>lorenzo-s</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95337-Write-a-field-value-in-details-band-ONLY-IF-is-different-from-previous</guid>
		</item>
		<item>
			<title>Hooking php script out from prd?</title>
			<link>http://forums.pentaho.com/showthread.php?95333-Hooking-php-script-out-from-prd&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 08:52:13 GMT</pubDate>
			<description><![CDATA[Hi everyone, 
 
Hello, I've looked for Pentaho Report Designer hook possibilities but without much success and my English skills are reaching their...]]></description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
<br />
Hello, I've looked for Pentaho Report Designer hook possibilities but without much success and my English skills are reaching their limits.<br />
I'd like to hook a PHP script triggered by the generation of a batch of monthly reports.<br />
<br />
Could you please if it is natively feasible ?<br />
<br />
<br />
Best regards,</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>cunk111</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95333-Hooking-php-script-out-from-prd</guid>
		</item>
		<item>
			<title>pentaho BI server is running but not able to access pentaho/home from using url</title>
			<link>http://forums.pentaho.com/showthread.php?95332-pentaho-BI-server-is-running-but-not-able-to-access-pentaho-home-from-using-url&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 08:33:14 GMT</pubDate>
			<description>Hi All,  
 
I am not able to access http://localhost:8080/pentaho/home from a browser. I tried after restarting pentaho but no luck. Pentaho mysql...</description>
			<content:encoded><![CDATA[<div>Hi All, <br />
<br />
I am not able to access <a href="http://localhost:8080/pentaho/home" target="_blank">http://localhost:8080/pentaho/home</a> from a browser. I tried after restarting pentaho but no luck. Pentaho mysql server at port 3307 was not starting. <br />
<br />
here is a log from ../pentaho/mysql/data/mysqld.log file <br />
<br />
120510 12:27:33 mysqld_safe Starting mysqld.bin daemon with databases from /usr/local/pentaho/mysql/data<br />
120510 12:27:33 [Note] Plugin 'FEDERATED' is disabled.<br />
^G/usr/local/pentaho/mysql/bin/mysqld.bin: Can't find file: './mysql/plugin.frm' (errno: 13)<br />
120510 12:27:33 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.<br />
120510 12:27:33  InnoDB: Operating system error number 13 in a file operation.<br />
InnoDB: The error means mysqld does not have the access rights to<br />
InnoDB: the directory.<br />
InnoDB: File name ./ibdata1<br />
InnoDB: File operation call: 'open'.<br />
InnoDB: Cannot continue operation.<br />
120510 12:27:33 mysqld_safe mysqld from pid file /usr/local/pentaho/mysql/data/nmltradusbe06.pid ended<br />
<br />
Any kind of help is appreciated.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>cseprabhat</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95332-pentaho-BI-server-is-running-but-not-able-to-access-pentaho-home-from-using-url</guid>
		</item>
		<item>
			<title>Mondrian Error:Internal error: Error while instantiating dialect</title>
			<link>http://forums.pentaho.com/showthread.php?95329-Mondrian-Error-Internal-error-Error-while-instantiating-dialect&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 07:35:10 GMT</pubDate>
			<description>Icreatethedimension table,and configuretheSchemaconfiguration file,Mysql database,the following error,Tracking procedures to determine the access...</description>
			<content:encoded><![CDATA[<div><b><font color="#333333"><span style="font-family: arial">I</span></font><font color="#333333"><span style="font-family: arial">create</span></font><font color="#333333"><span style="font-family: arial">the</span></font><font color="#333333"><span style="font-family: arial">dimension table</span></font><font color="#333333"><span style="font-family: arial">,</span></font><font color="#333333"><span style="font-family: arial">and configure</span></font><font color="#333333"><span style="font-family: arial">the</span></font><font color="#333333"><span style="font-family: arial">Schema</span></font><font color="#333333"><span style="font-family: arial">configuration file</span></font><font color="#333333"><span style="font-family: arial">,</span></font><font color="#333333"><span style="font-family: arial">Mysql databas</span></font><font color="#333333"><span style="font-family: arial"><font size="3">e,</font></span></font><font color="#333333"><span style="font-family: arial">the following </span></font><font color="#333333"><span style="font-family: arial">error</span></font><font color="#333333"><span style="font-family: arial">,</span></font><span style="font-family: arial, sans-serif"><font size="4"><font color="#333333">Tracking procedures to determine the access database,</font></font></span><font color="#333333"><span style="font-family: arial">I</span></font><font color="#333333"><span style="font-family: arial">do</span></font><font color="#333333"><span style="font-family: arial">not</span></font><font color="#333333"><span style="font-family: arial">know</span></font><font color="#333333"><span style="font-family: arial">what the problem is</span></font><font color="#333333"><span style="font-family: arial">caused by</span></font> :   <br />
   <font color="#880000">Caused by: mondrian.olap.MondrianException: Mondrian Error:Internal error: Error while instantiating dialect</font><br />
<font color="#880000"><font color="#880000">at mondrian.resource.MondrianResource$_Def0.ex(MondrianResource.java:942)</font><br />
<font color="#880000">at mondrian.olap.Util.newInternal(Util.java:2261)</font><br />
<font color="#880000">at mondrian.olap.Util.newError(Util.java:2277)</font><br />
<font color="#880000">at mondrian.spi.impl.JdbcDialectFactory.createDialect(JdbcDialectFactory.java:132)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$ChainDialectFactory.createDialect(DialectManager.java:278)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$ChainDialectFactory.createDialect(DialectManager.java:278)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$CachingDialectFactory.createDialect(DialectManager.java:377)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$DialectManagerImpl.createDialect(DialectManager.java:237)</font><br />
<font color="#880000">at mondrian.spi.DialectManager.createDialect(DialectManager.java:80)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:227)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:205)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:233)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:54)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema$Pool.get(RolapSchema.java:1094)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema$Pool.get(RolapSchema.java:900)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:160)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:90)</font><br />
<font color="#880000">at mondrian.olap.DriverManager.getConnection(DriverManager.java:112)</font><br />
<font color="#880000">at com.tonbeller.jpivot.mondrian.MondrianModel.initialize(MondrianModel.java:524)</font><br />
<font color="#880000">at com.tonbeller.jpivot.olap.model.OlapModelDecorator.initialize(OlapModelDecorator.java:132)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelProxy$MyState.initialize(OlapModelProxy.java:77)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.StackStateManager.initializeAndShow(StackStateManager.java:76)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelProxy.initializeAndShow(OlapModelProxy.java:160)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelTag.doEndTag(OlapModelTag.java:81)</font><br />
<font color="#880000">at org.apache.jsp.WEB_002dINF.queries.test_jsp._jspx_meth_jp_005fmondrianQuery_005f0(test_jsp.java:129)</font><br />
<font color="#880000">at org.apache.jsp.WEB_002dINF.queries.test_jsp._jspService(test_jsp.java:70)</font><br />
<font color="#880000">... 36 more</font><br />
<font color="#880000">Caused by: java.lang.reflect.InvocationTargetException</font><br />
<font color="#880000">at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)</font><br />
<font color="#880000">at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)</font><br />
<font color="#880000">at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)</font><br />
<font color="#880000">at java.lang.reflect.Constructor.newInstance(Constructor.java:513)</font><br />
<font color="#880000">at mondrian.spi.impl.JdbcDialectFactory.createDialect(JdbcDialectFactory.java:124)</font><br />
<font color="#880000">... 58 more</font><br />
<font color="#880000">Caused by: java.util.regex.PatternSyntaxException: Unclosed group near index 22</font><br />
<font color="#880000">(<a href="smb://Q(&#91;^//Q]+)//E)" target="_blank">\\Q([^\\Q]+)\\E)</a></font><br />
</font></b><br /><br /></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>lxzjsj</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95329-Mondrian-Error-Internal-error-Error-while-instantiating-dialect</guid>
		</item>
		<item>
			<title>Mondrian Error:Internal error: Error while instantiating dialect</title>
			<link>http://forums.pentaho.com/showthread.php?95328-Mondrian-Error-Internal-error-Error-while-instantiating-dialect&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 07:33:32 GMT</pubDate>
			<description>Icreatethedimension table,and configuretheSchemaconfiguration file,Mysql database,the following error,Tracking procedures to determine the access...</description>
			<content:encoded><![CDATA[<div><font color="#333333"><span style="font-family: arial">I</span></font><font color="#333333"><span style="font-family: arial">create</span></font><font color="#333333"><span style="font-family: arial">the</span></font><font color="#333333"><span style="font-family: arial">dimension table</span></font><font color="#333333"><span style="font-family: arial">,</span></font><font color="#333333"><span style="font-family: arial">and configure</span></font><font color="#333333"><span style="font-family: arial">the</span></font><font color="#333333"><span style="font-family: arial">Schema</span></font><font color="#333333"><span style="font-family: arial">configuration file</span></font><font color="#333333"><span style="font-family: arial">,</span></font><font color="#333333"><span style="font-family: arial">Mysql databas</span></font><font color="#333333"><span style="font-family: arial"><font size="3">e,</font></span></font><font color="#333333"><span style="font-family: arial">the following </span></font><font color="#333333"><span style="font-family: arial">error</span></font><font color="#333333"><span style="font-family: arial">,</span></font><span style="font-family: arial, sans-serif"><font size="4"><font color="#333333">Tracking procedures to determine the access database,</font></font></span><font color="#333333"><span style="font-family: arial">I</span></font><font color="#333333"><span style="font-family: arial">do</span></font><font color="#333333"><span style="font-family: arial">not</span></font><font color="#333333"><span style="font-family: arial">know</span></font><font color="#333333"><span style="font-family: arial">what the problem is</span></font><font color="#333333"><span style="font-family: arial">caused by</span></font> :   <br />
   <font color="#880000">Caused by: mondrian.olap.MondrianException: Mondrian Error:Internal error: Error while instantiating dialect</font><br />
<font color="#880000"><font color="#880000">at mondrian.resource.MondrianResource$_Def0.ex(MondrianResource.java:942)</font><br />
<font color="#880000">at mondrian.olap.Util.newInternal(Util.java:2261)</font><br />
<font color="#880000">at mondrian.olap.Util.newError(Util.java:2277)</font><br />
<font color="#880000">at mondrian.spi.impl.JdbcDialectFactory.createDialect(JdbcDialectFactory.java:132)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$ChainDialectFactory.createDialect(DialectManager.java:278)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$ChainDialectFactory.createDialect(DialectManager.java:278)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$CachingDialectFactory.createDialect(DialectManager.java:377)</font><br />
<font color="#880000">at mondrian.spi.DialectManager$DialectManagerImpl.createDialect(DialectManager.java:237)</font><br />
<font color="#880000">at mondrian.spi.DialectManager.createDialect(DialectManager.java:80)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:227)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:205)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:233)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema.&lt;init&gt;(RolapSchema.java:54)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema$Pool.get(RolapSchema.java:1094)</font><br />
<font color="#880000">at mondrian.rolap.RolapSchema$Pool.get(RolapSchema.java:900)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:160)</font><br />
<font color="#880000">at mondrian.rolap.RolapConnection.&lt;init&gt;(RolapConnection.java:90)</font><br />
<font color="#880000">at mondrian.olap.DriverManager.getConnection(DriverManager.java:112)</font><br />
<font color="#880000">at com.tonbeller.jpivot.mondrian.MondrianModel.initialize(MondrianModel.java:524)</font><br />
<font color="#880000">at com.tonbeller.jpivot.olap.model.OlapModelDecorator.initialize(OlapModelDecorator.java:132)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelProxy$MyState.initialize(OlapModelProxy.java:77)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.StackStateManager.initializeAndShow(StackStateManager.java:76)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelProxy.initializeAndShow(OlapModelProxy.java:160)</font><br />
<font color="#880000">at com.tonbeller.jpivot.tags.OlapModelTag.doEndTag(OlapModelTag.java:81)</font><br />
<font color="#880000">at org.apache.jsp.WEB_002dINF.queries.test_jsp._jspx_meth_jp_005fmondrianQuery_005f0(test_jsp.java:129)</font><br />
<font color="#880000">at org.apache.jsp.WEB_002dINF.queries.test_jsp._jspService(test_jsp.java:70)</font><br />
<font color="#880000">... 36 more</font><br />
<font color="#880000">Caused by: java.lang.reflect.InvocationTargetException</font><br />
<font color="#880000">at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)</font><br />
<font color="#880000">at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)</font><br />
<font color="#880000">at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)</font><br />
<font color="#880000">at java.lang.reflect.Constructor.newInstance(Constructor.java:513)</font><br />
<font color="#880000">at mondrian.spi.impl.JdbcDialectFactory.createDialect(JdbcDialectFactory.java:124)</font><br />
<font color="#880000">... 58 more</font><br />
<font color="#880000">Caused by: java.util.regex.PatternSyntaxException: Unclosed group near index 22</font><br />
<font color="#880000">(<a href="smb://Q(&#91;^//Q]+)//E)" target="_blank">\\Q([^\\Q]+)\\E)</a></font><br />
</font></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>lxzjsj</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95328-Mondrian-Error-Internal-error-Error-while-instantiating-dialect</guid>
		</item>
		<item>
			<title>Beginner Star Schema</title>
			<link>http://forums.pentaho.com/showthread.php?95324-Beginner-Star-Schema&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 05:47:59 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm using Schema Workbench 3.3.0. This is my first time doing a schema with more than one table and i just can't make this work. This is the...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm using Schema Workbench 3.3.0. This is my first time doing a schema with more than one table and i just can't make this work. This is the xml file:<br />
<br />
&lt;Schema name=&quot;Cob118&quot;&gt;<br />
<br />
<br />
  &lt;Cube name=&quot;Estoque&quot; visible=&quot;true&quot; cache=&quot;true&quot; enabled=&quot;true&quot;&gt;<br />
    &lt;Table name=&quot;adop14p&quot;&gt;<br />
    &lt;/Table&gt;<br />
    <br />
&lt;Dimension type=&quot;StandardDimension&quot; visible=&quot;true&quot; foreignKey=&quot;financeira&quot; name=&quot;Carteira&quot;&gt;<br />
      &lt;Hierarchy name=&quot;Carteira&quot; visible=&quot;true&quot; hasAll=&quot;true&quot; primaryKey=&quot;financeira&quot;&gt;<br />
        &lt;Table name=&quot;financeiras&quot; alias=&quot;&quot;&gt;<br />
        &lt;/Table&gt;<br />
        &lt;Level name=&quot;Carteira&quot; visible=&quot;true&quot; table=&quot;financeiras&quot; column=&quot;descricao&quot; uniqueMembers=&quot;true&quot; levelType=&quot;Regular&quot;&gt;<br />
        &lt;/Level&gt;<br />
      &lt;/Hierarchy&gt;<br />
    &lt;/Dimension&gt;<br />
    <br />
&lt;Measure name=&quot;Total de Registros&quot; column=&quot;chave&quot; datatype=&quot;Numeric&quot; aggregator=&quot;count&quot;&gt;<br />
    &lt;/Measure&gt;<br />
<br />
<br />
  &lt;/Cube&gt;<br />
<br />
<br />
&lt;/Schema&gt;<br />
 <br />
The fact table is adop14p and i'm using a column called &quot;chave&quot; to count in a measure. The dimension table is called &quot;financeiras&quot; and i want to make a dimension using de column called &quot;descricao&quot;. The tables are related through the columns &quot;financeira&quot;. The relation is one to one.<br />
<br />
Table adop14p <br />
columns: chave, financeira and others<br />
<br />
Table financeiras<br />
columns: financeira, descricao<br />
<br />
i,m stuck and any help will be useful.<br />
<span style="font-family: arial, sans-serif"><font size="5"><font color="#333333"><br />
</font></font></span></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>Emannuel</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95324-Beginner-Star-Schema</guid>
		</item>
		<item>
			<title>How to bind report header to report field?</title>
			<link>http://forums.pentaho.com/showthread.php?95322-How-to-bind-report-header-to-report-field&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 04:52:21 GMT</pubDate>
			<description>Hi all, I have a problem with creating report. I  have wide report from sql query with grouped by horizontally data. I need add additional header to...</description>
			<content:encoded><![CDATA[<div>Hi all, I have a problem with creating report. I  have wide report from sql query with grouped by horizontally data. I need add additional header to report, and set date for every 4 fields in report, like on the image. How I can do it? Thank you.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://forums.pentaho.com/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://forums.pentaho.com/attachment.php?attachmentid=8701&amp;d=1336625908">&#1041;&#1077;&#1079;&#1099;&#1084;&#1103;&#1085;&#1085;&#1099;&#1081;.jpg</a> 
(22.3 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?73-BI-Platform">BI Platform</category>
			<dc:creator>nafigator</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95322-How-to-bind-report-header-to-report-field</guid>
		</item>
		<item>
			<title>How to create multiple connections in a Schema workbench</title>
			<link>http://forums.pentaho.com/showthread.php?95311-How-to-create-multiple-connections-in-a-Schema-workbench&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 22:43:02 GMT</pubDate>
			<description>Hi! I using the Schema workbench to create some cubes. I created a jdbc connection say db1 and I was able to create a cube and do analysis on it.  
...</description>
			<content:encoded><![CDATA[<div>Hi! I using the Schema workbench to create some cubes. I created a jdbc connection say db1 and I was able to create a cube and do analysis on it. <br />
<br />
Now I am trying to create a new jdbc connection to a different database with out losing the first connection that I already have (i.e db1) ? I dont see how I could create multiple connections in a schema workbench . Any one knows ?<br />
<br />
Appreciate your insights ?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>rcanalytics</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95311-How-to-create-multiple-connections-in-a-Schema-workbench</guid>
		</item>
		<item>
			<title>PDI 4.1.0 runs OK on windows7 machine - PDI 4.3.0 will not</title>
			<link>http://forums.pentaho.com/showthread.php?95307-PDI-4-1-0-runs-OK-on-windows7-machine-PDI-4-3-0-will-not&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 21:09:35 GMT</pubDate>
			<description><![CDATA[Hi, 
 
Just downloaded latest version (CE 4.3.0). Unzipped on Linux machine (java version "1.6.0_24"). 
 
I map drive on laptop to the directory for...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Just downloaded latest version (CE 4.3.0). Unzipped on Linux machine (java version &quot;1.6.0_24&quot;).<br />
<br />
I map drive on laptop to the directory for this version and I try to run Spoon.bat. All I get is splash screen and then hangs.<br />
<br />
I can run 4.1.0 just fine on windows using same method (map to Linux directory) and it runs fine. I have JRE7 on laptop which is what some solutions said was required. In the spoon.bat, i have increased the Xmx to 1024 - again another solution suggested but no dice.<br />
<br />
In my &quot;User/name&quot; windows directory there are '.kettle' and '.pentaho' directories - Do I have to delete these to run the latest version? (and they get recreated?)<br />
<br />
The funny thing is I had downloaded 4.4.0 (dev version ) and everything worked great - no modifications needed. I did notice it put an entry in the .pentaho/ VERCHECK file for 4.4.0 but this did not happen for 4.3.0.<br />
<br />
Any ideas?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>tnewman</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95307-PDI-4-1-0-runs-OK-on-windows7-machine-PDI-4-3-0-will-not</guid>
		</item>
		<item>
			<title><![CDATA[Stream Lookup Error - you can't use the 'integer-pair' algorithm when you ..]]></title>
			<link>http://forums.pentaho.com/showthread.php?95301-Stream-Lookup-Error-you-can-t-use-the-integer-pair-algorithm-when-you&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 17:38:15 GMT</pubDate>
			<description>Again - newbie question. I am querying a view using a Table Input step:  
 
SELECT 
  MOINSTID 
, TIMERECORDED 
, DISKUSAGE 
, EVENTLOGERRORS 
,...</description>
			<content:encoded><![CDATA[<div>Again - newbie question. I am querying a view using a Table Input step: <br />
<br />
SELECT<br />
  MOINSTID<br />
, TIMERECORDED<br />
, DISKUSAGE<br />
, EVENTLOGERRORS<br />
, MEMORYUSAGE<br />
, RESOURCECONTENTION<br />
, SYSTEMPAGING<br />
, PROCESSORUTILIZATION<br />
, WMIAVAILABILITY<br />
FROM _PATROL__NT_OS_NT_HEALTH_ST_VIEW<br />
<br />
Then the next step is a &quot;Stream Lookup&quot; which I have another Table input that queries another view:<br />
<br />
SELECT<br />
  MOINSTID<br />
, DEVICENAME<br />
, SOURCEIP<br />
FROM _PATROL__NT_OS_NT_HEALTH_CFG_VIEW<br />
<br />
The Stream lookup step uses the field &quot;MOINSTID&quot; from the first Table Input (this is an integer), then uses the lookup field &quot;MOINSTID&quot; (this is also an integer) which is from the second Table input that has a hop into the Lookup Stream. So I am trying to grab the DEVICENAME from the second Table Input.<br />
<br />
Seems very straight forward, but I get the following errors:<br />
<br />
you can't use the 'integer-pair' algorithm when you have more than one key or value-field or value in not an integer.<br />
<br />
Please advise. Thanks gurus!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>karlis_peterson</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95301-Stream-Lookup-Error-you-can-t-use-the-integer-pair-algorithm-when-you</guid>
		</item>
		<item>
			<title>CCC Bar chart values position not working?</title>
			<link>http://forums.pentaho.com/showthread.php?95295-CCC-Bar-chart-values-position-not-working&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 15:17:48 GMT</pubDate>
			<description>Hello 
 
Im new to using the cde but Im trying to do a simple task.  On a bar chart, the values are currently displaying in the centre of the bars...</description>
			<content:encoded><![CDATA[<div>Hello<br />
<br />
Im new to using the cde but Im trying to do a simple task.  On a bar chart, the values are currently displaying in the centre of the bars but I want them to appear on the right.  I assume the 'Values position' needs to be set to 'Right' for this?  Changing this value to any of the options makes no difference to the position of the values on the bars.  Is there something I am doing wrong?<br />
<br />
As a second, slightly more complicated question is it possible to replace the values with images?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?80-Community-Tools-CTools">Community Tools - CTools</category>
			<dc:creator>fatbob</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95295-CCC-Bar-chart-values-position-not-working</guid>
		</item>
		<item>
			<title>When will we get support for external stylesheets?</title>
			<link>http://forums.pentaho.com/showthread.php?95291-When-will-we-get-support-for-external-stylesheets&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 13:01:39 GMT</pubDate>
			<description><![CDATA[There are many posts about "Does PRD have CSS support?", external stylesheets, etc. I read the argument that PRD handles styles slightly different...]]></description>
			<content:encoded><![CDATA[<div>There are many posts about &quot;Does PRD have CSS support?&quot;, external stylesheets, etc. I read the argument that PRD handles styles slightly different than CSS ... ok, fine, but why does this prevent somebody from creating a PRD version of external stylesheets as a first step? JasperReports and BIRT have their own version of external style sheets as well, so why can PRD not have it? Frankly, maintaining many reports without external stylesheets is a pain. Also, redefining the same style for every element within one report is even time consuming [yeah, I know, there is the copy format function, but it's not the same]. So, if there is no JIRA case yet [which I doubt] I am happy to create one. Please let me know.<br />
Thanks,<br />
Diddy</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>diddy</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95291-When-will-we-get-support-for-external-stylesheets</guid>
		</item>
		<item>
			<title>untraceable unwanted filtering of records in table output step on my pc</title>
			<link>http://forums.pentaho.com/showthread.php?95284-untraceable-unwanted-filtering-of-records-in-table-output-step-on-my-pc&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 10:01:32 GMT</pubDate>
			<description>Hi all, I am loading data from a file (csv or xls), and some fields contain numbers with decimal places, like 0,5 (dutch format). On the input step I...</description>
			<content:encoded><![CDATA[<div>Hi all, I am loading data from a file (csv or xls), and some fields contain numbers with decimal places, like 0,5 (dutch format). On the input step I assign the number field type (length 3, precision 2) to it, format #.#. When I do a preview I see all rows: some containing values like 0,5 and some are 0,0.   The output table writes these records to the table; the relevant field has numeric (3,2) datatype.   When I run my job it shows that all records of the input files have been succesfully written to the output tabel. However the table contains only those records that contain numbers like 0,0. They show up like just '0' in the table.  Here comes a weird thing: this problem only occurs on my pc. When I run the job on my collegue's pc it processes al records just fine. We both use a windows 7 SP 1 machine, and have the same regional settings for numbers etc.  Why are the records with the 0,5 value skipped on my pc? ANy ideas would be greatly appreciated.  Cheers Michiel</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>michieliooo</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95284-untraceable-unwanted-filtering-of-records-in-table-output-step-on-my-pc</guid>
		</item>
		<item>
			<title>Mondrian 3.4.1, Schema Workbench and Agg Designer stable available on SourceForge</title>
			<link>http://forums.pentaho.com/showthread.php?95274-Mondrian-3-4-1-Schema-Workbench-and-Agg-Designer-stable-available-on-SourceForge&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 04:36:38 GMT</pubDate>
			<description>Stable Builds of Mondrian, Schema Workbench and Aggregation Designer have been published on SourceForge.net and are available for download.   
...</description>
			<content:encoded><![CDATA[<div>Stable Builds of Mondrian, Schema Workbench and Aggregation Designer have been published on SourceForge.net and are available for download.  <br />
<br />
Please try them out, <a href="http://jira.pentaho.com" target="_blank">report bugs</a> and give feedback.  <br />
<br />
<ul><li style="">Mondrian 3.4.1-stable - <a href="http://sourceforge.net/projects/mondrian/files/mondrian/mondrian-3.4.1/" target="_blank">Download</a> - <a href="http://jira.pentaho.com/secure/ReleaseNote.jspa?projectId=10167&amp;version=11370" target="_blank">Change Log</a></li><li style="">Schema Workbench 3.4.1-stable - <a href="http://sourceforge.net/projects/mondrian/files/schema%20workbench/3.4.1-stable/" target="_blank">Download</a> - <a href="http://jira.pentaho.com/secure/ReleaseNote.jspa?projectId=10168&amp;version=11355" target="_blank">Change Log</a></li><li style="">Pentaho Aggregation Designer 1.4.0-stable - <a href="https://sourceforge.net/projects/mondrian/files/aggregation%20designer/1.4.0-stable/" target="_blank">Download</a> - <a href="http://jira.pentaho.com/secure/ReleaseNote.jspa?projectId=10061&amp;version=11234" target="_blank">Change Log</a></li><li style="">Release Notes - <a href="http://sourceforge.net/projects/mondrian/files/mondrian/mondrian-3.4.1/CHANGES.txt/download" target="_blank">Download</a></li></ul><br />
<br />
<b>Stable builds</b> represent the final stage of development for a Community Edition (CE) release. The term stable refers to a version of software that has been through enough community testing to reasonably assume there are no showstopper problems, or at least that any problems are known and documented. If you are going to put a CE release into production, you will want to use a stable build.<br />
<br />
<i>CE builds are not supported by Pentaho.  If you require support or enterprise features, Pentaho Enterprise Edition (EE) may be the right chioce for you.  EE evaluation software may be downloaded from <a href="http://www.pentaho.com/download" target="_blank">http://www.pentaho.com/download</a>. Pentaho Enterprise Editions extend Pentaho's open source business intelligence (BI) capabilities with additional software and support designed to save your organization time and resources.</i><br />
<br />
FYI - Also posted:<br />
Pentaho BI Suite 4.5 Stable:<br />
<a href="http://forums.pentaho.com/showthread.php?p=281519#post281519" rel="nofollow">http://forums.pentaho.com/showthread.php?p=281519</a><br />
<br />
Pentaho Data Integration 4.3.0 Stable:<br />
<a href="http://forums.pentaho.com/showthread.php?p=281532#post281532" rel="nofollow">http://forums.pentaho.com/showthread.php?p=281532</a><br />
<br />
Pentaho Reporting engine and SDK 3.9.0 Stable:<br />
<a href="http://forums.pentaho.com/showthread.php?p=281522#post281522" rel="nofollow">http://forums.pentaho.com/showthread.php?p=281522</a><br />
<br />
<br />
Doug</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?79-Mondrian-Pentaho-Analysis-Services"><![CDATA[Mondrian [Pentaho Analysis Services]]]></category>
			<dc:creator>dmoran</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95274-Mondrian-3-4-1-Schema-Workbench-and-Agg-Designer-stable-available-on-SourceForge</guid>
		</item>
		<item>
			<title>Jfreechart Combined chart in Report Designer</title>
			<link>http://forums.pentaho.com/showthread.php?95272-Jfreechart-Combined-chart-in-Report-Designer&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 04:09:46 GMT</pubDate>
			<description>Hi, 
 
Is report designer support the combined chart that two chart share a common domain axis (x-axis)?  This chart is available in Jfreechart...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Is report designer support the combined chart that two chart share a common domain axis (x-axis)?  This chart is available in Jfreechart library.<br />
<br />
<br />
Thank you for your advice.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>richardgear</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95272-Jfreechart-Combined-chart-in-Report-Designer</guid>
		</item>
		<item>
			<title>Reading parameter value in Chart Post-Processing Script</title>
			<link>http://forums.pentaho.com/showthread.php?95271-Reading-parameter-value-in-Chart-Post-Processing-Script&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 03:56:58 GMT</pubDate>
			<description>Hi, 
 
Can the Chart Post-Processing Script access the parameter value defined in Report Designer? If yes, how? 
 
 
Thank you.</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Can the Chart Post-Processing Script access the parameter value defined in Report Designer? If yes, how?<br />
<br />
<br />
Thank you.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>richardgear</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95271-Reading-parameter-value-in-Chart-Post-Processing-Script</guid>
		</item>
		<item>
			<title>PDI/Kitchen is running...but not running???</title>
			<link>http://forums.pentaho.com/showthread.php?95270-PDI-Kitchen-is-running-but-not-running&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 03:51:53 GMT</pubDate>
			<description><![CDATA[Ok...oddest thing, and I'm trying to pinpoint where the problem is.  
 
I have several ETL jobs that need running at the end of the day. According to...]]></description>
			<content:encoded><![CDATA[<div>Ok...oddest thing, and I'm trying to pinpoint where the problem is. <br />
<br />
I have several ETL jobs that need running at the end of the day. According to my set logs, everything ran like clockwork. I set the time at 1:10am. Ok right? When I come in at 9am, I check the data if the system was able to load the data. Oddest thing is that there is no data loaded. I check the logs, its all said it was loaded, but it really wasn't so I ran the ETL to load. Loads successfully, data ok.<br />
<br />
I set the time to 4:30am and 7:30am in subsequent days. Problem remains the same. I keep loading manually. Can anyone give me an idea why this is happening? Please? Thanks.<br />
<br />
Take note, network accesses are ok, considering I don't do any changes when I run it manually. I'm at a loss as to why this is happening.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>rider555</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95270-PDI-Kitchen-is-running-but-not-running</guid>
		</item>
		<item>
			<title>Open Formula - issues with null values</title>
			<link>http://forums.pentaho.com/showthread.php?95266-Open-Formula-issues-with-null-values&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 02:13:58 GMT</pubDate>
			<description>I have a table which lists customers in the first column and then their sales for each month in the following columns. I have set up total sums on...</description>
			<content:encoded><![CDATA[<div>I have a table which lists customers in the first column and then their sales for each month in the following columns. I have set up total sums on the bottom of the page to calculate the total of each column (ie the total sales each month). I am now trying to create a total sum that will add up the values across a row, to show the total sales for the customer for the last year. I am using the 'open formula' function, using the =SUM() expression and then filling in the fields I want summed together.<br />
<br />
If all of the fields have a value then it adds them together as expected. However many of these fields are actually going to be empty, where there are no sales for a customer for a month. On these lines the sum returns nothing. It seems even if some fields have a value in it, if even one field is null it will not give a summed amount. I have tried setting the 'if-null' property on the fields I am summing together to 0 but it has no effect. I have also included the NVR() command in my select statement to force null values to appear as 0s. This has not worked either.<br />
<br />
Can anyone assist with this problem?</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>jcags</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95266-Open-Formula-issues-with-null-values</guid>
		</item>
		<item>
			<title>Better Data for Better Analytics</title>
			<link>http://forums.pentaho.com/showthread.php?95263-Better-Data-for-Better-Analytics&amp;goto=newpost</link>
			<pubDate>Wed, 09 May 2012 01:10:28 GMT</pubDate>
			<description><![CDATA[Image: http://www.ibridge.be/images/app-icon-hires.png  
Dear Kettle friends, 
Thursday May 10th, in a few days, I&#8217;ll be joining my friend...]]></description>
			<content:encoded><![CDATA[<div><img src="http://www.ibridge.be/images/app-icon-hires.png" border="0" alt="" /><br />
Dear Kettle friends,<br />
Thursday May 10th, in a few days, I&#8217;ll be joining my friend Kasper Sørensen (the founder and lead architect of <a href="http://datacleaner.eobjects.org" target="_blank">DataCleaner</a>, a <a href="http://www.humaninference.com" target="_blank">Human Inference</a> data profiling project) in our web seminar (webinar).  We&#8217;ll be going over a bit of history, our cooperation model as well as the architecture behind the new data quality features.<br />
<b><u>Register here</u></b>: <a href="http://www.pentaho.com/resources/events/20120510-better-data-for-better-analytics/" target="_blank">http://www.pentaho.com/resources/eve...ter-analytics/</a><br />
Kasper will also be doing 3 cool live demos on the subjects of data profiling and data quality.<br />
I hope you&#8217;ll be able to <a href="http://www.pentaho.com/resources/events/20120510-better-data-for-better-analytics/" target="_blank">join the crowd</a> this <b>Thursday May 10th, 10am PST (Los Angeles), 1pm EST (New York) or 7pm CET (Brussels).</b><br />
We&#8217;ll be doing our best to answer your data quality questions simultaneously with the presentation.<br />
See you there!<br />
Cheers,<br />
Matt<br />
<br />
<br />
<a href="http://www.ibridge.be/?p=209" target="_blank">More...</a></div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?147-Matt-Casters">Matt Casters</category>
			<dc:creator>MattCasters</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95263-Better-Data-for-Better-Analytics</guid>
		</item>
		<item>
			<title>Ayuda esquemas mondrian y MDX</title>
			<link>http://forums.pentaho.com/showthread.php?95256-Ayuda-esquemas-mondrian-y-MDX&amp;goto=newpost</link>
			<pubDate>Tue, 08 May 2012 21:45:59 GMT</pubDate>
			<description>Hola, 
 
soy novata en la creación de esquemas mondrian que posteriormente voy a visualizar con Jpivot y me surgen unas dudas. 
 
- si yo tengo una...</description>
			<content:encoded><![CDATA[<div>Hola,<br />
<br />
soy novata en la creación de esquemas mondrian que posteriormente voy a visualizar con Jpivot y me surgen unas dudas.<br />
<br />
- si yo tengo una tabla de hechos con datos de varios fechas (dd-mm-aaaa), y quiere crear un esquema con los datos de una año concreto. Como la fecha va a ser una dimensión de mi cubo, ¿cómo especifico en el esquema el año concreto? ¿O es algo que debe especificar en otro fichero una vez publicado el cubo con sentencias MDX?<br />
<br />
Muchas gracias.</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?277-Análisis">Análisis</category>
			<dc:creator>lauradvf</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95256-Ayuda-esquemas-mondrian-y-MDX</guid>
		</item>
		<item>
			<title>Trying to bridge two tables.</title>
			<link>http://forums.pentaho.com/showthread.php?95254-Trying-to-bridge-two-tables&amp;goto=newpost</link>
			<pubDate>Tue, 08 May 2012 21:05:34 GMT</pubDate>
			<description>Have three tables. Reading from 3 CSVs. Two have different information(client name and carrier code) and one  has information from both client name...</description>
			<content:encoded><![CDATA[<div>Have three tables. Reading from 3 CSVs. Two have different information(client name and carrier code) and one  has information from both client name and carrier code, plus more.<br />
<br />
I want to put these CSVs into 3 different databases and have the third one have two foreign keys pointing to the other tables (using their auto_incremented id as the FK values). <br />
<br />
I tried populating the three tables and doing just big UPDATE WHERE clause with SQL Script but that takes waaay to long. <br />
<br />
Is there a step where I can just simply bridge two tables like this? Which step is it? I'm looking though the steps and can't find anything. Is using the SQL code my only option?<br />
<br />
Thank you!</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>concordus</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95254-Trying-to-bridge-two-tables</guid>
		</item>
		<item>
			<title>Possible BUG 3.9 PRD CDA DataSource (No lawsuits)</title>
			<link>http://forums.pentaho.com/showthread.php?95253-Possible-BUG-3-9-PRD-CDA-DataSource-(No-lawsuits)&amp;goto=newpost</link>
			<pubDate>Tue, 08 May 2012 21:04:07 GMT</pubDate>
			<description>The CDA DataSource seems to have issues with parameters when they are not strings.  This particular error returns when the parameters are Numeric. ...</description>
			<content:encoded><![CDATA[<div>The CDA DataSource seems to have issues with parameters when they are not strings.  This particular error returns when the parameters are Numeric.  When the CDA parameters are changed to &quot;String&quot; there is no issue.<br />
<br />
org.pentaho.reporting.engine.classic.core.ReportDataFactoryException: For parameter p_week_1 Expected number, but got class java.lang.String<br />
    at org.pentaho.reporting.engine.classic.extensions.datasources.cda.CdaQueryBackend.parameterToString(CdaQueryBackend.java:96)<br />
    at org.pentaho.reporting.engine.classic.extensions.datasources.cda.CdaQueryBackend.queryData(CdaQueryBackend.java:253)<br />
    at org.pentaho.reporting.engine.classic.extensions.datasources.cda.CdaDataFactory.queryData(CdaDataFactory.java:170)<br />
    at org.pentaho.reporting.ui.datasources.cda.CdaDataSourceEditor$CdaPreviewWorker.run(CdaDataSourceEditor.java:254)<br />
    at java.lang.Thread.run(Unknown Source)</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?78-Pentaho-Reporting">Pentaho Reporting</category>
			<dc:creator>flamierd</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95253-Possible-BUG-3-9-PRD-CDA-DataSource-(No-lawsuits)</guid>
		</item>
		<item>
			<title>File Exists step</title>
			<link>http://forums.pentaho.com/showthread.php?95252-File-Exists-step&amp;goto=newpost</link>
			<pubDate>Tue, 08 May 2012 21:00:37 GMT</pubDate>
			<description>I have a working KTR which uses *Get file names* to read in a series of Source files and passes the results to a *File exists* step.  I attached both...</description>
			<content:encoded><![CDATA[<div>I have a working KTR which uses <font color="#0000FF"><b><i>Get file names</i></b></font> to read in a series of Source files and passes the results to a <font color="#0000FF"><i><b>File exists</b></i></font> step.  I attached both a <font color="#008000"><i><b>Copy rows to result</b></i></font> and <font color="#006400"><i><b>Abort step</b></i></font> to <font color="#0000FF"><i><b>File exists</b></i></font> so, if no files are found, my KTR terminates gracefully rather than fails.  Is there a way to have the Abort stream write some message to a &quot;dedicated&quot; log file, or send an e-mail message?  I have included text in the &quot;Abort message&quot; field but would rather have a specific &quot;no files found&quot; log, if possible.<br />
<br />
Thank you!<br />
~Ben</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?135-Pentaho-Data-Integration-Kettle"><![CDATA[Pentaho Data Integration [Kettle]]]></category>
			<dc:creator>cnv_Ben</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95252-File-Exists-step</guid>
		</item>
		<item>
			<title>Looking for TimeSeriesForecasting plugin source</title>
			<link>http://forums.pentaho.com/showthread.php?95251-Looking-for-TimeSeriesForecasting-plugin-source&amp;goto=newpost</link>
			<pubDate>Tue, 08 May 2012 20:59:10 GMT</pubDate>
			<description><![CDATA[I would like to make some modifications to the TimeSeriesForecasting source. Can someone point me to the source repo? I've found the maven repos...]]></description>
			<content:encoded><![CDATA[<div>I would like to make some modifications to the TimeSeriesForecasting source. Can someone point me to the source repo? I've found the maven repos (with source) but I also need build tool artifacts.<br />
<br />
Thanks <br />
- Bob</div>

]]></content:encoded>
			<category domain="http://forums.pentaho.com/forumdisplay.php?81-Pentaho-Data-Mining-WEKA"><![CDATA[Pentaho Data Mining [WEKA]]]></category>
			<dc:creator>Bob Cotton</dc:creator>
			<guid isPermaLink="true">http://forums.pentaho.com/showthread.php?95251-Looking-for-TimeSeriesForecasting-plugin-source</guid>
		</item>
	</channel>
</rss>

