Oracle Bi Solutions

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Friday, 18 January 2013

Table Organization in OBAW (Oracle Business Analytics Warehouse)

Posted on 00:48 by Unknown

OBAW Table Format:  Prefix + ‘_’ + Table_Name + ‘_’ + Suffix
Prefix Values                  Prefix Descriptions
W_                                           Warehouse Table
WS                                           Staging Tables for Usage Accelerator
Suffix Values                 Suffix Descriptions
_A                                           Aggregate
_D                                           Dimension
_DS                                         Staging for dimension
_DH                                         Dimension Hierarchy
_DHL                                      Dimension Helper Table
_DHLS                                   Staging for Dimension Helper
_F                                            Fact
_FS                                          Staging for Fact
_G, _GS, _S                          Internal Table
_H                                           Helper table
_M                                           Map dimension
_MD                                        Mini dimension
_UD                                         Unbounded dimension
_TMP                                       Pre staging temporary table
Descriptions:
Aggregate tables (_A)                                      Contain summed (aggregated) data.
Dimension tables (_D)                                      Star analysis dimensions.
Staging tables for Dimension (_DS)                 Tables used to hold dimension information that have not been through
                                                                                the final ETL transformations.
Staging tables for Usage Accelerator (WS_)     Tables containing the necessary columns for the ETL transformations.
Dimension Hierarchy tables (_DH)                  Tables that store the dimension’s hierarchical structure.
Dimension Helper tables (_DHL)                   Tables that store M:M relationships between two joining dimensiontables.
Staging tables for Dimension Helper (_DHLS)            Staging tables for storing M:M relationships between two joining  
                                                                                           dimension tables.
Fact tables (_F)                                                Contain the metrics being analyzed by dimensions.
Fact Staging tables (_FS)                                  Staging tables used to hold the metrics being analyzed by dimensions 
                                                                             that have not been through the final ETL transformations.
Internal tables (_G, _GS, _S)                          Internal tables are used primarily by ETL mappings for datatransformation 
                                                                           and controlling ETL runs. Not even administered through DAC.
Helper tables (_H)                                         Helper tables are inserted between the fact and dimension tables to support 
                                                                         a many-to-many (M:M) relationship between fact and dimension records.
Map dimension tables (_M)                        Tables that store cross-referencing mappings between the external data ID  
                                                                         and  the internal ID.
Mini dimension tables (_MD)              Include combinations of the most queried attributes of their parent dimensions.
                                                                The database joins these small tables to the fact tables.
Primary extract tables (_PE)                             Tables that are used to support the soft delete feature. The table includes all the primary key columns (integration ID column) from the source system. When a delete event happens, the full extract from the source compares the data previously extracted in the primary extract table to determine if a physical deletion was done in the transactional database. The soft delete feature is disabled by default. Therefore, the primary extract tables are not populated until you enable the soft delete feature.
Unbounded dimension tables                          Tables containing information that is not bounded in transactional 
                                                                               database data but should be treated as bounded data in the OBAW.
  • A fact table in the Oracle Business Analytics Warehouse has a surrogate key only if the records in the fact table need to be updated or if the fact table has an aggregate table on top of it. 
  • Importance of ROW_WID column 
  • Dimension Class Tables are physical tables that store multiple logical entities that have similar attributes. 
  •  
    • Unique numeric key generated as part of dimension load process. 
    • Used to join dimension tables to any fact/other tables. 
    • ROW_WID value of zero is always reserved for ‘Unspecified’. 
Classic example is W_XACT_TYPE_D which is a single physical table representing a dimension in OBAW that houses all logical entities like sales order types, sales invoice types, purchase order types etc.
  • Mini Dimension Tables is a smaller subset of dimension tables based on frequency of usage to speed up the query performance. Mini Dimensions can be views/materialized views on top of large dimensions or Dimension Class tables depending on refresh schedules of the parent dimensions. Example: W_RESPONSE_D dimension has W_RESPONSE_MD, W_AGREE_MD, W_ASSET_MD, W_OPTY_MD etc. 
  • Types of hierarchical tables in OBAW are structured hierarchy and parent-child hierarchy tables. While the former has defined number of levels, the later does not.
