Friday, November 8, 2013

[OBIEE 11g] Improve Report Performance in OBIEE






Improve Report Performance in OBIEE
 


We I'll assume that you would be using some data warehouse (DWH) environment for the reports, rather than an OLTP.

1. Now in normal circumstances, Bitmap indexes are best suited for DWH because there is huge data to handle, along with ad hoc queries and more importantly, change in data (transactions) is slow.


2. Bitmap consumes very little space too as compared to the common b-tree index. And with tables containing huge amount of data, this becomes an important aspect.


3. A common assumption also says that bitmap works best with columns having lesser distinct values or cardinality. But it is best to look for the amount of data updated from concurrent systems. If that's low, always use bitmap. 

                                   But remember that we talk about indexes when we mean performance tuning of the database or DWH.

 In your case, probably you are looking to run a few reports faster which are taking some annoying time to open. So the best suggestion for you would be to place a proper cache mechanism. There are various ways in which you can manage the cache for your reports to run faster. You can easily find the methods on Google.


Other best practices may include:

1. Using star schema model wherever possible.
Snow-flaking affects performance. So if you can convert a snow flake to star by using some alias tables or multiple LTS go for it.

2. Using aggregate tables wherever possible.

3. Avoiding excessive use of functions like cast nvl, lpad, rpad, trim etc. or push them to the ETL phase.


4. Functions may kill the indexes and remember that every foreign key of your tables would also be playing as an index in the star or snowflake schema.

5. Avoiding unnecessary calculations or again push them to the ETL phase if possible. Get a proper DWH built by the ETL team, in accordance to the reporting requirements.

6. Using filter functions instead of case when statements.
Filter functions include an internal where clause which helps them to pick lesser data for comparison and hence perform better.

7. Using Union All instead of Union wherever possible.

8. Using materialized views when some complex queries are needed.

9. Some of the NQSConfig.ini parameters may also be altered for a better tuning.

And always check the NQQuery.log file to see the final query that is being executed for a report. That may also tell you what alterations might be needed for a better performance.


One thing of using the inside-Oracle-DB-OLAP engine to create cubes, if the source data is in an Oracle database.

Starting with 11.1.1.5 version, obiee now understands olap metadata. There is very minimal RPD work and all the aggregations and calculations are stored in database. So the benefits are:

(1). Greatly simplified aggregation strategy. One olap cube can replace dozens or even hundreds of relational MVs and aggregation tables.

(2). Complex calculated measures can be created very easily in olap cubes, using new Analytical syntax. These calculations automatically works at all levels of all dimensions. All types of Financial, statistical and time-series calculations are very simple to create.

(3). OBIEE generated queries are very simple SELECT...FROM...WHERE kind of queries. No long, multipage complicated sql queries.

(4). Cube loading is very quick due to new enhanced cube-compression features of 11.2.0.2 version of Oracle database.

(5). extremely fast query performance, compared to querying from relational tables or MVs.

(6). All types of hierarchies (parent-child, ragged, skip-level etc.) can be handled easily. No need for any kind of hierarchy changes for obiee.

(7). No new hardware or software or DBA required.

(8). only relational skills required.

So the keywords are SIMPLICITY and EASE when using OBIEE with Oracle-OLAP cubes.




3 comments:

  1. I sincerely appreciate your efforts in posting such useful content in internet but the text is hardly readable..I had to copy the text and paste in notepad to read it. Please pick a better theme. Thanks!

    ReplyDelete
  2. It's such a great blog... But We r unable 2 read it.. Please change the background so that it will be in readable form..

    ReplyDelete
  3. My OBIEE reports pointing to AWM OLAP cube are stuck as one of the dimmension is huge with millions of records and i am first timer in OLAp cube.Could you please help on how to improve an OBIEE report fetching if the dimmnsions are huge.

    ReplyDelete