of 37 /37
QPS Lunch & Learn What's in the Data Warehouse? July 6, 2011 Martha Newton

July 6, 2011 Martha Newton. Objectives Data Group staff Data storage concepts What is a Data Warehouse What’s in the Data Warehouse (Vanderbilt’s Enterprise

Embed Size (px)

Text of July 6, 2011 Martha Newton. Objectives Data Group staff Data storage concepts What is a Data...

  • Slide 1
  • July 6, 2011 Martha Newton
  • Slide 2
  • Objectives Data Group staff Data storage concepts What is a Data Warehouse Whats in the Data Warehouse (Vanderbilts Enterprise Data Warehouse - EDW) How to get data out of the EDW
  • Slide 3
  • Objectives Data Group staff
  • Slide 4
  • QPS Data Group Data group provide data support for Pillar Metrics, Public Reporting, External Database participation etc. 6 staff members are in the CCI data group reporting to Renee Stiles, Director of Quality Measurement and Research and myself as Associate Director Quality Value Analyst Biostatistician 2 are in Infection Control reporting to Vicki Brinkso, Director Infection Control and Dr. Tom Talbot, Chief Hospital Epidemiologist 4 are in PM&I reporting to Jenny Slayton, Administrative Director PM&I
  • Slide 5
  • QPS Data Group
  • Slide 6
  • Objectives Data Group staff Data storage concepts
  • Slide 7
  • Data Storage Concepts Computers store data on recording media (disk drives, memory sticks etc.) Simplest structure to store data is the fix format flat file (data is stored at prescribed locations) Spreadsheet organizes data into rows and columns (no fixed positions)
  • Slide 8
  • Data Storage Concepts A database (usually a relational database) is used to store the information entered into a computer system Data is stored in multiple tables Tables are linked (hence the term relational)
  • Slide 9
  • Objectives Data Group staff Data storage concepts What is a Data Warehouse
  • Slide 10
  • A data warehouse is a database used to store data from operational systems for reporting purposes Systems like billing, order entry or external databases Data is loaded into the data warehouse using a process referred to as ETL (Extract, Transform, Load)
  • Slide 11
  • What is a Data Warehouse Bill Inmon, President and Chief Technology Officer, Forest Rim Technology LLC Best known as The Father of Data Warehousing. 50 books and 650 articles Top to down approach
  • Slide 12
  • What is a Data Warehouse Ralph Kimball is known as the Father of Business Intelligence for defining the concept behind Data Marts Bottoms's up approach Invented Star Schema Books Data Warehousing Toolkit The Data Warehouse Lifecycle Toolkit
  • Slide 13
  • What is a Data Warehouse OLTP = Online Transaction Processing Optimized for data updates Data is normalized larger tables are dividing into smaller table with relationships Eliminates redundancy A Dimensional Modeling Manifesto Ralph Kimball DBMS August 1997
  • Slide 14
  • What is a Data Warehouse OLAP = Online Analytical Processing Optimized for reporting Data is stored using star (snowflake) format De-normalize data Tables with more columns Data may be repeated A Dimensional Modeling Manifesto Ralph Kimball DBMS August 1997
  • Slide 15
  • What is a Data Warehouse Data mart for management of VHP TN population was modeled after Ralph Kimball approach to data warehousing Utilized Star Schema
  • Slide 16
  • What is a Data Warehouse De-normalized Dimensional tables City, County and Region spelled out instead of using a code
  • Slide 17
  • Objectives Data Group staff Data storage concepts What is a Data Warehouse Whats in the Data Warehouse (Vanderbilts Enterprise Data Warehouse - EDW) EDW?
  • Slide 18
  • Whats in the Data Warehouse Event Reporting System Hospital Billing System Physician Scheduling Billing System Physician Order Entry System CPOE Nursing Documentation System Cath Lab Documentation System Time Clock System Lab System StarForms are part of the EHR
  • Slide 19
  • Whats in the Data Warehouse Vanderbilts Enterprise data warehouse (EDW) contains the data from the systems used in care of the patient or billing of the healthcare encounter Physician Order Entry system (Wiz/HEO) Electronic Medical Record (StarPanel) Nursing Documentation System (HED) Hospital/Physician Billing System (Medipac/Epic) etc. External databases UHC Comparative Database NHSN (National Healthcare Safety Network) etc.
  • Slide 20
  • Whats in the Data Warehouse Medipac is an Example of a production system Medipac is used to bill hospital charges (hospital charges cover the use of the facility, supplies, medications, nursing care etc.) Coders review the medical record and assign codes that describe the patients disease The codes for an individual patient can be reviewed in Medipac
  • Slide 21
  • Whats in the Data Warehouse Medipac data is loaded into the EDW in an automated nightly process Same diagnosis codes that are stored in Medipac are stored in a table in the EDW (MPAC_ABSTRACT_DIAG) Diagnosis codes from all patients are stored in the same table in the EDW This makes it possible to identify patients with specific diseases (i.e. Diabetes 250.00)
  • Slide 22
  • Whats in the Data Warehouse StarPanel is Vanderbilts Electronic Health Record (EHR) StarForms are electronic fill in the blank forms The forms are saved in StarPanel to document work (i.e. procedure notes) Optionally the data can also be saved to the EDW creating a table with the fill in the blank information
  • Slide 23
  • Whats in the Data Warehouse Star form data can be saved to the EDW The fill in the blank fields are saved in a table. A new record is created for each new form created The table also includes indentifying information
  • Slide 24
  • Whats in the Data Warehouse Other servers TSI data resides on DWPRD (managed by Mark OHara) Legacy data warehouse is on the IBM mainframe in DB/2 (also managed by Mark OHara)
  • Slide 25
  • How to get data out of the EDW EDW is not a single structure (1 database on 1 server) Most of the EDW resides on an Oracle server BIPROD (managed by Eric Griffin) EDW is managed collaboratively by Finance and IT
  • Slide 26
  • Objectives Data Group staff Data storage concepts What is a Data Warehouse Whats in the Data Warehouse (Vanderbilts Enterprise Data Warehouse - EDW) How to get data out of the EDW
  • Slide 27
  • EDW can be accessed with a variety of tools Business Objects Microsoft Access using ODBC connections PL/SQL SQL+, Toad SciHealth Through UHC interface (data is uploaded to UHC from the EDW etc.
  • Slide 28
  • How to get data out of the EDW Business Objects Request access using form below from on EDW web site Training classes available
  • Slide 29
  • How to get data out of the EDW Business Objects BO reorganizes data in the EDW into logical structures called Universes This shields users from database issues like incompatible field types EDW team offers training classes for BO
  • Slide 30
  • How to get data out of the EDW Microsoft Access Using ODBC (Open Database Connectivity) EDW tables on the Oracle Server can be linked into Microsoft Access Tables can than be used just like Microsoft Access tables
  • Slide 31
  • How to get data out of the EDW Microsoft Access continued Tables are linked in a graphical view SQL statement is created behind the scenes SELECT A.MED_REC_NUMBER, A.DISCHARGE_DT, B.DIAG_CD FROM MEDIPAC_MPAC_CASEMIX A INNER JOIN MEDIPAC_MPAC_ABSTRACT_DIAG B ON (A.UNIT_NUMBER = B.UNIT_NUMBER) AND (A.VISIT_NUMBER = B.VISIT_NUMBER) WHERE (((A.DISCHARGE_DT) Between #1/1/2011# And #12/31/2011#) AND ((B.DIAG_CD)="250.00"));
  • Slide 32
  • How to get data out of the EDW PL/SQL PL/SQL Developer is a database development tool (Write/save SQL statements) Tool used by the EDW team to develop the ETL to load EDW as well as create maintain other EDW structures like views
  • Slide 33
  • How to get data out of the EDW SQL+ Toad Sign on to BIPROD Enter SQL commands (code) to retrieve data
  • Slide 34
  • How to get data out of the EDW SciHealth indicators report EDW data in a dashboard view UHC O/E Mortality
  • Slide 35
  • How to get data out of the EDW EDW data is uploaded UHC monthly and can be accessed through the Clinical Database (CDB)
  • Slide 36
  • How to get data out of the EDW If you have a data request for your project: If appropriate for your job you may request access to the EDW OR Send E-Mail request to Renee Stiles or Martha Newton Assign work to the CCI data group staff or forward to Infection Control or PM&I
  • Slide 37
  • Questions