Name  Purpose Location 
W_PARAM_GStores parameters and defaults that are used in ETL processes. Data warehouse
W_DUAL_GUsed to generate records for the Day dimension.Data warehouse
W_ETL_RUN_SStores a record for every ETL run with a status of running when the ETL is running and Completed when the ETL finishes successfully.Data warehouse
W_COSTLST_GStores cost lists.Data warehouse
W_EXCH_RATE_GStores exchange rates.Data warehouse
W_LOV_GStores lists of values in a way that translations can be done effectively using SQL.Data warehouse
W_LST_OF_VAL_GStores the list of values. A temporary table that is built during every ETL run and used to populate W_LOV_D.Data warehouse
W_LOV_EXCPT_GStores the list of values for the LOV types in whichthe ETL process finds exceptions.Data warehouse
W_UOM_CONVERSION_GStores a list of From and To UOM codes and their conversion rates.Data warehouse
S_ETL_COSTLSTMirror table of W_COST_LST_G. Used by real-time Analytics processes.Transactional database
S_ETL_EXCH_RATEMirror table of W_COST_LST_G. Used by real-timeAnalytics processes.Transactional database
S_ETL_CTRYREGNMirror table of W_EXCH_RATE_G. Used byreal-time Analytics processes.Transactional database
S_ETL_CURR_RUNStores the last ETL run date for which forecasts wereextracted and the current ETL run date when forecasts are being extracted.Transactional database
S_ETL_RUNMirror table of W_ETL_RUN_S.Transactional database
S_ETL_TIME_DAYA seeded table. The date from this table is extractedand loaded into W_TIME_DAY_D. Also used by real-time Analytics processes.Transactional database
S_ETL_DAYMirror table of W_DAY_D. Used by real-time Analytics processes.Transactional database
S_ETL_ERRHLPA seeded table. Stores the error messages displayed in exception reports.Transactional database
S_ETL_ERRLOGStores exceptions.Transactional database
S_ETL_INDUS_VERA seeded table. Stores the vertical for every SIC industry code. This table is used to load W_INDUSTRY_D and also used in real-time Analytics processes.Transactional database
S_ETL_LOVMirror table of W_LOV_D. Used by real-time Analytics processes.Transactional database
S_ETL_PARAMMirror table of W_PARAM_G. Used to extract and convert exchange rates to the data warehouse’s currency.Transactional database
S_ETL_PRD_ATTRStores all possible attributes for a given product.Transactional database
S_ETL_PRD_RELStores class inheritance of a product.Transactional database

Column Format Descriptions (Prefix+ ‘_’ + Column_Name + ‘_’ + Suffix) 
Prefix/SuffixDescriptionIn Table Types
W_Domain value columns_D
_CDCode Field_D, _DS, _FS, _G, _GS
_DTDate Field_D, _DS, _FS, _G, _DHL, _DHLS
_ILanguage Independent Code._D, _MD
_ID_ID columns are used in _FS tables. They correspondto the _WID columns of the corresponding _F table._FS
_FLGIndicator or Flag._D, _DHL, _DS, _FS, _F, _G,_DHLS
_WIDIdentifier generated by Oracle BI linking dimension and fact tables, except for ROW_WID._F, _A, _DHL
_NAMEName corresponding to the code column (columns ending with _CODE)_D, _F, _A
_DESCLong Description corresponding to the code column (columns ending with _CODE)_D, _F, _A

  • System Fields/Columns are system generated and should never be modified by user. Ex: ROW_WID, CREATED_ON_DT, CHANGED_ON_DT, DELETE_FLG etc.
  • Users of OBAW will be assigned to one of the 10 built-in security groups at the session level.
  • OBAW supports three currency types while analyzing data.
  • Domain values for all calendar tables have columns that indicate the relationship between a record and the current system date (period). These values are ‘Previous’, ‘Current’, Next’, ‘?’
  •  
    • Document Currency –> Currency in which transaction has occurred
    • Local Currency –> Accounting Currency of the legal company where the transaction occurred.
    • Global Currency –> Predefined currencies by which analysis can be reported.
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Posted in Informatica | No comments
Newer Post Older Post Home

0 comments:

Post a Comment

Subscribe to: Post Comments (Atom)

