Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Business Intelligence Cookbook: A Project Lifecycle Approach Using Oracle Technology

You're reading from   Business Intelligence Cookbook: A Project Lifecycle Approach Using Oracle Technology Take your data warehousing and business intelligence to the next level with this practical guide to Oracle Database 11g. Packed with illustrations, tips, and examples, it has over 80 advanced recipes to fine-tune your skills and knowledge.

Arrow left icon
Product type Paperback
Published in Jul 2012
Publisher Packt
ISBN-13 9781849685481
Length 368 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
John Heaton John Heaton
Author Profile Icon John Heaton
John Heaton
Arrow right icon
View More author details
Toc

Table of Contents (21) Chapters Close

Business Intelligence Cookbook: A Project Lifecycle Approach Using Oracle Technology
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
1. Preface
1. Defining a Program FREE CHAPTER 2. Establishing the Project 3. Controlling the Project 4. Wrapping Up the Project 5. The Blueprint 6. Analyzing the Requirements 7. Architecture and Design 8. Analyzing the Sources 9. Analyzing the Data 10. Constructing the Data Model 11. Defining the ETL/ELT 12. Enhancing the Data 13. Optimizing the Access 14. Security

Creating your application tables


Application tables will contain the information that is required for the data warehouse solution, but cannot be obtained from any existing source system. The APEX application will provide a means to capture this information and store it within the application tables.

Getting ready

Log in to your database schema created in the previous recipe.

How to do it...

The following steps will create some sample tables which will be used by the APEX application for the upload screen:

  1. 1. The table we will use is a simple customer table, defined as follows:

    CREATE TABLE "APP_CUSTOMER"
    (
    "CUST_SEQ" NUMBER NOT NULL ENABLE,
    "CUST_NUM" VARCHAR2(50 BYTE) NOT NULL ENABLE,
    "CUST_NAME" VARCHAR2(50 BYTE),
    "CUST_ADDRESS1" VARCHAR2(50 BYTE),
    "CUST_ADDRESS2" VARCHAR2(50 BYTE),
    "CUST_CITY" VARCHAR2(50 BYTE),
    "CUST_PCODE_ZIP" VARCHAR2(20 BYTE),
    "CUST_STATE" VARCHAR2(50 BYTE),
    "CUST_COUNTRY" VARCHAR2(50 BYTE),
    "REGION" VARCHAR2(50 BYTE),
    "CREATE_DATE" DATE,
    "CREATE_BY" VARCHAR2(50 BYTE...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image