OLAP Cube Studio: Looking at PROC OLAP Code

This post was kindly contributed by Business Intelligence Notes for SAS® BI Users - go there to comment and to read the full post.

If you have never worked with OLAP code – then you might be curious how it works and what it looks like. Some developers use SAS OLAP Cube Studio to start their cube building process since it saves some of the typing required. Let’s review some of the code. [Adv Users: check out Steve’s posts about OLAP Code]

Exporting PROC OLAP Code

There are two methods to export your cube to a SAS program from SAS OLAP Cube Studio.

  • Use Method 1 after you have added custom measurements. Click cube name > Export Code. The Export Code window appears.
  • Use Method 2 after you have completed the Cube Designer wizard. Click the Export Code button. The Export Code window appears.

From the Export Code window you can select if you want standard (long) OLAP procedure code or the shorten code. Either way – just add the path and program name. [More at SAS Support about when to use short/long form. ]

022612 1533 LookingatPR1 OLAP Cube Studio: Looking at PROC OLAP Code

Under the Hood

After opening the BUILD_GA_BLOGSITE.sas program in Enterprise Guide, you see how the OLAP procedure code appears. You can learn to code your own cubes, just by reviewing how the OLAP wizard wrote the code. For instance, this shows how the Segmentation Dimension appears in OLAP Cube Designer and how the code looks.

There is a Dimension > Hierarchy > Levels. You can see code has a statement for each of those and indicates the members – just as shown in the GUI.

022612 1533 LookingatPR2 OLAP Cube Studio: Looking at PROC OLAP Code

 

Here’s how the Measure statement looks. You can see how the default measure is declared. Also I highlighted where the BouncesSum and BouncesAvg measures are defined. [Learn more about writing PROC OLAP in SAS 9.2.] 

022612 1533 LookingatPR3 OLAP Cube Studio: Looking at PROC OLAP Code

In this example, the MDX code was created by using select cube name > Maintain > Calculated Members. This callout shows how the MDX looks. To learn more about writing MDX code, see these entries or refer to the SAS 9.2 OLAP Server: MDX User Guide. Also check out Steve’s post about Letting SAS EG write your MDX code.

022612 1533 LookingatPR4 OLAP Cube Studio: Looking at PROC OLAP Code

 

Are you on my list?

My RSS list? Add your email address to my RSS list.  I won’t sell your name to anyone, but I’ll send you each new blog post AND the occasional announcement about a new book.  For instance, Angela and I are putting the final touches on our The 50 Keys to Learning SAS Stored Processes book, which will be available in April 2012.   You know you want to know about that.

This post was kindly contributed by Business Intelligence Notes for SAS® BI Users - go there to comment and to read the full post.