Popular Posts

  • Upper Function
    In Oracle/PLSQL, the  upper function  converts all letters in the specified string to uppercase. If there are characters in the string that ...
  • OBIEE 11g Hide/Show Sections based on Dashboard Prompt
    allow a user’s interaction to hide/show certain sections of a dashboard. In this particular case the user wanted to choose either ‘Quarterly...
  • [OBIEE11g] - OBIEE Dashboard for Informatica Metadata Reporting
    The metadata that Informatica Power Center 8 retains in its repository can be exposed via OBIEE reports and dashboards. This metadata includ...
  • [ODI] - Frequently Asked Questions (FAQ)
    Here is a list of FAQs about Oracle Data Integrator 1) What is Oracle Data Integrator (ODI)? 2) What is E-LT? 3) What components make up Ora...
  • OBIEE 11g not showing new dashboard in the drop down menu
    When creating New dashboard in  OBIEE 11g, I have faced with issue that dashboard name did not show up in drop down dashboard menu. 1. When ...
  • Data Modeling: Schema Generation Issue with ERwin Data Modeler 7.3
    We are using Computer Associate’s ERwin Data Modeler 7.3 for data modeling. In one of our engagements, we are pushing data model changes to ...
  • Installation Informatica Powercenter 9.1 on Oracle Enterprise Linux 5.6
    Ingredients: Program Version Filename Oracle Express 11G 11.2.0 oracle-xe-11.2.0-0.5.x86_64.rpm SQL Developer 3.0 sqldeveloper-3.0.04.34-1.n...
  • Informatica Powercenter Workflow Manager Repository Navigator docking float issue
    In case you’re also experiencing where your Repository Navigator is not dock or attached and it seems just floating within Workflow Manager ...
  • [OBIEE11g] - Creating Dashboard Traversing Through Graph
    The general requirement asked for by customers is that they want to Click on the Main Dashboard Page’s Graph and be transferred to the other...
  • OBIEE 11g - Query Limit
    Query limit and number of minutes a query can run per physical layer database connection, follow the below steps. > Login to Repository u...

Categories

  • BI Publisher
  • DAC
  • DataWarehouse
  • Hyperion
  • Informatica
  • OBIEE
  • ODI
  • Oracle Applications EBS 12.1.3
  • Oracle Database
  • PL/SQL
  • SQL
  • Unix/Linux

