Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: OLAP question

Re: OLAP question

From: sundeep maini <sundeep_maini_at_yahoo.com>
Date: Thu, 23 Aug 2001 14:56:00 -0700
Message-ID: <F001.003763FA.20010823145842@fatcity.com>

Bala,

Couple of things, first you can find lots of documentation and examples in Oracle 8i Data Warehousing Guide (ch-9 Dimesions, ch-15-summary advisor and ch-19 Query Rewrite). Also, dimensaions are not used in query syntax but used by Optimizer for query rewites and for better understanding of the innate nature of the data. In an OLAP environment you can't go wrong declaring dimensions and hierarchies but they are just declarative constructs for the Optimizer much like Optimizer Hints.

Im not sure if there is more to your question but would the following select get you the mobil number transactions?

SELECT co.company_code,
       co.company_desc,
       co.parent_company_code,
       NVL(txn.mobil_num,'No mobile usage on
'||txn_date)
  FROM company_dim co
 WHERE co.company_code = desired_company_co    AND co.parent_company_code = txn.company_code (+)    AND txn.activity_date = txn_date;

Sundeep Maini
Consultant
Currently on Assignement at Marshfield Clinic WI mainis_at_mfldclin.edu



Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: sundeep maini
  INET: sundeep_maini_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Aug 23 2001 - 16:56:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US