You are on page 1of 42

CONFIDENTIAL

Healthcare Data Warehouse Foundation 5.x(HDWF)


Installation and Setup
October 2012

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential
Safe Harbor Statement

The following is intended to outline our general


product direction. It is intended for information
purposes only, and may not be incorporated into any
contract. It is not a commitment to deliver any
material, code, or functionality, and should not be
relied upon in making purchasing decisions.
The development, release, and timing of any
features or functionality described for Oracles
products remains at the sole discretion of Oracle.

For Oracle employees and authorized partners only. Do not distribute to third parties. 2
2012 Oracle Corporation Proprietary and Confidential
Oracle Software Delivery Cloud
http://edelivery.oracle.com

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 3
Oracle Software Delivery Cloud

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 4
Oracle Software Delivery Cloud

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 5
Oracle Software Delivery Cloud

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 6
Oracle Software Delivery Cloud

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 7
Oracle Software Delivery Cloud

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 8
Oracle Support

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 9
Oracle Support

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 10
Oracle Support

Log an SR with
Oracle Support to receive password

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 11
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 12
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 13
Patch versus Media Pack
Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 14
Patch versus Mediapack
Documentation
Support Patch with Master Menu
HDWF eTRM is identical to Media Pack
Data Dictionary and Glossary
Quick Start Guide
HDWF Programmers Guide
Secure Configuration Guide
Logical Data Model
Media Pack No Master Menu
Appendix A (HDI to HDM mappings) is new
HDWF eTRM is identical to Support Patch
Interface Table Programmer's Guide
Interface Table Electronic Technical Reference Manual (eTRM)
SQL DDL scripts

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 15
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 16
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 17
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 18
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 19
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 20
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 21
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 22
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 23
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 24
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 25
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 26
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 27
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 28
Installing Documentation

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential 29
Installing the Logical Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 30
Installing the Logical Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 31
Installing the Logical Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 32
Installing the Logical Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 33
Exploring the Data Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 34
Exploring the Data Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 35
Exploring the Data Model

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 36
Installing HDWF on a Laptop

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 37
Installing HDWF on a Laptop
select name, value from V$PARAMETER where NAME ='nls_length_semantics';

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 38
Installing HDWF on a Laptop

CREATE SMALLFILE TABLESPACE "HDWF" DATAFILE


'D:\APP\YOURCOMPUTERNAME\ORADATA\ORCL\HDWF.DBF' SIZE 512M AUTOEXTEND ON NEXT 5M
MAXSIZE 4G LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO

Save as create_hdwf_tbs.sql

select tablespace_name from dba_tablespaces where tablespace_name = 'HDWF';

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 39
Installing HDWF on a Laptop
CREATE USER hdwf IDENTIFIED BY YourPassword DEFAULT TABLESPACE HDWF
TEMPORARY TABLESPACE temp QUOTA UNLIMITED ON HDWF;
GRANT CREATE SESSION TO HDWF;
GRANT CREATE INDEXTYPE to HDWF;
GRANT CREATE JOB to HDWF;
GRANT CREATE MATERIALIZED VIEW to HDWF;
GRANT CREATE PROCEDURE to HDWF;
GRANT CREATE SEQUENCE to HDWF;
GRANT CREATE SESSION to HDWF;
GRANT CREATE SYNONYM to HDWF;
GRANT CREATE TABLE to HDWF;
GRANT CREATE TRIGGER to HDWF;
GRANT CREATE TYPE to HDWF; Save as cr_hdwf_user.sql
GRANT CREATE VIEW to HDWF;
COMMIT;

Connect hdwf/YourPassword

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 40
Installing HDWF on a Laptop
We are now ready to start the create table DDL script

Wait until you have completed the Using Seeded Data


knowledge module before executing other scripts

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 41
You are Ready!

You have the product


You have installed it correctly
You have full access to the documentation
You can use the Data Modeler

You can now start to learn>

For Oracle employees and authorized partners only. Do not distribute to third parties.
2012 Oracle Corporation Proprietary and Confidential Page 42

You might also like