Blog Archive

  • ▼  2013 (500)
    • ►  November (8)
    • ►  October (1)
    • ►  July (4)
    • ►  June (9)
    • ►  May (15)
    • ►  April (24)
    • ►  March (43)
    • ►  February (73)
    • ▼  January (323)
      • Uninstalling Obiee 11g instance on a linux red hat
      • OBIEE 11g not showing new dashboard in the drop d...
      • OBIEE11g Installation
      • Starting OBIEE 11g Services on Linux
      • OBIEE11g Timestamp differencess
      • DAC11g Installation on Windows Server 2008R2.
      • BI Apps 7.9.6.4 Installation in widows server 2008R2
      • [OBIEE11g] - Eventually succeeded, but encountered...
      • [OBIEE11g] - Blue Screen Error While Login With Bi...
      • [OBIEE11g] - No Log Found Error
      • [OBIEE11g] - Stream Closed Error when Click on cor...
      • OBIA 7.9.6.4 RPD And Catalog Shared
      • [OBIEE11g] - Destination Path too Long error while...
      • [OBIEE11G] - Lookup table is a new feature in obie...
      • [OBIEE11g] - Create Veriable in OBIEE11g.
      • [OBIEE11g] - Configuring LDAP Server to provide OB...
      • [OBIEE11g] - Authentication Failure in OBIEE 11g
      • [OBIEE11g] - Bing Map Integration with OBIEE 11g
      • [OBIEE11g] - OBIEE Dashboard for Informatica Metad...
      • Informatica PowerCenter Upgrading from Version 8.6...
      • Data Modeling: Schema Generation Issue with ERwin ...
      • [OBIEE11g] - DAC Reporting in OBIEE11g
      • [OBIEE11g] - Publisher 11g – Performance Monitorin...
      • [OBIEE11g] - Auto Start OBIEE 11g using Windows Se...
      • [OBIEE11g] - Upgrade OBIEE 11.1.1.5 To Latest Vers...
      • OBIEE11g - User Right Click Interaction Control w...
      • [OBIEE11g] - Customizing Prompts ‘All Column Value...
      • [OBIEE11g] - Choosing the Right OBIEE Visualization
      • OBIEE11g - 11.1.1.6 New Features
      • [OBIEE11g] - Certification with Siebel Marketing f...
      • [OBIEE11g] - Creating a Stacked Bar Chart.
      • [BI EE11g] – Managing Host Name Changes
      • [DAC] - Multi Source Loads With OBIA
      • [Informatica] - ERROR CODES: [CNX_53021 ],[DOM_100...
      • [Informatica] - Informatica PowerCenter Repository...
      • [Informatica] - Processing UNICODE Characters in I...
      • [Linux] - Unix/Linix Commands
      • [DAC] - Full Load Vs Incremental Load
      • [Informatica] - Installation of Informatica 9.0.1 ...
      • [Informatica] - SF_34004- Service initialization ...
      • [Oracle Database] - Linux OS and Oracle database S...
      • [Oracle Database] - Installion Oracle database11g ...
      • [Informatica] - RR_4053 : Row error occurred while...
      • [OBIEE11g] - Change the placement of currency name
      • [OBIEE11g] - Exception Occuring During OBIEE 11.1....
      • What is Indexing in a Database
      • [OBIEE11g] - Setting up OBIEE11g Admin Tool for OD...
      • [OBIEE11g] - Getting Top-N Sales Reps Using the TO...
      • [OBIEE11g] - Getting Top-N Sales Reps Using Result...
      • [OBIEE11g] - Getting Top-N Sales Reps for Year and...
      • [OBIEE11g] - Analyzing Sales for “N Years Top-10 S...
      • [OBIEE11g] - Drill Down to Sub Reports Passing Mul...
      • [OBIEE11g[ - Configuring BI Scheduler for iBots on...
      • [OBIEE 11g] - How Application Roles, Groups and Us...
      • [OBIEE11g] - Setting up Access Permissions to Repo...
      • [OBIEE11g] - Fixing Weblogic and bi_server1 startu...
      • [OBIEE11g] - Deleting and Re-Creating Users in We...
      • [OBIEE 11g] - Backup and Restore of OBIEE Filesyst...
      • [OBIEE11g] - Creating Effective Bar Graphs
      • [OBIEE] - Useful SQL statements in Business Intell...
      • [OBIEE11g] - Creating Dashboard Traversing Throug...
      • [OBIEE11g] - Database Connection Failure while cr...
      • [DAC] - Admin password recovery
      • [Oracle 11g] - Oracle Database 11g installation on...
      • [OBIEE11g] - Variables in Oracle OBIEE 11g
      • [OBIEE11g] - Installing OBIEE 11g on Linux Fedora 17
      • [OBIEE11g] - Table view Date Column controlled by...
      • [OBIEE11g] - Adding Tooltips and conditional colo...
      • [OBIEE11g] - Show top-N Sales Persons in BI Publi...
      • [OBIEE11g] - Creating Scrolling Ticker Views
      • [OBIEE11g] - Authentication first with LDAP then ...
      • [OBIEE11g] - Relocation of OBIEE MetaData Reposit...
      • [OBIEE11g] - Hierarchical Roll-Up and Individual T...
      • [OBIEE11g] - Creation of Sales Reps Hierarchy wit...
      • [OBIEE11g] - Using external table to Filter BI Ans...
      • [OBIEE11g] - Configuring of RPD deployed on Linux...
      • [OBIEE11g] - Configuring an ODBC DSN for the Oracl...
      • [ODI] - Frequently Asked Questions (FAQ)
      • [OBIA] - Oracle BI Applications - Frequently Asked...
      • [OBIEE 11g] - Maps - Frequently Asked Questions (FAQ)
      • [OBIEE11g] - The 11g Features You Maybe Didn't Know!
      • [OBIEE11g] - New Features with OBIEE 11.1.1.6
      • [OBIEE11g] - Dashboard Prompt - "Prompt User"
      • [OBIEE11g] - [46153] The configuration file (O:\us...
      • [Informatica] - Multiple Chart of Accounts Configu...
      • [OBIEE11g] - Customizing Pivot Table Error
      • [OBIEE11g] - How to get Month Start Date and Month...
      • [OBIEE11g] - How to get Week Start Date and Week E...
      • [OBIEE11g] - How to rename My Dashboard
      • Table Organization in OBAW (Oracle Business Analyt...
      • [OBIEE11g] Uninstall OBIEE 11g
      • [OBIEE11g] - Command Line Merging in OBIEE 10g/11g
      • BI Publisher report is showing incorrect date(Show...
      • [OBIEE11g] - Connectivity issue from OBIEE (in Sol...
      • [OBIEE 11g] - Installation on Red Hat Linux
      • [OBIEE11g] - Different ToolTip for different rows ...
      • [OBIEE11g] - Integrating OBIEE 11g with EPM worksp...
      • [DAC] Fail to create indices during DAC execution ...
      • [DAC] Oracle DAC issue in 64 Bit Machine
      • [OBIEE11g] Connection Pool Select Button is Disabl...
Powered by Blogger.

About Me

Unknown
View my complete profile