<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Palo Insider</title>
	<atom:link href="http://www.paloinsider.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paloinsider.com</link>
	<description>Jedox CEO Kristian Raue about Palo Open-Source Business Intelligence</description>
	<lastBuildDate>Mon, 02 Aug 2010 08:31:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Olap4j talks Palo &#8211; finally</title>
		<link>http://www.paloinsider.com/palo/palo-talks-olap4j-finally/</link>
		<comments>http://www.paloinsider.com/palo/palo-talks-olap4j-finally/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 07:50:10 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Palo]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/palo-talks-olap4j-finally/</guid>
		<description><![CDATA[There are many things happening behind the scenes here in R&#38;D of Jedox. Besides keeping pace with release plan and supporting customer projects, our team also ensures to stay compatible with the trends outside. Few years ago, Julian Hyde, founder of the Mondrian project, asked if we would like to join his initiative of developing [...]]]></description>
			<content:encoded><![CDATA[<p>There are many things happening behind the scenes here in R&amp;D of Jedox. Besides keeping pace with release plan and supporting customer projects, our team also ensures to stay compatible with the trends outside. Few years ago, Julian Hyde, founder of the Mondrian project, asked if we would like to join his initiative of developing <a href="http://www.olap4j.org/" target="_blank">olap4j</a> &#8211; open Java API  for accessing OLAP data. You can look at it as JDBC of OLAP world.</p>
<p><a href="http://www.olap4j.org/" target="_blank"><img src="http://www.paloinsider.com/wp-content/uploads/2010/08/bild-7.jpg" alt="Bild" width="166" height="78" /></a></p>
<p>We agreed to join in although we had very few, if at all relation to it back then. Time has passed, we eventually developed our ODBO/MDX Provider on top of <a href="http://www.jedox.com" target="_blank">Palo OLAP Server</a> and olap4j slowly but steadily grew to unwritten standard. Last year, we&#8217;ve seen couple of applications emerging (e.g. Wabit) that already use olap4j and are able to connect to Palo.</p>
<p>Recently olap4j project announced that it will soon be reaching version 1.0. Vlado, our Head of R&amp;D used this opportunity to test it against Palo. Apparently there was not much work to do. He just checked out latest source code, built it and he was ready to write his first olap4j based application. He used provided &#8220;hello world&#8221; sample. All he had to do is to adjust connection string to match the properties of Palo XMLA endpoint.</p>
<p>This is how this sample looks like:</p>
<p>import java.io.PrintWriter;<br />
import java.sql.Connection;<br />
import java.sql.DriverManager;</p>
<p>import org.olap4j.CellSet;<br />
import org.olap4j.OlapConnection;<br />
import org.olap4j.OlapStatement;<br />
import org.olap4j.OlapWrapper;<br />
import org.olap4j.driver.xmla.XmlaOlap4jDriver;<br />
import org.olap4j.layout.RectangularCellSetFormatter;</p>
<p>public class PaloConnection {</p>
<p>&nbsp;&nbsp;public static void main(String[] args) throws Exception {<br />
&nbsp;&nbsp;&nbsp;&nbsp;Class.forName(&#8220;org.olap4j.driver.xmla.XmlaOlap4jDriver&#8221;);<br />
&nbsp;&nbsp;&nbsp;&nbsp;Connection connection =<br />
&nbsp;&nbsp;&nbsp;&nbsp;DriverManager.getConnection(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&#8221;jdbc:xmla:Server=http://localhost:4242;&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+ &#8220;User=&#8217;admin&#8217;;&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+ &#8220;Password=&#8217;admin&#8217;;&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+ &#8220;Catalog=FoodMart2005Palo;&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+ &#8220;Cube=Budget&#8221;);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;OlapWrapper wrapper = (OlapWrapper) connection;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;OlapConnection olapConnection = wrapper.unwrap(OlapConnection.class);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;OlapStatement statement = olapConnection.createStatement();</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;CellSet cellSet =<br />
&nbsp;&nbsp;&nbsp;&nbsp;statement.executeOlapQuery(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8221;SELECT {[store].[USA]} ON COLUMNS , {[Account].[1000]} ON ROWS\n&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+ &#8220;FROM [Budget]&#8220;);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;RectangularCellSetFormatter formatter =<br />
new RectangularCellSetFormatter(false);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;PrintWriter writer = new PrintWriter(System.out);<br />
&nbsp;&nbsp;&nbsp;&nbsp;formatter.format(cellSet, writer);<br />
&nbsp;&nbsp;&nbsp;&nbsp;writer.flush();<br />
&nbsp;&nbsp;&nbsp;&nbsp;statement.close();<br />
&nbsp;&nbsp;&nbsp;&nbsp;connection.close();<br />
&nbsp;&nbsp;}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/palo-talks-olap4j-finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPU Aggregation Algorithm Scales Well with Multiple GPUs</title>
		<link>http://www.paloinsider.com/palo/gpu-aggregation-algorithm-scales-well-with-multiple-gpus/</link>
		<comments>http://www.paloinsider.com/palo/gpu-aggregation-algorithm-scales-well-with-multiple-gpus/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 16:13:44 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[GPU]]></category>
		<category><![CDATA[In-Memory]]></category>
		<category><![CDATA[Palo]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/gpu-aggregation-algorithm-scales-well-with-multiple-gpus/</guid>
		<description><![CDATA[A few weeks ago, we had the chance to test the Palo GPU Accelerator on a HighStation 550 XLR8 with 8 Tesla C1060 GPUs provided by the French company Carri Systems. Eight is the current maximum number of GPUs that can fit on one motherboard (and there is only one type of motherboard capable of [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, we had the chance to test the Palo GPU Accelerator on a HighStation 550 XLR8 with 8 Tesla C1060 GPUs provided by the French company <a href="http://www.carri.com" target="_blank">Carri Systems</a>. Eight is the current maximum number of GPUs that can fit on one motherboard (and there is only one type of motherboard capable of holding 8 GPUs). Our main interest was how well the GPU aggregation algorithm would scale when more than 4 GPUs are used. In the upper part of the picture below you can see the 8 GPU Boards tightly fitted next to each other.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/06/bild-4.jpg" width="580" height="435" /></p>
<p>The figure below shows the performance scaling for the query performance with a real-world report and database from a prospective Jedox customer. As can be seen, performance scaling is almost linear for up to 4 GPUs and continues to scale to a speedup factor of 5.7 for 8 GPUs.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/06/bild-6.jpg" width="580" height="368" /></p>
<p>We think that Palo GPU performance scaling has no theoretical limit but is stopped only by<br />
(a) hardware limitations, i.e. the number of GPUs that can be used in one system<br />
(b) the cube size: cubes with very few filled cells will not benefit much from multiple GPUs<br />
(c) the specific queries sent to the server: queries that are &#8220;simple&#8221; in the sense that already fast cannot be further sped up<br />
The last point is most probably responsible for the slightly decreasing slope above 4 GPUs in our test. We have broken down the above analysis to each of the four individual PALO.DATAC queries in the test report (each querying a different cube), in order to see whether different queries scale differently.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/06/bild-5.jpg" width="580" height="375" /></p>
<p>As expected, some queries and/or cubes can benefit significantly more from multiple GPUs than others. The first query (Cube 1) scales extremely well until 7 GPUs, where a speedup factor of 6.4 is achieved, but seems to end there; the query on Cube 2 scales well until 8 GPUs, wheres for Cube 3 and Cube 4, scaling essentially stops after 4 GPUs (the last value of Cube 3 might be attributed to a measuring error). Note, however, that the latter two queries are already answered very fast (&lt; 100 ms) on 4 GPUs and hence any further speedup will not as noticeable as for the other two.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/gpu-aggregation-algorithm-scales-well-with-multiple-gpus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Brand new Palo Web Demo</title>
		<link>http://www.paloinsider.com/palo/brand-new-palo-web-demo/</link>
		<comments>http://www.paloinsider.com/palo/brand-new-palo-web-demo/#comments</comments>
		<pubDate>Thu, 27 May 2010 07:25:48 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Palo]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[google spreadsheet]]></category>
		<category><![CDATA[Microsoft office web apps]]></category>
		<category><![CDATA[Palo web]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/?p=220</guid>
		<description><![CDATA[Palo 3.1 is one of the rare business intelligence software that allows a completely web-based BI-process. Our new Palo Web Demo, which was published recently, showcases for the first time all the end-user-functionalities of Palo and gives everybody the opportunity to view our applications, to try the features and work online within the demo. You [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">Palo 3.1 is one of the rare </span><span style="font-size: small;">business intelligence software that allows a completely web-based BI-process. Our new Palo Web Demo</span><span style="font-size: small;">, which was published recently,</span> <span style="font-size: small;">showcases </span><span style="font-size: small;">for the first time </span><span style="font-size: small;">all the end-user-functionalities of Palo and </span><span style="font-size: small;">gives everybody the opportunity to </span><span style="font-size: small;">view our applications, to try the features and work online within the demo. </span><span style="font-size: small;">You do not need to install anything on your computer. </span><span style="font-size: small;">So here is the link: </span><a href="http://www.jedox.com/en/Demos/Online-Demos.html"><span style="text-decoration: underline;"><span style="font-size: small;">http://www.jedox.com/en/Demos/Online-Demos.html</span></span></a></p>
<p><span style="font-size: small;">For sure, everybody could download Palo for Excel or Palo Suite, </span><span style="font-size: small;">as we are offering Open Source software, </span><span style="font-size: small;">but</span><span style="font-size: small;"> some are not allowed to do so.  Company policies often permit downloading software. The demo democratizes Palo even more. Open Source Business Intelligence Software like Palo is democratic per se, </span><span style="font-size: small;">because everybody can download it for free. M</span><span style="font-size: small;">oney does not matter to access it</span><span style="font-size: small;"> and to use it, as there are no licences hindering the distribution of Palo within a firm</span><span style="font-size: small;">.</span></p>
<p><span style="font-size: small;">You might want to compare the Palo spreadsheet online with the new <a href="http://www.google.com/apps/intl/en/business/collaboration.html" target="_blank">Google docs spreadsheet</a></span> <span style="font-size: small;"> </span><span style="font-size: small;">and with <a href="http://www.microsoft.com/office/2010/en/office-web-apps/overview.aspx" target="_self">Mi</a></span><a href="http://www.microsoft.com/office/2010/en/office-web-apps/overview.aspx" target="_self"><span style="font-size: small;">crosoft Offi</span><span style="font-size: small;">ce Web Apps Excel </span></a><a href="http://www.microsoft.com/office/2010/en/office-web-apps/overview.aspx"><span style="text-decoration: underline;"><span style="font-size: small;"></span></span></a><span style="font-size: small;">. </span><span style="font-size: small;">(German speakers might also read: </span><a href="http://www.spiegel.de/netzwelt/web/0,1518,690521,00.html" target="_new"><span style="text-decoration: underline;"><span style="font-size: small;">www.spiegel.de/netzwelt/web/0,1518,690521,00.html</span></span></a><span style="font-size: small;"> )</span></p>
<p><span style="font-size: small;">In my opinion, we have done better than the</span><span style="font-size: small;"> Microsoft and Google. Palo is offering features both Microso</span><span style="font-size: small;">ft and Google don’t, such as dynaranges, microcharts or more general the connection between spreadsheet and OLAP-database. </span><span style="font-size: small;">I’m interested in your feedback – which spreadsheet do you like best, and why do you prefer it?</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/brand-new-palo-web-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palo Web on Android Smartphone</title>
		<link>http://www.paloinsider.com/palo/palo-web-on-android-smartphone/</link>
		<comments>http://www.paloinsider.com/palo/palo-web-on-android-smartphone/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:33:25 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo Suite]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/palo-web-on-android-smartphone/</guid>
		<description><![CDATA[Our IT got Android powered touch smartphone for testing. We used this oportunity to check how well Palo Web runs on it. Answer: very good. WebKit and 1GHz CPU make it possible to run just as good as on desktop PC without any changes. Would be nice to see some &#8220;optimized for mobile devices&#8221; applications.]]></description>
			<content:encoded><![CDATA[<p>Our IT got Android powered touch smartphone for testing. We used this oportunity to check how well Palo Web runs on it. Answer: very good. WebKit and 1GHz CPU make it possible to run just as good as on desktop PC without any changes. Would be nice to see some &#8220;optimized for mobile devices&#8221; applications.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/05/bild-3.jpg" width="580" height="361" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/palo-web-on-android-smartphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Gartner waves white flag on Excel in BI</title>
		<link>http://www.paloinsider.com/palo/paloexcel/gartner-waves-white-flag-on-excel-in-bi-2/</link>
		<comments>http://www.paloinsider.com/palo/paloexcel/gartner-waves-white-flag-on-excel-in-bi-2/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 16:30:27 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[In-Memory]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Palo for Excel]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/gartner-waves-white-flag-on-excel-in-bi-2/</guid>
		<description><![CDATA[Around 500 Million people around the world work with spreadsheets, most of them with Excel. Plenty of them use Excel workbooks for planning, analyzing and reporting. However, most BI vendors have tried for decades to convince users to give up Excel in favor of what they thought to be more functional and manageable BI tools. [...]]]></description>
			<content:encoded><![CDATA[<p>Around 500 Million people around the world work with spreadsheets, most of them with Excel. Plenty of them use Excel workbooks for planning, analyzing and reporting. However, most BI vendors have tried for decades to convince users to give up Excel in favor of what they thought to be more functional and manageable BI tools. Gradually, some BI vendors changed politics and offered integration with Excel, accepting Excel as a frontend. At the recent <a href="http://searchbusinessanalytics.techtarget.com/news/2240018042/Gartner-BI-Summit-Wave-the-white-flag-on-using-Excel-for-business-intelligence" target="_blank">Gartner BI Summit in Las Vegas</a>, the adversaries of Excel admitted failure: Gartner analysts and BI managers said that efforts to stop Excel BI use in its tracks were bound to fail and urged vendors and IT managers to make their peace with Excel as a BI tool. Managers who presented case stories stated &#8220;…the vast majority of end users &#8211; perhaps 90% &#8211; take data from the BI tools and export the information to Excel so they can work on it there&#8221;. Everybody is familiar with Excel, it is very flexible and easy to handle. Furthermore, Excel allows users to model ad-hoc queries or plan scenarios without technical skills but with fast results.</p>
<p>It is also stated that &#8220;the number of Excel BI users easily outstrips the combined total of people who are using the regular BI applications&#8221;.</p>
<p>That&#8217;s why Palo is not only designed for the so-called BI market but also for the multiple of people doing BI with Excel. Most of them are not even aware that doing reports and analyses with Excel could be called BI. So the BI market is much larger than it is usually thought to be. The circle with the doted line in the graph below shows the combined market of Palo both in the genuine BI market and in the spreadsheet market.</p>
<p><img src="http://www.paloinsider.com/wp-content/uploads/2010/04/bild1.jpg" alt="Bild" width="441" height="319" /></p>
<p>Of course, nobody would propose Excel as a stand-alone BI-solution. But Microsoft Excel-Add-ins like <a href="http://www.palo.net" target="_blank">Palo</a> offer central data storage and avoid the well known spreadsheet hell. Palo Suite allows Excel workbooks to be converted into web-based database applications. This helps combine the efficient development permitted by Excel applications with the advantages of web applications, which can otherwise take a lot of time and effort to implement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/paloexcel/gartner-waves-white-flag-on-excel-in-bi-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Besides increased performance, what’s new in Palo 3.1?</title>
		<link>http://www.paloinsider.com/jedox/besides-increased-performance-what%e2%80%99s-new-in-palo-3-1/</link>
		<comments>http://www.paloinsider.com/jedox/besides-increased-performance-what%e2%80%99s-new-in-palo-3-1/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 13:27:10 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Jedox]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo Suite]]></category>
		<category><![CDATA[Palo for Excel]]></category>
		<category><![CDATA[Excel Chaos]]></category>
		<category><![CDATA[GPU]]></category>
		<category><![CDATA[Open source BI]]></category>
		<category><![CDATA[Palo suite]]></category>
		<category><![CDATA[Performance Management]]></category>
		<category><![CDATA[Spreadsheet Hell]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/?p=201</guid>
		<description><![CDATA[We are proud about yesterday’s release of the new version Palo 3.1 , which brought a strong progression in performance. Users already called it “a much much (!) increase in speed” and “a dramatic increase in speed.”  The release included Palo for Excel 3.1 (including Palo OLAP 3.1), Palo Suite 3.1.(including Palo OLAP 3.1 , [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 101px"><a href="http://www.jedox.com/"><img class=" " title="Palo Suite 3.1" src="http://www.jedox.com/assets/images/veranstaltung/palobisuite.jpg" alt="Palo Suite 3.1" width="91" height="259" /></a><p class="wp-caption-text">Palo suite 3.1</p></div>
<p>We are proud about yesterday’s release of the new version Palo 3.1 , which brought a strong progression in performance. Users already called it “a much much (!) increase in speed” and “a dramatic increase in speed.”  The release included Palo for Excel 3.1 (including Palo OLAP 3.1), Palo Suite 3.1.(including Palo OLAP 3.1 , Palo ETL 3.1 and  Palo Web 3.1). Also part of the release was the first ramp up of Palo OLAP GPU. I have already written periodically about the incredible gain in speed by using GPU in Business Intelligence, so today I would like to focus on Palo 3.1 and pick a few highlights from the more than 50 new features Palo 3.1 is offering:</p>
<ul>
<li>New Styles for Palo for Excel. We refreshed the look and feel of the Paste View Style sheet. Take your style (The new styles are also available at the MyPalo community)</li>
<li>Palo Spreadsheet Auto-save and recovery. Like in Microsoft Office changed reports will be saved automatically and can be recovered from a previous saved version, e.g. if a connection to a Palo Spreadsheet gets lost during editing.</li>
<li>Enhanced User Management of Palo Web. New roles can be defined and used to setup security for Palo Web components and reports. For example: IT is supposed only to monitor and maintain the Palo ETL processes, so just assign the Palo ETL manager access to a group defined as IT, and all other Palo Web components will not be visible to them.</li>
<li>MyPalo Community integration. Palo Web and Palo for Excel are now able to store your MyPalo Community account. By this, while working in Palo, you can access advanced information through our MyPalo website.</li>
</ul>
<p>There loads of other features to make working with Palo more comfortable – Palo fully supports now Microsoft Internet Explorer 8, contains a new homepage button to get back to homepage with on click , offers extended chart configuration for Meter charts, or German and French interfaces for Palo Pivot, or automatic calendar generation for time dimensions, etc.</p>
<p>All new features are listed in the “What’s new in Palo 3.1” – guide, which is available under <a href="http://www.jedox.com/en/community/mypalo/my-palo-installation-first-steps.html">http://www.jedox.com/en/community/mypalo/my-palo-installation-first-steps.html</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/jedox/besides-increased-performance-what%e2%80%99s-new-in-palo-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palo for Excel &#8211; Elevator Pitch</title>
		<link>http://www.paloinsider.com/jedox/palo-for-excel-elevator-pitch/</link>
		<comments>http://www.paloinsider.com/jedox/palo-for-excel-elevator-pitch/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 11:16:43 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Jedox]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo for Excel]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/jedox/palo-for-excel-elevator-pitch/</guid>
		<description><![CDATA[We recently launched a new Palo website that is especially designed to attract Excel users to Palo. While our main website www.jedox.com continues to be the primary source of information about Jedox and Palo, www.palo.net is something like a 60 seconds elevator pitch about Palo for Excel. The website is targeting the technically oriented Excel [...]]]></description>
			<content:encoded><![CDATA[<p>We recently launched a new Palo website that is especially designed to attract Excel users to Palo. While our main website <a href="http://www.jedox.com" target="_blank">www.jedox.com</a> continues to be the primary source of information about Jedox and Palo, <a href="http://www.palo.net" target="_blank">www.palo.net</a> is something like a 60 seconds elevator pitch about Palo for Excel. The website is targeting the technically oriented Excel power user. Feel free to forward the link to <a href="http://www.palo.net" target="_blank">www.palo.net</a> to any Excel power user in your network.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-37.jpg" width="580" height="319" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/jedox/palo-for-excel-elevator-pitch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ribbon Toolbars in Palo Web 3.1</title>
		<link>http://www.paloinsider.com/palo/ribbon-toolbars-in-palo-web-3-1/</link>
		<comments>http://www.paloinsider.com/palo/ribbon-toolbars-in-palo-web-3-1/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:26:54 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo Suite]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/ribbon-toolbars-in-palo-web-3-1/</guid>
		<description><![CDATA[Palo Web 3.1 contains a lot of new features. Even if the final version of Palo Web 3.1 will not be published before the end of March, I would like to draw your attention to some of the features. In this post I will show the new ribbon elements as an optional replacement for the [...]]]></description>
			<content:encoded><![CDATA[<p>Palo Web 3.1 contains a lot of new features. Even if the final version of Palo Web 3.1 will not be published before the end of March, I would like to draw your attention to some of the features. In this post I will show the new ribbon elements as an optional replacement for the &#8220;old school&#8221; toolbar/menu bar. They are part of Palo Web 3.1, to see them now you have to download Palo Suite 3.1 Ramp up version on <a href="http://www.jedox.com" target="_blank">www.jedox.com</a>.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-32.jpg" width="580" height="425" /></p>
<p>The ribbon user interface was made popular with the release of MS Office 2007. It was developed with intention to increase productivity by better organising features into sets that are easier accessible and more often used. Benefits of the ribbon elements are somewhat controversial though &#8211; they are actually matter of taste &#8211; they are evolving a long tradition of menu/toolbar driven user interfaces. Therefore, unlike in MS Office, users in Palo Web can switch easily between the two interfaces (Options/Spreadsheet/Toolbar) and use the one they like the most: the classic menu with a toolbar or the new ribbon.</p>
<p>In the following screenshots you can see a selection of the ribbons you find in Palo Web.</p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-33.jpg" width="580" height="119" /></p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-34.jpg" width="455" height="124" /></p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-35.jpg" width="364" height="121" /></p>
<p><img alt="Bild" src="http://www.paloinsider.com/wp-content/uploads/2010/03/bild-36.jpg" width="412" height="120" /></p>
<p>You can download Palo Suite (Ramp Up) <a title="Download Link for Palo" href="http://www.jedox.com/de/download/Palo-Downloads/download.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/ribbon-toolbars-in-palo-web-3-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Parallel algorithms for Palo Cube Rules</title>
		<link>http://www.paloinsider.com/palo/parallel-algorithms-for-palo-cube-rules/</link>
		<comments>http://www.paloinsider.com/palo/parallel-algorithms-for-palo-cube-rules/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 17:21:01 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[GPU]]></category>
		<category><![CDATA[In-Memory]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo for Excel]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/palo/parallel-algorithms-for-palo-cube-rules/</guid>
		<description><![CDATA[In the previous weeks several people asked me, why Jedox so far is the only BI company that invests in the GPU technology. GPUs make sense when the speed of execution matters. And speed does matter for Palo users, especially when it comes down to financial planning and simulation. Whenever planning data or planning assumptions [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous weeks several people asked me, why Jedox so far is the only BI company that invests in the GPU technology. GPUs make sense when the speed of execution matters. And speed does matter for Palo users, especially when it comes down to financial planning and simulation.</p>
<p>Whenever planning data or planning assumptions are changed at the base level, all aggregations have to be recalculated as quickly as possible to get new consolidated results for a new planning scenario. To deliver this speed, already back in 2005 the Palo developers decided to use an in-memory technology for Palo, which by itself delivers more speed than a disk-based or relational approach.</p>
<p>Choosing in-memory was a wise decision and a lucky one as well, because GPU acceleration actually is only effective in an in-memory architecture (also including the graphic memory of a GPU). GPUs are not helping much on a hard disk or inside a relational database.</p>
<p>Recently I had an interesting conversation with Dr. Tobias Lauer from the Institute of Computer Science at the University of Freiburg. Tobias is one of the research genius behind Palo GPU and he explained how Palo benefits from the parallel algorithms that run in today&#8217;s GPUs. This is what I understood from him:</p>
<p>A parallel algorithm utilizes hardware architectures with multiple processing units (processors or processor cores) by executing simultaneously (= in parallel) individual steps of a program that would otherwise be computed sequentially. Depending on the number of available processors, one can distinguish multi-core <em>moderate parallelism</em> (e.g., 2-16 cores) and <em>massive parallelism</em> (hundreds or more processors).</p>
<p>The latter category includes modern GPUs, each consisting of several hundred processing units. Since all the individual processors of a GPU usually execute the same code at the same time, this architecture is suitable for <em>data-parallel</em> (the same operation on many different data) rather than <em>task-parallel</em> applications (different things to be executed simultaneously).</p>
<p>A very simple example from the business intelligence context would be the function</p>
<p><em>turnover(P) = quantity(P) x price (P)</em></p>
<p>for a product <em>P</em>. Instead of storing all three figures in the OLAP database, it is sufficient (and for reasons of memory requirement and data consistency even desirable) to save only the quantity and price for a product <em>P</em> and to calculate the turnover dynamically (by an Cube Rule) from those.</p>
<p>For the calculation of the total turnover of a whole group <em>W</em> of products, the equation <em>turnover(W) = quantity(W) x price (W)</em> will lead to a wrong result if <em>quantity(W)</em> is the cumulative total number of all goods and <em>price(W)</em> is the aggregated price. Hence, the individual turnover for each product in the group <em>W</em> must be calculated first, before they can finally be summed up (or, using Palo terminology: we have to use an N-rule). Sequential programs need to run each of the calculations after one another, roughly like this:</p>
<p>1. For each product <em>P</em> in <em>W</em> do (sequentially):<br />
a. Find the <em>quantity</em> and <em>price</em> of <em>P</em><br />
b. Multiply the two values<br />
c. Add that product to the <em>result<br />
</em>2. Return <em>result</em></p>
<p>Our new approach is to do these individual calculations in parallel, i.e. to calculate simultaneously. Graphics processors (GPUs) are ideal architectures for this: the same operation (here: multiplication) is executed on many different data sets (here: quantities and prices of all products). A bit over-simplified, our algorithm performs the following steps:</p>
<p>1. Find quantities and prices for all the products <em>P</em> in <em>W</em> <strong>simultaneously</strong>.<br />
2. Match these records so that <em>quantity</em> and <em>price</em> of the same product are placed next to each other (very quick through parallel sort)<br />
3. Multiply all related pairs (<em>quantity, price</em>) <strong>simultaneously</strong> and store the results in an array.<br />
4. Add up the array to get the overall <em>result</em> (very quickly by parallel reduce)<br />
5. Return <em>result</em></p>
<p>Unlike the above sequential algorithm, our parallel approach can perform two steps &#8211; finding data and multiplication &#8211; for all data sets almost simultaneously. The sorting and the final summation are accomplished by standard algorithms of parallel computing which are also very fast.</p>
<p>In initial tests we have seen very promising results, where our parallel approach has achieved significant speedups compared to the sequential algorithm currently used in Palo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/palo/parallel-algorithms-for-palo-cube-rules/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Palo adds &#8220;light&#8221; to BW</title>
		<link>http://www.paloinsider.com/jedox/palo-adds-light-to-bw/</link>
		<comments>http://www.paloinsider.com/jedox/palo-adds-light-to-bw/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 16:20:03 +0000</pubDate>
		<dc:creator>kristianraue</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[ETL]]></category>
		<category><![CDATA[In-Memory]]></category>
		<category><![CDATA[Jedox]]></category>
		<category><![CDATA[OLAP]]></category>
		<category><![CDATA[Palo]]></category>
		<category><![CDATA[Palo Suite]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://www.paloinsider.com/jedox/palo-adds-light-to-bw/</guid>
		<description><![CDATA[Even if Germany&#8217;s predominant SAP is not pursuing an Open Source strategy (yet*), SAP clients take a different position. Money matters, especially in midsized firms, in manufacturing, in commerce and quite badly in public administration. Lots of SAP users are looking for affordable, flexible alternatives to SAP BW, especially for planning, but also for reporting [...]]]></description>
			<content:encoded><![CDATA[<p>Even if Germany&#8217;s predominant SAP is not pursuing an Open Source strategy (yet*), SAP clients take a different position. Money matters, especially in midsized firms, in manufacturing, in commerce and quite badly in public administration. Lots of SAP users are looking for affordable, flexible alternatives to SAP BW, especially for planning, but also for reporting and analysis. In plain language, they are scanning the market for something like a &#8220;BW light&#8221;.</p>
<p>Palo OLAP Server can play this role. The latest release of the Palo Suite now has SAP interfaces SAP R/3 ERP (in addition to SAP BW Connector in the previous release). So with the new and enhanced Palo SAP connectivity, it is now no longer necessary to refer to SAP BW for OLAP analysis using SAP data. SAP R/3 and ERP system users who do not require full BW functionality can now use the Palo Suite and Palo SAP Connectivity as an easy and very flexible alternative to a BI platform which can be installed quickly and is ideal for use by professionals.</p>
<p><img src="http://www.paloinsider.com/wp-content/uploads/2010/01/bild-30.jpg" alt="Bild" width="580" height="515" /></p>
<p>With access to SAP BW and SAP R/3 ERP-systems, Palo can now be integrated optimally into SAP landscapes. SAP data is extracted simply and effectively at the table level or through a generic RFC /BAPI interface. The ETL process is fully modelled using a graphic web front-end. Details about the new Palo SAP Connectivity are available at: <a href="http://www.jedox.com/en/products/palo-sap-connectivity.html">http://www.jedox.com/en/products/palo-sap-connectivity.html</a></p>
<p>* which they could, since SAP makes 75% of their revenues with software related services</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paloinsider.com/jedox/palo-adds-light-to-bw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
