NURS 736: Technology Solutions for Knowledge Generation in Healthcare

Slides:



Advertisements
Similar presentations
Chapter 1: The Database Environment
Advertisements

WHAT D IS RAW, UNPROCESSED FACTS AND FIGURES COLLECTED, STORED AND PROCESSED BY COMPUTERS.
Database Software File Management Systems Database Management Systems.
1 Introduction The Database Environment. 2 Web Links Google General Database Search Database News Access Forums Google Database Books O’Reilly Books Oracle.
Designing a Database Unleashing the Power of Relational Database Design.
Databases and Database Management Systems
1 Overview of Databases. 2 Content Databases Example: Access Structure Query language (SQL)
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
Information Systems & Databases 2.2) Organisation methods.
MIS 327 Database Management system 1 MIS 327: DBMS Dr. Monther Tarawneh Dr. Monther Tarawneh Week 2: Basic Concepts.
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
+ Information Systems and Databases 2.2 Organisation.
Relational Database. I. Relational Database 1. Introduction 2. Database Models 3. Relational Database 4. Entity-Relationship Models 5. RDB Design Principles.
GIS Data Models GEOG 370 Christine Erlien, Instructor.
A table is a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows.
Flat Files Relational Databases
2/20: Ch. 6 Data Management What is data? How is it stored? –Traditional management storage techniques; problems –DBMS.
PREPARED BY: PN. SITI HADIJAH BINTI NORSANI. LEARNING OUTCOMES: Upon completion of this course, students should be able to: 1. Understand the structure.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
Data Resource Management Lecture 8. Traditional File Processing Data are organized, stored, and processed in independent files of data records In traditional.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Geographic Information Systems GIS Data Databases.
Copyright © 2013 Dorling Kindersley (India) Pvt. Ltd. Management Information Systems: Managing the Digital Firm, 12eAuthors: Kenneth C. Laudon and Jane.
Geog. 314 Working with tables.
Databases and DBMSs Todd S. Bacastow January
IST 220 – Intro to Databases
Computers: Tools for an Information Age
GO! with Microsoft Office 2016
IS 130 Information systems 1
COMSATS INSTITUTE OF INFORMATION TECHNOLOGY, VEHARI
Creating a Database Microsoft Access.
Databases Chapter 16.
Physical Database Design
Database Systems Chapter 3 1.
Fundamentals & Ethics of Information Systems IS 201
GO! with Microsoft Access 2016
Data Resource Management
CSCI-100 Introduction to Computing
Geographic Information Systems
Database Management  .
Databases A brief introduction….
Databases.
RELATIONAL DATABASE MODEL
Computers: Tools for an Information Age
Databases and Information Management
What is a Database and Why Use One?
Introduction to Database Management System
MANAGING DATA RESOURCES
Database.
File Systems and Databases
LECTURE 34: Database Introduction
PHP and MySQL.
Chapter 1: The Database Environment
CHAPTER SIX OVERVIEW SECTION 6.1 – DATABASE FUNDAMENTALS
MANAGING DATA RESOURCES
Databases and Information Management
Chapter 1: The Database Environment
The Database Environment
Spreadsheets, Modelling & Databases
DATABASES WHAT IS A DATABASE?
The ultimate in data organization
Chapter 2 Database Environment Pearson Education © 2014.
LECTURE 33: Database Introduction
The Database Environment
Microsoft Access Date.
Managing data Resources:
Geographic Information Systems
Unit – V Data Controls.
Presentation transcript:

NURS 736: Technology Solutions for Knowledge Generation in Healthcare Module 2: Database and Database Models

Definitions A Database is a shared collection of logically related data, designed to meet the information needs of multiple users in an organization DataBase Management System (DBMS): software that helps organize data in a way that allows fast and easy access to the data

Databases Advantages Disadvantages Reduced redundancy one place; single entry Integrated data retrieved from anywhere in database available for queries/reports Integrity accurate and up to date Disadvantages Can be expensive to set up Direct access to data may be limited Data excess

Database Design From smallest to largest unit: Character Field Record File Database

Database Models Types of DB Models: Flat Hierarchical Network Object oriented Relational

Database Models: Flat Binary file; contains one record per line Fields separated by delimiters, e.g. commas, or may have a fixed length No relationship between the records Example: Creating a name and address list on paper, in a word processing program or a spreadsheet. This would be called a “flat file”

Database Models: Hierarchical Example: magnetic tape, Step-like with no shortcuts Rigid, inefficient Forced series of steps to reach data you need

Database Models: Network Similar to hierarchical Redundant copies of same dataset on several networked computers Allows shortcuts

Database Models: Object Oriented inherits SUV Sports Car Automobile aggregation Super Class Passenger transport Passengers: 2 Passengers: 7 plus payload Payload Heavy duty: 800 lb capacity Object oriented model – most advanced for storing data Data attributes and functions contained within database “objects” which are reusable

Database Models: Relational Data is organized into two dimensional table Can retrieve data across all files directly without going through pathways Can extract key information

Database Models: Relational Patient Order Type Results Date Order # RBC Result # Last Name SSN Zip Code Requests WBC Figure 1: Relational Database Relational DB. Data using tables and relationships. Nearly all current databases have adopted this model as their standard. This type of table depends on TABLES and RELATIONSHIPS between those tables.

Relational Terms Column=Category The fields in the table (columns) give information about one type of category

Relational Terms Row=result The records in the table (rows) give the information about one specific result

Tables & Relationships Patient has an order Order has a result “relationship” This is an example of tables and relationships for a relational database. Emphasize the tables and the relationships between them. Note that there is a field in each table that links one to another (SSN links to order table & order # links to results table)