May 16, 2008
Enterprise PLanning Objects Naming Convention.
As I’ve promised, here are naming conventions I tend to follow in EP projects.
Setting up naming rules doesn’t seem so crucial at project start, but generally hits on you on the head on final phase, when development turns to support. And trying to support your colleagues model will leave you thinking about naming objects the same way more than once ;) So naming conventions are one of main project documents for me now.
Apr 29, 2008
Contributor transactional logic example
Finally, we’ve solved problem stated in communities. And Robert allowed me to publish resulting library here as well. See attached zip file.
Problem statement
We have 2 cubes, one containing product groups sales (for example) and the other containing detailed product data. Users should be able to correct overall group totals and correct detailed product distribution.
Apr 17, 2008
Modeling transactions in Contributor
There are some situations when you definitely need some way of recognizing new input from user. These are rather rare occasions, but when it’s nice to have such a tool is sack.
Apr 1, 2008
Using Oracle Model clause in real-life )
I’ve been a long-term fan of oracle model by clause, talking about here and there, doing some small&funny examples (like eight queens solution in one select) but lacked some real-life necessity to use it. It always turned out that partition by was enough, or some tricky analytical function was already built-in (like trend calculations I wrote about).
Mar 13, 2008
DMR’s pros and cons
DMR stands for Dimensionally Modelled Relational, a Cognos modelling technique allowing to present relational data sources as OLAP cubes (this meaning adding notion of dimensions with hierarchies and measures with various aggregation rules). All OLAP-style queries, roll-ups\drill-downs are then transformed into appropriate sql (group by’s, aggregations) by Cognos Server. It’s not a Cognos-only idea, see Microsoft UDM (Unified Dimensional Model) and Oracle BI EE works essentially the same way. The whole idea of dimensions\measures seems easy to understand (not by relationally bread-ones, though) so this modelling concept is gaining popularity.
Feb 29, 2008
Creating a Transformer task-balancing cluster, using Cognos 8 balancer
One more DIY article. This time we’ll talk about:
- You have more than a dozen Power Cubes (20?50?100?)?
- And since you can use only 2 CPUs per cube on Windows platform and “update-windows” are only narrowing, you have a couple servers (3?5?)?
- And so you get the task of carefully splitting cube creation tasks on those servers, adjusting build schedules to fit the gaps, manually setting start times on windows scheduler?
Time to get an automatic egg-clock load-balancing!
Feb 29, 2008
Debuging Drill-Through
Scrapped it out from my answer on cognos communities, maybe it’ll help someone.
Drill-through is really to tough to debug.
Prior to 8.3 I’ve used following routine:
- Set the target report filter to optional
- Add 2 new text item to target report, and change them to ReportExpressions of
ParamDisplayValue (?param?) and ParamValue(?param?)
This will show you what is passed and, maybe, will clarify things a bit.
Feb 21, 2008
Cyclic calculations in Analyst or “Make yourself an own @SliceUpdate”
In the old times, before SliceUpdate first appeared ) we’ve thought that one thing analyst lacked to be really all-in-one tool was ability to do loops. For, while, until — all that nice stuff. And when SliceUpdate was introduced it became clear that @Test(Restart) allows you to cycle macro execution on whatever basis.
Feb 11, 2008
Incremental Administration Links
In 8.2 we’ve got incremental publishing, allowing us to create real-time reporting on contributor data and that sets up new frontier in model data transfer speed. Now the slowest part of models are administration links (who’d guessed that when 7.3 appeared).
Feb 6, 2008
SQL worst practices
If anything you do is somehow related to databases, you absolutely, definitely have to see these videos:
Part 1:http://www.youtube.com/watch?v=40Lnoyv-sXg
Part 2: http://www.youtube.com/watch?v=GbZgnAINjUw
Part 3: http://www.youtube.com/watch?v=y70FmugnhPU
Go the links from Tom Kyte’s blog.