<?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>Applied dimensionality &#187; ibm</title>
	<atom:link href="http://ykud.com/blog/category/ibm/feed" rel="self" type="application/rss+xml" />
	<link>http://ykud.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 19 Jul 2010 07:48:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Oracle BI Enterprise Edition vs Cognos BI</title>
		<link>http://ykud.com/blog/cognos/oracle-bi-enterprise-edition-vs-cognos-bi</link>
		<comments>http://ykud.com/blog/cognos/oracle-bi-enterprise-edition-vs-cognos-bi#comments</comments>
		<pubDate>Mon, 01 Feb 2010 13:12:43 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[bi]]></category>
		<category><![CDATA[cognos]]></category>
		<category><![CDATA[essbase]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=255</guid>
		<description><![CDATA[Since I've spent some time working with Oracle Business Intelligence last year, I think I'd write a simple comparison list of strengths\weaknesess of OraBI EE vs Cognos (see post on the same topic by Venkatakrishnan). All of this is imho, of course. Oracle BI EE Pro's: 1) Aggregate navigation -- ability to set up aggregate [...]]]></description>
			<content:encoded><![CDATA[<p>Since I've spent some time working with Oracle Business Intelligence last year, I think I'd write a simple comparison list of strengths\weaknesess of OraBI EE vs Cognos (see post on the same topic by  <a href="http://www.rittmanmead.com/2009/12/07/introduction-to-ibm-cognos-8-business-intelligence/">Venkatakrishnan</a>). All of this is imho, of course.</p>
<h2>Oracle BI EE Pro's:</h2>
<h3>1) Aggregate navigation</h3>
<p>-- ability to set up aggregate tables in BI EE itself, which gives it 'aggregate awareness' while generating SQL. So if you have monthly sales aggregate you just set up BI metadata accordingly and all reports will target this table for monthly data.<br />
There's no such feature in Cognos metadata setting.<br />
But using this feature arises some questions:<br />
a) whether aggregate definition should be BI-tool specific. A lot of practioners, including Kimball, insist that aggregate navigator should reside at database level so that every tool querying datawarehouse will benefit from aggregate avalaibility. This seems rather reasonable, since every datawarehouse is usually queried by more than one analytical application (BI, datamining, more BI) so you either direct all applications to BI EE, or agree to performance degradation.<br />
b) aggregate tables desynch. When you just update the base fact table, aggregate tables become "out of synch", providing <strong>incorrect query results</strong> untill they're recalculated. This means that you either can guarantee that nobody will access reports in this period, or you can have incorrect data. Since more&amp;more datawarehouses squezee load windows to reach real-time this problem gains priority.<br />
c) choosing which agregate to use for answering questions. That's what statistics is all about in dbms, knowing number of rows and value distribution (lol). Oracle BI EE has the "table row count" feature (although I haven't seen it affect SQL generation yet, need more examples). But there's no value distribution analysis in there, so it's just one side of the coin (not talking about I\O device speed and other characteristics).</p>
<p>In general, it's recommended to use database-specific aggregate table functionality (Oracle Materialized Views or DB2 MQT) since it solves all the 3 questions given above and usually simplifies ETL process (and sometimes even speeds it up, since databases use their own transaction logs to detect what data has changed and what aggregates should be rebuilt). Too bad indexed views in Ms SQL do not work with aggregate dimensions (there's no way to define dimension hierachies there).</p>
<h3>2) Cache management</h3>
<p>-- OraBI has really profound cache management facility. You can "cache" any database query to OraBI specific storage structure (cache file), wich will allow subsequent queries to the same table\query to run without actual database request being made. This can greatly speed things up. I especially like the Event Polling Table feature: you add a table, which records when dwh table was last updated. OraBI then reads at given intervals and automatically invalidates old cache entries, based on this table records.<br />
Moreover, if you have OraBI cluster this cache can be shared among servers.</p>
<p>There isn't anything even close in Cognos.</p>
<p>Although I greatly like this feature, I just want to warn about overusing it. It's easy to imagine BI developers boosting performance by adding more&amp;more cache untill OraBI becomes a fully blown aggregate system. And sometimes it's just about 1 aggregate table at the dwh level ) Or about introducing OLAP server in the enviroment )))</p>
<h3>3) SQL generation.</h3>
<p>It's tricky subject, but for now I like OraBI generated SQL more. But it's "apples to oranges" for sure, since I usually use DMR's in Cognos which encumbers SQL greatly and there's nothing identical in OraBI EE.</p>
<h2>Oracle BI EE Con's:</h2>
<h3>1) Multidimensionality</h3>
<p>Cognos has Analysis studio and the ability to navigate hierarchies in both directions (you won't believe it, but in OraBI there's no 'Drill-Up', only'Drill-Down'). And DMR's and analytical functions (but their usage is a bit annoying, as it seems now, hope to write about it later). Anyway, Cognos is way much more 'multidimensionally-ready' than OraBI.</p>
<p>OraBI + Essbase is a work in progress and has a huge number of caveats (some fixed by patches, some not, some introduced). And the only way to use all Essbase functionality is to write direct MDX via Evaluate functions. That's a big problem, since it's hard for us to suggest OraBI on top of Essbase for now (till 11g once again). The only alternative is Visual Explorer, which is a very good tool, but it for top-analysts only (thick client, costly).</p>
<h3>2) Metadata model development</h3>
<p>Instead of OraBI's 'only-star schema', '3 layers of model' Cognos FM Manager doesn't impose any design principles, which allows more mistakes, but it makes some things way more simple. One of the first things I wanted to do in OraBI was a report using just a single table.  Well that's a really funny exercise (see <a href="http://www.rittmanmead.com/2009/11/10/oracle-bi-ee-10-1-3-4-1-single-table-repository-design-part-1/">posts</a> over here) if a star schema is a must.</p>
<p>But the main problem is the lack of API for metadata changing and browsing. There's <a href="http://dylanwan.wordpress.com/2007/10/22/udml-in-oracle-bi-server/">udml</a>, but it's not supported officially. Therefore all current integration scripts (like adding users, merging repositories and working with hierarchy depth changes) are out of the law. Which doesn't stop anyone, but is pretty annoying.</p>
<h3>3) Pixel-perfect reports</h3>
<p>Oracle BI Publisher is a specific tool, aimed at generating a huge number of formatted reports, based on XML format definition files. It wasn't a part of Siebel BI, so 'integration stitches' still stand out. It's a nice tool, but it certainly lacks web-interface ) Therefore in Oracle BI there's a deep distinction between a simple formatted report (with lots of possible logic in it) and making this report 'printer-friendly' since for the latter you basically have to start from scratch by opening Ms Word )  This will change in 11g as they say )</p>
<p>Having said all that, I really wait for Oracle BI 11g edition to start using it with Essbase and I kinda like the product as it is for "relational-only" reporting.</p>
<p>I surely wanted to write a simple bullet point list at first )</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/cognos/oracle-bi-enterprise-edition-vs-cognos-bi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Memory leaking in Cognos 8.3 BI</title>
		<link>http://ykud.com/blog/cognos/memory-leaking-in-cognos-8-3-bi</link>
		<comments>http://ykud.com/blog/cognos/memory-leaking-in-cognos-8-3-bi#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:19:50 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[bi]]></category>
		<category><![CDATA[cognos]]></category>
		<category><![CDATA[ibm]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=252</guid>
		<description><![CDATA[You know why i've started this blog in the first place? To get advice, of course. And today DesiCresnet shared a wonderfull piece of information concerning memory troubles in BI 8.3. Those who aren't struck by occasional CAM-AAA-0071 “An internal error occurred” which stops the whole server can skip this post. This error was discussed [...]]]></description>
			<content:encoded><![CDATA[<p>You know why i've started this blog in the first place? To get advice, of course. And today DesiCresnet shared a <a href="http://ykud.com/blog/cognos/memory-leaking-in-contributor/comment-page-1#comment-20448">wonderfull piece of information</a> concerning memory troubles in BI 8.3.</p>
<p>Those who aren't struck by occasional CAM-AAA-0071 “An internal error occurred” which stops the whole server can skip this post.<br />
This error was discussed at:</p>
<p>http://www.ibm.com/developerworks/forums/thread.jspa?threadID=244357</p>
<p>http://www.cognoise.com/community/index.php?topic=4971.0</p>
<p>The story goes like this:<br />
- java.exe (that powers BI), grows up to the point where it cannot obtain contigious memory from server and crashes<br />
- Cognos BI doesn't recognize this error, so it throws out a general CAM-AAA-0071<br />
- Cognos BI is unaccessible until restart</p>
<p>This error occurs more often in heavy-usage enviroments. In one of our projects, with lots of Event triggered admin-links and reports, it took only a coulple of hours before it striked.</p>
<p>Solution is not complete, but as I see it now:<br />
1) Put the latest SP on BI (or a special hotfix, if one is avalaible)<br />
2) Lower the avalaible memory for Cognos BI service (to 768 mbs)<br />
3) Modify the <a href="http://support.microsoft.com/kb/315407">HeapDecommitFreeBlockThreshold</a> registry property</p>
<p>It's interesting if 8.4 is prone to such error.</p>
<p>PS: I'm a certified <a href="http://ykud.com/blog/about_me">Cognos Technical Specialist</a> now, as well. Need to get first-line support partnership, you know )</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/cognos/memory-leaking-in-cognos-8-3-bi/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Cognos 8 EP troubleshooting import data from package</title>
		<link>http://ykud.com/blog/cognos/cognos-8-ep-troubleshooting-import-data-from-package</link>
		<comments>http://ykud.com/blog/cognos/cognos-8-ep-troubleshooting-import-data-from-package#comments</comments>
		<pubDate>Thu, 06 Aug 2009 12:09:19 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[cognos]]></category>
		<category><![CDATA[ep cookbook]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[ep]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=248</guid>
		<description><![CDATA[Tip of the day: Having common metadata layer for BI and Enterprise Planning is really cool, especially with the ability to load data from BI packages to EP via links. Just that it sometimes doesn't work. But there are always some workarounds. With mostly very cryptical error messages or without any. One of the problems [...]]]></description>
			<content:encoded><![CDATA[<p>Tip of the day: Having common metadata layer for BI and Enterprise Planning is really cool, especially with the ability to load data from BI packages to EP via links. Just that it sometimes doesn't work. But there are always some workarounds.</p>
<p>With mostly very cryptical error messages or without any.<br />
One of the problems might be just that DataManager service (which does the transfer) cannot allocate enough memory for operation. This is what we've encountered just today. </p>
<p>Good news are that this parameter is easily configurable, you can just edit cognos_install_path\bin\dataimportserviceconfig.xml file and set JMX (Java maximum allocated memory) to something more appropriate than default 128M (1024 is a nice number, for example).</p>
<p>Try this if your links fail <img src='http://ykud.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>PS: In this 'wonderfull' Java world, setting JVMX is a common boost-up technique. And there's a lot of places to apply it. Think about Cognos Rich Client Platform (Cognos 8.4 Contributor) for start...</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/cognos/cognos-8-ep-troubleshooting-import-data-from-package/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Back from winter-sleep</title>
		<link>http://ykud.com/blog/bicpm/back-from-winter-sleep</link>
		<comments>http://ykud.com/blog/bicpm/back-from-winter-sleep#comments</comments>
		<pubDate>Sun, 01 Mar 2009 09:04:38 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[BI&CPM]]></category>
		<category><![CDATA[bi]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[cognos]]></category>
		<category><![CDATA[ep]]></category>
		<category><![CDATA[hyperion]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cognos certification]]></category>
		<category><![CDATA[essbase]]></category>
		<category><![CDATA[tm1]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=176</guid>
		<description><![CDATA[Okay, it has been almost half-a-year (oh, dears) since the last decent post on this blog. Russian one has suffered as well, I must note. Reasons vary, but mostly it's that I've been, you know, busy-busy. As I now start to reflect on it, it's always a point of view thing and a question of [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, it has been almost half-a-year (oh, dears) since the last decent post on this blog. Russian one has suffered as well, I must note.</p>
<p>Reasons vary, but mostly it's that I've been, you know, busy-busy. As I now start to reflect on it, it's always a point of view thing and a question of self-control and ability to say no )</p>
<p>But enough philosphy, brief recap on what happend while I was out "there" in real world. I'll divide this into two parts (by vendors ))</p>
<p><span id="more-176"></span></p>
<h2>Big Blue</h2>
<p>Made some POCs in autumn, nothing that special (some neat integration, but not cognos-related). Carried on a couple of projects with  EP+BI typicalities. All in all, nothing that new.</p>
<p>BUT I've finally completed the other certification path there is at Cognos\IBM, notably, the "BI Professional" road. It's a deal longer, as of now, you have to pass 3 "<a href="http://support.cognos.com/en/training/certification/role-based.html">role-based</a>" exams, 2 mandatory (Report Author and Metadata Model Developer) and one of you choice to get a chance of passing BI Pro exam. It's used to coast 10k, which could be cut down to reasonable 200$ if you attended a Cognos Workshop (which costed 2,5k), but thanks to IBM that's gone and now it's 200$ from the start. Just opened certifications link and I'm, frankly, quite surprised with new IBM names for old Cognos certifications. According to this I'm:</p>
<ul>
<li>IBM Certified Designer -- Cognos 8 BI Reports</li>
<li>IBM Certified Developer -- Cognos 8 BI Metadata Models</li>
<li>IBM Certified Developer -- Cognos 8 BI OLAP Models</li>
<li>IBM Certified Solution Expert -- Cognos 8 BI</li>
</ul>
<p>and it turns out I was an</p>
<ul>
<li>IBM Certified Solution Expert -- Cognos 8 Enterprise Planning</li>
</ul>
<p>instead of Cognos EP Professional.</p>
<p>Wording is something you cannot easily take from IBM ) Will put that list in about page, just to get more mail asking for exam questions.</p>
<p>Hint: In comparison with the old Modeler exam, current one is easier.</p>
<p>And in the first 2 months of this year we did a "nightmare-style" POC with EP + TM1 + BI, where I could finally get an idea of what TM1 really is and fully realize some ideas like incremental administration links and, therefore, "real-time" EP -&gt; TM1  data propagation. I'm planning to write about this in separate posts, though. And, boy, it was hard, and we flanked the final presentation due to me being ill and bla-bla, and I'm still recovering breath from this.</p>
<p>But enough about IBM, let's turn to</p>
<h2>Oracle</h2>
<p>We've made a really nice billion-facts cube with our colleagues from "SportMaster" and talked about it in exceeding detail on <a href="http://www.oracleclub.ru/techforum/">Russian Oracle Technical Forum 2008 </a>and Oracle BI Forum 2009. Essbase turned out to be a good engine for this kind of task and the moment when it finally kicked-in on 100gb dataset will retain as one of best in 2008. The fact that one of dimensions was a million rows parent-child didn't raise that much of a problem.</p>
<p>Moreover on another site we duly built dimension outline with around 30 mln members. Although duly is not the right word, "kicking and screaming" would be a better wording ) And the whole area of trying to tune something in underlying Berkeley DB is still open. But I must admit, an 8 gb outline file is really impressive.</p>
<p>So I've spent pretty much time toying around with essbase (except when I wasn't with TM1)). And I'm also a Hyperion Essbase 9.3 Developer Certified Expert (I won't enter Prometric for a while, I hope).</p>
<p>So it was a rather crowded time and I hope that nothing will stop me from blogging some details and future encounters. At least, I'd try my best to. Cheers to your patience, folks )</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/back-from-winter-sleep/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adaytum is back home, IBM buys Cognos</title>
		<link>http://ykud.com/blog/bicpm/adaytum-is-back-home-ibm-buys-cognos</link>
		<comments>http://ykud.com/blog/bicpm/adaytum-is-back-home-ibm-buys-cognos#comments</comments>
		<pubDate>Thu, 15 Nov 2007 19:48:34 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[BI&CPM]]></category>
		<category><![CDATA[cognos]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[m&a]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=190</guid>
		<description><![CDATA[There's a story I'd like to tell, especially funny in context with recent merger. I've found all this stuff (see links) about a year ago and I imagined the undocumented parts, it's not official. In deep 90s a great guy named George Kunzle lead the development of IBM internal budgeting system, called FREGI. It was [...]]]></description>
			<content:encoded><![CDATA[<p>There's a story I'd like to tell, especially funny in context with recent merger. I've found all this stuff (see links) about a year ago and I imagined the undocumented parts, it's not official.</p>
<p>In deep 90s a great guy named <a href="http://precision-point.com/Company/InvestorRelations/tabid/1783/Default.aspx">George Kunzle</a> lead the development of IBM internal budgeting system, called FREGI. <a href="http://www.vector.org.uk/archive/v151/bob.htm">It was written in APL and had very good UI, they say. </a></p>
<p>After some time, Kuntze quit IBM and left for good in the big open world, where he met Guy Haddleton, former SAS captain, <a href="http://www.istart.co.nz/index/HM20/PC0/PVC197/EX245/AR26399">at the time a CEO of 2-people company (with Kiwi Sue Strother)&nbsp; called Adaytum, based in Haddleton's appartament in Bristol</a>. Adaytum was selling rather cheap spreadsheet budgeting solutions. After some rewrite FREGI became Adaytum Analyst, leading product in the rapid-growing market. <br />
Later, Analyst was rewritten on dyalog apl, giving it a windows gui.</p>
<p>Soon they had to find out how to scale this system to enterprise level. And <a href="http://www.google.com/patents?id=WJ4SAAAAEBAJ&amp;dq=adaytum">there appeared Contributor</a>, giving every user a cut-version of analyst written in J (cause it's free of charge, maybe) and&nbsp; wrapped in ActiveX to sit in a browser nicely.<br />And then Adaytum was snapped by Cognos (it was Adaytum 3.0, and Contributor appeared in Adaytum 2.4 (i've started with that one)). A tough road of integration BI products with Adaytum was taken and now they are almost inseparable (at least we do not implement "ep only" anymore).</p>
<p>And now Big Blue snapped little Canadian and a loop tied.</p>
<p>I wonder, did anyone welcomed FREGI back?</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/adaytum-is-back-home-ibm-buys-cognos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
