Data Interchange Standards in Healthcare Rev'd Sunday A. Folayan General Data Engineering Services, Ibadan, Nigeria

Slides:



Advertisements
Similar presentations
Chapter 10: Designing Databases
Advertisements

Introduction to TCP/IP
Introduction for Clinical Database 陳勁辰2003/06/02.
Management Information Systems, Sixth Edition
Client/Server Databases and the Oracle 10g Relational Database
Protocols and the TCP/IP Suite Chapter 4 (Stallings Book)
Chapter 3. 2 Chapter 3 - Objectives Terminology of relational model. Terminology of relational model. How tables are used to represent data. How tables.
OSI Model MIS 416 – Module II Spring 2002 Networking and Computer Security.
Protocols and the TCP/IP Suite
Entity-Relationship Model and Diagrams (continued)
The Relational Database Model:
Business Driven Technology Unit 2 Exploring Business Intelligence Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
System Analysis and Design
BUSINESS DRIVEN TECHNOLOGY
TCP: Software for Reliable Communication. Spring 2002Computer Networks Applications Internet: a Collection of Disparate Networks Different goals: Speed,
Working with SQL and PL/SQL/ Session 1 / 1 of 27 SQL Server Architecture.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
THE OSI REFERENCE MODEL LES M C LELLAN DEAN WHITTAKER SANDY WORKMAN.
OSI Model. 2 The OSI Model Open Systems Interconnection Standard Model for Data Communications Specified by International Standards Organization (ISO)
Protocols and the TCP/IP Suite Chapter 4. Multilayer communication. A series of layers, each built upon the one below it. The purpose of each layer is.
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
OSI AND TCP/IP MODELS. Outline Introduction OSI Model TCP/IP Model IPv4 vs. IPv6.
OSI Model Honolulu Community College Cisco Academy Training Center
Protocol Architectures. Simple Protocol Architecture Not an actual architecture, but a model for how they work Similar to “pseudocode,” used for teaching.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Networks – Network Architecture Network architecture is specification of design principles (including data formats and procedures) for creating a network.
THE OSI REFERENCE MODEL Open Systems Interconnection (OSI) International Organization for Standardization( ISO)
Course ILT The OSI model Unit objectives Explain the significance of the OSI model, label the seven layers of the OSI model, and describe services provided.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
Lecture 2 An Overview of Relational Database IST 318 – DB Admin.
Storing Organizational Information - Databases
Chapter 12: Designing Databases
Chapter 15 – Part 2 Networks The Internal Operating System The Architecture of Computer Hardware and Systems Software: An Information Technology Approach.
Relational Database. Database Management System (DBMS)
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
DataBase Management System What is DBMS Purpose of DBMS Data Abstraction Data Definition Language Data Manipulation Language Data Models Data Keys Relationships.
CIS 210 Systems Analysis and Development Week 6 Part II Designing Databases,
Introduction to Database using Microsoft Access 2013 Part 7 November 19, 2014.
Health IT Workforce Curriculum Version 1.0 Fall Networking and Health Information Exchange Unit 3b National and International Standards Developing.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. Adding a new field 1Right click the table name and select design view 2Type the field information at the end.
Rehab AlFallaj.  OSI Model : Open system Interconnection.  is a conceptual model that characterizes and standardizes the internal functions of a communication.
Chapter 13 Designing Databases Systems Analysis and Design Kendall & Kendall Sixth Edition.
Relational Theory and Design
SQL LANGUAGE and Relational Data Model TUTORIAL Prof: Dr. Shu-Ching Chen TA: Hsin-Yu Ha.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 16 Using Relational Databases.
Department of Industrial Engineering Sharif University of Technology Session# 10.
CHAPTER 4 PROTOCOLS AND THE TCP/IP SUITE Acknowledgement: The Slides Were Provided By Cory Beard, William Stallings For Their Textbook “Wireless Communication.
Open System Interconnection Describe how information from a software application in one computer moves through a network medium to a software application.
Lection №4 Development of the Relational Databases.
IAD 2263: System Analysis and Design Chapter 7: Designing System Databases, Interfaces and Security.
1 Chapter 4. Protocols and the TCP/IP Suite Wen-Shyang Hwang KUAS EE.
The Relational Model. 2 Relational Model Terminology u A relation is a table with columns and rows. –Only applies to logical structure of the database,
CDA Overview HL7 CDA IHE Meeting, February 5, 2002 Slides from Liora Alschuler, alschuler.spinosa Co-chair HL7.
Logical Database Design and Relational Data Model Muhammad Nasir
Network Models. The OSI Model Open Systems Interconnection (OSI). Developed by the International Organization for Standardization (ISO). Model for understanding.
Tung Tran, Ph.D. What is the EMR? Computerized legal medical record created by healthcare organizations Enables storage and retrieval of patient information.
Rationale Databases are an integral part of an organization. Aspiring Database Developers should be able to efficiently design and implement databases.
IT 5433 LM3 Relational Data Model. Learning Objectives: List the 5 properties of relations List the properties of a candidate key, primary key and foreign.
Integrated Services Digital Network (ISDN)
CT1303 LAN Rehab AlFallaj.
Chapter 4 Relational Databases
Protocols and the TCP/IP Suite
Chapter 9 Designing Databases
Chapter 3: Open Systems Interconnection (OSI) Model
Database.
Network Protocol Layers
Protocols and the TCP/IP Suite
Presentation transcript:

Data Interchange Standards in Healthcare Rev'd Sunday A. Folayan General Data Engineering Services, Ibadan, Nigeria

26-Oct-2015Data Standards in eHealth2 The Semiotic Triangle Thought to Symbol is correctness Thought to Referent is Adequateness Symbol to referent is Truth

26-Oct-2015Data Standards in eHealth3 Representation Constraints The English Language, or Russian, or German. If you cannot describe it, you cannot document it. American Standard Code for Information Interchange (ASCII). All Computers use ASCII Characters for Communication

26-Oct-2015Data Standards in eHealth4 Data Data represents quantities, characters, or symbols on which operations are performed by a computer, stored and recorded on varied storage devices and transmitted in the form of digital electrical signals.

26-Oct-2015Data Standards in eHealth5 Database A database is an organized collection of data whose content must be quickly and easily Accessed Managed Updated Data need not be used where it is stored. This means there must be some common format for exchanging data while maintaining its integrity.

26-Oct-2015Data Standards in eHealth6 Database Tables (Relations) Each column is an attribute Each row is a record or tuple Attribute 1 (column 1) Attribute 2 (column 2) Record 1 (tuple 1) Record 2 (tuple 2)

26-Oct-2015Data Standards in eHealth7 Primary An attribute or group of attributes which uniquely identifies each record in a table May not be a Null value Foreign When a primary key in a table it used in another table, it is called a foreign key used primarily for enforcing referential integrity, but also for establishing relationships between the two tables Keys

26-Oct-2015Data Standards in eHealth8 One-to-one (1-to-1) One-to-many (1-to-M or 1-to-  ) Many-to-Many (M-to-M or  -to-  ) Key Relationships

26-Oct-2015Data Standards in eHealth9 The Entity-Attribute Model Entities are Doctors, Patients, Invoices Attributes include Name, Ailment, Amount etc.

26-Oct-2015Data Standards in eHealth10 First Normal Form (1NF)1NF All attributes are single valued & non-repeatingnon-repeating Second Normal Form (2NF)2NF Must be 1NF & must have primary key Each non-primary key attribute must be functionally dependent on primary key Third Normal form (3NF)3NF Must be 2NF Each non-primary key attribute must be dependent only on primary key Normalization (logical organization)

26-Oct-2015Data Standards in eHealth11 The OSI Model Layered Approach to Data Communications Seven Layers Altogether Each Layer Performs a Unique Function Each Layer Has Its Own Protocol Protocol Messages in Upper Layer is Data to Layer Below

26-Oct-2015Data Standards in eHealth12 The OSI Model Layered Approach to Data Communications Seven Layers Altogether Each Layer Performs a Unique Function Each Layer Has Its Own Protocol Protocol Messages in Upper Layer is Data to Layer Below

26-Oct-2015Data Standards in eHealth13 The OSI Model The Seven Layers Physical Link Network Transport Session Presentation Application Unreliable Wire, Telco Line Reliable Across Physical Line Unreliable Thru Multi-Node Network Reliable End to End Sync Points and Dialogs Data Representation & Syntax User Level Processing RS232, T1, 802.x LAPB, HDLC X.25 Pkt, IP TCP ISO Session ISO Presentation Telnet, FTP, Mail Layer NameDescriptionExamples

26-Oct-2015Data Standards in eHealth14 Health Level 7 Health Level-7 or HL7 refers to a set of international standards for transfer of clinical and administrative data between software applications used by various healthcare providers. These standards focus on the application layer, which is "layer 7" in the OSI model.

26-Oct-2015Data Standards in eHealth15 Health Level 7 HL7 specifies a number of flexible standards, guidelines, and methodologies by which various healthcare systems can communicate with each other. These data standards are meant to allow healthcare organizations to easily share clinical information. Theoretically, this ability to exchange information should help to minimize the tendency for medical care to be geographically isolated and highly variable.

26-Oct-2015Data Standards in eHealth16 HL7 Standards Version 2.x Messaging Standard – an interoperability specification for health and medical transactions Version 3 Messaging Standard – an interoperability specification for health and medical transactions Clinical Document Architecture (CDA) – an exchange model for clinical documents, based on HL7 Version 3

26-Oct-2015Data Standards in eHealth17 HL7 Standards (Cont.) Continuity of Care Document (CCD) - a US specification for the exchange of medical summaries, based on CDA. Structured Product Labeling (SPL) – the published information that accompanies a medicine, based on HL7 Version 3 Clinical Context Object Workgroup (CCOW) – an interoperability specification for the visual integration of user applications

26-Oct-2015Data Standards in eHealth18 Guiding Principles for Sharing Data Stakeholder Inclusiveness – Industry-wide collaboration – Open cooperation across geographic boundaries whether local, regional, national or international – Market competition should be valued to achieve cost effectiveness Data Protection [Authentication, Authorization] Innovation – Intellectual property Management

26-Oct-2015Data Standards in eHealth19