<?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; BI&amp;CPM</title>
	<atom:link href="http://ykud.com/blog/category/bicpm/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>BI system metadata impact analysis and what BI system APIs are for</title>
		<link>http://ykud.com/blog/bicpm/oracle/bi-system-metadata-impact-analysis-and-what-bi-system-apis-are-for</link>
		<comments>http://ykud.com/blog/bicpm/oracle/bi-system-metadata-impact-analysis-and-what-bi-system-apis-are-for#comments</comments>
		<pubDate>Wed, 19 May 2010 10:52:23 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[bi]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=356</guid>
		<description><![CDATA["Okay, this column in our BI metadata was supposed to be named Sales, not Sals. But when we change it, what will happen to the reports that were created, using this name? And how many reports use this column anyway? Maybe we shouldn't touch anything to keep things working..." Ever been in such situation? This [...]]]></description>
			<content:encoded><![CDATA[<div>"Okay, this column in our BI metadata was supposed to be named Sales, not Sals.</div>
<div>But when we change it, what will happen to the reports that were created, using this name? And how many reports use this column anyway? Maybe we shouldn't touch anything to keep things working..."</div>
<div>Ever been in such situation?</div>
<div>This question can be answered by opening each report and then looking at it's contents ) A horrible task indeed.</div>
<div>Actually, this is exactly what BI system API are made for. Using them you should be able to automagically look into each report and find whether this column is used in it.</div>
<div>And as usual in this 'BI system Needs and Means' series, let's look how it's done in IBM Cognos BI and Oracle BI.</div>
<h3>Cognos BI</h3>
<div>Cognos BI has had an SDK (Software Development Kit) since ReportNet (for more than 5 years already) and this 'long-time in market' allowed to develop a whole ecosystem of tools to breed on top of it.</div>
<div>Concerning the question at the start of the post -- there's:</div>
<div>Cognos Dynamic Report Updater -- a tool to replace change column in every report.</div>
<div><a href="http://www-01.ibm.com/support/docview.wss?uid=swg24021248">http://www-01.ibm.com/support/docview.wss?uid=swg24021248 </a></div>
<div>Moreover, look at whole bunch of tools, based on SDK:</div>
<div><a href="http://www-01.ibm.com/software/data/support/cognos_diagnostictools.html">http://www-01.ibm.com/software/data/support/cognos_diagnostictools.html</a></div>
<div>and tools, developed by third-party vendors:</div>
<div><a href="http://www.brightstarpartners.com/bspsoftware.php">http://www.brightstarpartners.com/bspsoftware.php</a></div>
<h3>Oracle BI</h3>
<div>In Oracle BI, finding such changes is somehow easier, since all reports are stored as xml files in presentation catalog folder. You just write a simple script that iterates on files, finds a string in file and reports back it's findings (or replaces this string with a new one). Sounds easy, but after spending a couple days at it, I'm not so sure anymore )</div>
<div>There are a few major point against this way</div>
<div>1) It's unsupported, there are no declared report modification API's, AFAIK, so you're scripting at your own sake. That would not be a big problem, if not:</div>
<div>2) Oracle BI presentation service adds a hash tag to report (and folder) names if they exceed 55 characters in length (see more on this topic here: <a href="http://obiee101.blogspot.com/2010/02/obiee-report-name-length.html">http://obiee101.blogspot.com/2010/02/obiee-report-name-length.html</a>).</div>
<div>2.1) If report's names are not in ASCII, they are converted to UTF-8 (but starting x symbol is replaced by #), so each non-ASCII symbol takes 5. So if you find file, containing desired string, you can only decode back first 9 letters of it's name -- report names are usually much longer than that. Therefore your searching capabilities are seriously limited.</div>
<div>2.2) Folder name hashing poses another problem if you're using Windows. It impossible to iterate through catalogcontaining hashes an # in it's name -- OS listing methods stop working. Hope that situation is better on Linux. An easy but entirely manual workaround is to rename catalog folders to numbers (1,2,3,4) before starting the script ant to rename it back after.</div>
<div>I totally wish that this situation will change in nearest future and there will be a simple Presentation Server API call that will bring report name from file name and vica versa.</div>
<div>As usual, if anyone is interested in scripts  I wrote for the task (python, as usual + vbs) -- ping me.</div>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/oracle/bi-system-metadata-impact-analysis-and-what-bi-system-apis-are-for/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multidimensional reporting functions in Cognos and Oracle</title>
		<link>http://ykud.com/blog/cognos/multidimensional-reporting-functions-in-cognos-and-oracle</link>
		<comments>http://ykud.com/blog/cognos/multidimensional-reporting-functions-in-cognos-and-oracle#comments</comments>
		<pubDate>Sun, 25 Apr 2010 17:47:32 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[cognos]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=305</guid>
		<description><![CDATA[As many of you already know I have a mixed attitude to Cognos BI DMRs (dimensionally modeled relational source) models: performance is allways a consideration, full-table scans are unpredictable there's always 'local processing' vs 'database only and some things not working' dilemma using multidimensional functions in reports is oh-so-hard to debug when they don't work in [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you already know I have a mixed attitude to Cognos BI DMRs (dimensionally modeled relational source) models:</p>
<ul>
<li>performance is allways a consideration, full-table scans are unpredictable</li>
<li> there's always 'local processing' vs 'database only and some things not working' dilemma</li>
<li> using multidimensional functions in reports is oh-so-hard to debug when they don't work in complex situations.</li>
</ul>
<div>Even after 4 years working with Cognos BI I still have to start multidimensional reports with simple cases to prove that functions work as I expect them to  (sigh).</div>
<p><br></p>
<div>BUT -- at least Cognos has those functions!</div>
<p><br></p>
<div>We've just spent more than a week trying to replicate members() function in Oracle BI project. Function is as simple as can be, it just returns all dimension members from all levels in a single list (see <a href="http://publib.boulder.ibm.com/infocenter/c8bi/v8r4m0/topic/com.ibm.swg.im.cognos.ug_fm.8.4.1.doc/ug_fm_i_sql-99.html#sql-99">documentation </a>on IBM site). And if you add measure to report -- correct totals will be calculated. Oracle BI has the dimension with levels and aggregations concept, but no such function, so you have to<a href="http://www.rittmanmead.com/2009/08/14/oracle-bi-ee-10-1-3-4-1-sub-totals-during-drills-conforming-dimensions"> turn over your head</a> to achieve this. Replicating dimension table in logical model as many times as there are levels seems the easiest solution.</div>
<p><br></p>
<div><img  title="sad_owl_eyes" src="http://ykud.com/blog/wp-content/uploads/2010/04/sad_owl_eyes1.jpg" align="left" />I'm really frustrated by this.</div>
<div>Definitely not the problem I'd like to spend time trying to solve  :(</div>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/cognos/multidimensional-reporting-functions-in-cognos-and-oracle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting BI system to Active Directory. Oracle BI vs IBM Cognos BI. Scripts to extract Active Directory information.</title>
		<link>http://ykud.com/blog/cognos/connecting-bi-system-to-active-directory-oracle-bi-vs-ibm-cognos-bi-scripts-to-extract-active-directory-information</link>
		<comments>http://ykud.com/blog/cognos/connecting-bi-system-to-active-directory-oracle-bi-vs-ibm-cognos-bi-scripts-to-extract-active-directory-information#comments</comments>
		<pubDate>Tue, 13 Apr 2010 06:00:31 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[bi]]></category>
		<category><![CDATA[cognos]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=295</guid>
		<description><![CDATA[I consider Single Sign-On setup through Active Directory(AD) a key point in every system's life. Up to this point -- it's just a PoC, a prototype or a department (10-20 users) level application. AD integration step is usually prosponed, because it's documented somewhere and there are much more important things to do, like showing that [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">I consider Single Sign-On setup through Active Directory(AD) a key point in every system's life.</div>
<div>Up to this point -- it's just a PoC, a prototype or a department (10-20 users) level application.</div>
<div id="_mcePaste">AD integration step is usually prosponed, because it's documented somewhere and there are much more important things to do, like showing that this system is of any value at all.</div>
<div id="_mcePaste">But adding an AD connection mean that system is rooted (even if lightly) in company's IT ecosystem.</div>
<div id="_mcePaste">There's always a dilemma on groups and rights storage:</div>
<div id="_mcePaste">1) You can use AD groups for BI level user rights. AD admins are usually against this, it means more work for them.</div>
<div id="_mcePaste">2) Just use AD as a user catalog and add all groups and rights information in BI system. This means introducing more work to BI administrators and adding potential security problems. Imagine if BI admin won't be notified of a person transfer from department to department or from sales to marketing. And why should BI administrator even care about that )</div>
<div id="_mcePaste">Pro's and cons of each way are easy to deduct and choice is always organization-dependent, so I won't stop on that and go right to complains section.</div>
<h2>Using Active Directory in Cognos and Oracle BI</h2>
<h3>Cognos</h3>
<div>About a year ago we had a PoC on Cognos, where the requirement was to not just common "users and groups", but also we had to use custom created AD properties for data filtering.</div>
<div id="_mcePaste">It's easy to do in Cognos 8 BI: you just add Framework Manager macro that returns this property. Piece of cake really. And it turned out to be hard for our competitors.</div>
<div id="_mcePaste"><a href="http://www-01.ibm.com/support/docview.wss?uid=swg21341035">Description on IBM portal</a>, historical number --  1027162</div>
<h3>Oracle</h3>
<div id="_mcePaste">Recently I've had to do the same with Oracle BI and it turned out that Oracle BI's current integration with Active Directory is pretty basic. The only way to communicate with AD is authentificate users through it, there's no way to access User groups or custom properties (there is a way, but it requieres changing ActiveDirectory, which isn't good at all). See Metalink note on this subject: 544828.1</div>
<div id="_mcePaste">So there's no built-in way in OraBI to get all those delicious groups and other properties. But there's always a way out called scripting )</div>
<h2>Extracting Active Directory information to csv</h2>
<div id="_mcePaste">You can write a script that will extract needed information from Active Directory to a csv file and then schedule it for nightly extracts, load it into a table and use this table in Oracle BI security variables. This is a reliable solution, but it introduces a time lag between AD modifications and your extracts, which can be important from security point of view. Same example --user is transfered and can still access BI data he's no longer authorized to see until Active Directory information is extracted again. Setting small extract lags can bring unwanted load on Active Directory, so it's once again a balanced choice to make.</div>
<p>Links for extracting Active Directory information to csv:</p>
<p><a href="http://social.technet.microsoft.com/wiki/contents/articles/step-by-step-guide-to-bulk-import-and-export-to-active-directory.aspx">Step by Step Active Directory Export Guide </a><br />
<a href="http://www.rlmueller.net/ADOSearchTips.htm">http://www.rlmueller.net/ADOSearchTips.htm</a><br />
<a href="http://www.computerperformance.co.uk/Logon/LDAP_attributes_active_directory.htm">http://www.computerperformance.co.uk/Logon/LDAP_attributes_active_directory.htm</a><br />
<a href="http://sourceforge.net/projects/jxplorer/">JXplorer -- a graphical tool to browse any LDAP server</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/cognos/connecting-bi-system-to-active-directory-oracle-bi-vs-ibm-cognos-bi-scripts-to-extract-active-directory-information/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up ODI file-CDC capabilities</title>
		<link>http://ykud.com/blog/bicpm/oracle/setting-up-odi-file-cdc-capabilities</link>
		<comments>http://ykud.com/blog/bicpm/oracle/setting-up-odi-file-cdc-capabilities#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:10:50 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[etl]]></category>
		<category><![CDATA[odi]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=291</guid>
		<description><![CDATA[How to set up a trick called 'put a file in a folder and it'll dissappear in DWH' with Oracle Data Integrator. Imagine that we need to upload a text file in DWH whenever it appears in some folder with no defined schedule. It really easy to do in ODI: 1) Create a package with [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">How to set up a trick called 'put a file in a folder and it'll dissappear in DWH' with Oracle Data Integrator.</div>
<div></div>
<div id="_mcePaste">Imagine that we need to upload a text file in DWH whenever it appears in some folder with no defined schedule.</div>
<div>It really easy to do in ODI:</div>
<div id="_mcePaste">1) Create a package with ODIStep 'WaitForFile' which will scan the directory on predefined basis and will move found file in a folder where it'll be processed. I usually archive and timestamp file on the way -- this saves a lot of time in "where did this number come from" arguments.</div>
<div id="_mcePaste">2) Insert a scenario that will process the file</div>
<div id="_mcePaste">3) Steps 1-2 work only once, so we need to cycle things up, so that after processing a file, system starts waiting for a new one.  This is as easy as making a scenario of a package we're creating and inserting as step 3 )</div>
<div><a href="http://ykud.com/blog/wp-content/uploads/2010/04/odi_file_cdc.jpg"><img class="aligncenter size-full wp-image-293" title="odi_file_cdc" src="http://ykud.com/blog/wp-content/uploads/2010/04/odi_file_cdc.jpg" alt="" width="652" height="305" /></a></div>
<div id="_mcePaste">So we've got a scenario which grabs files from a folder and processes it. Just run it and it'll wait in background and process all the files you throw at it. But what happens if we reboot ODI agent server? To ensure that this task starts automatically -- just add a schedule for this scenario with 'Start on Startup' option.</div>
<div id="_mcePaste">Bingo: disaster-prone file vacuum cleaner )</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/oracle/setting-up-odi-file-cdc-capabilities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Data Integrator, Oracle XE and JDBC NLS problems</title>
		<link>http://ykud.com/blog/bicpm/oracle/oracle-data-integrator-oracle-xe-and-jdbc-nls-problems</link>
		<comments>http://ykud.com/blog/bicpm/oracle/oracle-data-integrator-oracle-xe-and-jdbc-nls-problems#comments</comments>
		<pubDate>Fri, 26 Feb 2010 16:51:45 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[etl]]></category>
		<category><![CDATA[odi]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=284</guid>
		<description><![CDATA[Since I've spent a day breaking through this mess, I'd share my way of getting ODI to work with XE as a repository. ODI repository creation is sucessfull, but after that Topology Manager and all other ODI modules won't work, throwing "ORA-12705: invalid or unknown NLS parameter value specified" while connecting to XE. There are [...]]]></description>
			<content:encoded><![CDATA[<p>Since I've spent a day breaking through this mess, I'd share my way of getting ODI to work with XE as a repository.</p>
<p>ODI repository creation is sucessfull, but after that Topology Manager and all other ODI modules won't work, throwing "ORA-12705: invalid or unknown NLS parameter value specified" while connecting to XE.</p>
<p>There are 3 java connections to repository in ODI:<br />
<strong>1) For Oracle Data Integrator Modules</strong></p>
<p>Unfotunately, I couldn't get ODI to work with correct NLS by changing odiparams.bat as they recommend on Metalink, but downloading <a href="http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_112010.html">latest jdbc driver from Oracle</a> and removing old ones (physically deleting <img src='http://ykud.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) from \drivers folder helped with this part.</p>
<p><strong>2) For ODI Agent</strong></p>
<p>After trying in vain with adding "-Duser.language=en" "-Duser.region=US" to odiparams, I've created a new wrapper configuration file (stored in ODI_HOME\tools\wrapper\conf) by copying snpsagent.conf to  and adding this options to line</p>
<pre>wrapper.java.additional.1=-Djava.security.policy=server.policy</pre>
<p>so it read</p>
<pre>wrapper.java.additional.1=-Djava.security.policy=server.policy -Duser.language=en -Duser.region=US</pre>
<p>reinstalling agent with the new wrapper conf file (you explicitly run 'agentservice -i -s agent_name 20910 new_wrapper') worked.</p>
<p><strong>3) For Metadata Navigator</strong></p>
<p>I've used Apache Tomcat as a Metadata Navigator container. Setting additional java options (the very same '-Duser.language=en -Duser.region=US') for tomcat solved this one.</p>
<p>See related Metalink Note: 471749.1</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/oracle/oracle-data-integrator-oracle-xe-and-jdbc-nls-problems/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BI and CPM Gartner Quadrants &#8217;10 are out</title>
		<link>http://ykud.com/blog/bicpm/bi-and-cpm-gartner-quadrants-10-are-out</link>
		<comments>http://ykud.com/blog/bicpm/bi-and-cpm-gartner-quadrants-10-are-out#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:57:37 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[BI&CPM]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=265</guid>
		<description><![CDATA[Rather interesting: BI CPM The CPM Big Three(aka leaders quadrant) is formed and I think they'll just waltz around the quadrant in next couple of years. PS: Just to notice, they say aggregate awareness for Cognos BI is in beta-testing. Just after I spent so much space promoting database-level aggregate navigation.]]></description>
			<content:encoded><![CDATA[<p>Rather interesting:</p>
<p><a href="http://www.gartner.com/technology/media-products/reprints/oracle/article121/article121.html">BI</a></p>
<p><a href="http://www.gartner.com/technology/media-products/reprints/oracle/article120/article120.html">CPM</a></p>
<p>The CPM Big Three(aka leaders quadrant) is formed and I think they'll just waltz around the quadrant in next couple of years.</p>
<p>PS: Just to notice, they say aggregate awareness for Cognos BI is in beta-testing. Just after I spent so much space<a href="http://ykud.com/blog/cognos/oracle-bi-enterprise-edition-vs-cognos-bi"> promoting database-level aggregate navigation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/bi-and-cpm-gartner-quadrants-10-are-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>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>Essbase book</title>
		<link>http://ykud.com/blog/bicpm/oracle/essbase-book</link>
		<comments>http://ykud.com/blog/bicpm/oracle/essbase-book#comments</comments>
		<pubDate>Tue, 16 Sep 2008 10:01:55 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[essbase]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=156</guid>
		<description><![CDATA[Read Edward Roske and Tracy McMullen's "Look Smarter than you are with Essbase System 9" over the weekend. It's really the best "technical" book I've read over past couple of years. Written in simple and not annoying language, with a lot of humor (I couldn't hold myself when I've read the fight club joke) -- [...]]]></description>
			<content:encoded><![CDATA[<p>Read Edward Roske and Tracy McMullen's <a href="http://www.lulu.com/content/2192328">"Look Smarter than you are with Essbase System 9"</a> over the weekend. It's really the best "technical" book I've read over past couple of years. Written in simple and not annoying language, with a lot of humor (I couldn't hold myself when I've read the fight club joke) -- definitely a must-have book for any essbaser out there. Found really helpful, although I knew most of the points already. But, oh my, appendixes rock -- calculator cache explained is a real gift.</p>
<p>And, more important, this book really gives you an overall picture and shows a way to go. DBAG covers every topic with excessive amount of details so you can't see the forest over the trees. </p>
<p>Kudos to Edward and Tracy, it's a fantastic job. I'm waiting for ASO one.</p>
<p>PS: Too bad it wasn't there a year ago. And too bad there are no such books on cognos<br />
PPS: Edward has a <a href="http://looksmarter.blogspot.com">blog</a>, as you all know.</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/oracle/essbase-book/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essbase first impressions</title>
		<link>http://ykud.com/blog/bicpm/oracle/essbase-first-impressions</link>
		<comments>http://ykud.com/blog/bicpm/oracle/essbase-first-impressions#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:03:02 +0000</pubDate>
		<dc:creator>ykud</dc:creator>
				<category><![CDATA[oracle]]></category>
		<category><![CDATA[essbase]]></category>
		<category><![CDATA[olap]]></category>

		<guid isPermaLink="false">http://ykud.com/blog/?p=147</guid>
		<description><![CDATA[Finally got a chance to try essbase out on real data volumes. Building half-a-billion facts cube turned out into something like this: PS: I have very special attitude to David Lynch's films. A physical one. Just the sight of road running away at "Lost Highway" makes me creepy. It takes me about 5 seconds to [...]]]></description>
			<content:encoded><![CDATA[<p>Finally got a chance to try essbase out on real data volumes. Building half-a-billion facts cube turned out into something like this:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/WVqXE9ZY5wk&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/WVqXE9ZY5wk&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>PS: I have very special attitude to David Lynch's films. A physical one. Just the sight of road running away at "Lost Highway" makes me creepy. It takes me about 5 seconds to identify Lynch's work, as I've found out while watching <a href="http://www.imdb.com/title/tt0973844/">"Chacun son cinema"</a>. Might be camera angle...</p>
]]></content:encoded>
			<wfw:commentRss>http://ykud.com/blog/bicpm/oracle/essbase-first-impressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
