Book Image

Oracle Essbase 11 Development Cookbook

By : Jose R Ruiz
Book Image

Oracle Essbase 11 Development Cookbook

By: Jose R Ruiz

Overview of this book

Oracle Essbase is a Multi-Dimensional Online Analytical Processing (OLAP) server, providing a rich environment for effectively developing custom analytic and enterprise performance management applications. Oracle Essbase enables business users to quickly model complex business scenarios. This practical cookbook shows you the advanced development techniques when building Essbase Applications and how to take these applications further. Packed with over 90 task-based and immediately reusable recipes, this book starts by showing you how to use a relational data model to build and load an Essbase cube and how to create a data source, prepare the mini schema, and work with the data elements in Essbase Studio. The book then dives into topics such as building the BSO cube, building the ASO cube, using EAS for development, creating Calculation Scripts and using MaxL to automate processes.
Table of Contents (17 chapters)
Oracle Essbase 11 Development Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Using the Essbase Outline Extractor to extract dimensions


In this recipe, we are going to use the Essbase Outline Extractor to extract the meta-data from the Sample Basic database in parent-child format. The Essbase Outline Extractor is a free product and can be downloaded from AppliedOLAP's website: http://www.appliedolap.com/free-tools/outline-extractor. The version you should consider for Essbase 11.1.2.1 for now is essbase_outline_extractor_11.1.2. This tool can assist you in extracting your metadata from an existing Essbase cube. We can then use its output to load Data Relationship Management (DRM) or a relational environment.

Getting ready

To get started, click on the Start menu to open the Essbase Outline Extractor.

How to do it...

  1. Click on Programs and select olapunderground | Essbase Outline Extractor | Essbase Outline Extractor.

  2. Click on the Do not show this message again checkbox and click on Proceed if you get the following prompt:

  3. You should now see the extract utility, as follows:

  4. Click on the Login button on the top left and enter the server you want to log in to. Enter your username and password.

  5. Click on the Sample.Basic application and database, and click on the OK button.

  6. You should now have the option to select a dimension from the Select Dimension combo box. Click on the Product dimension.

  7. Click on the Load File Format radio button and the Field Options command button. Select all the checkboxes except Currency Name/Category in this menu as it is not applicable in this case.

  8. Click on the Browser button circled in the following screenshot and select a file location and filename.

  9. You have the option to change the file's delimiter as well, but the exclamation mark (!) character should work fine.

  10. Click on the Export button.

  11. A file should be produced in the location you specified, delimited by the bang or exclamation character, and in a parent-child format. The column headers in this file should be as follows:

    COLUMN HEADERS

    PARENT0,Product

    CHILD0,Product

    ALIAS0,Product

    PROPERTY0,Product

    FORMULA0,Product

    OUNCES0,Product

    CAFFEINATED0,Product

    PKGTYPE0,Product

How it works...

In this recipe, we used the Essbase Outline Extractor to extract the metadata for the Product dimension into a text file. This tool works with both the Block Storage and Aggregate storage model, but may have issues when the dimension member count is very large.

There's more...

You can also use the tool to extract dimensions in Generation, Level, and Documentation Format. It is encouraged that you try the different options to see what format best fits your needs.