Welcome to the Data Analytics Toolkit PowerPoint presentation on EHR architecture and meaningful use.

Size: px
Start display at page:

Download "Welcome to the Data Analytics Toolkit PowerPoint presentation on EHR architecture and meaningful use."

Transcription

1 Welcome to the Data Analytics Toolkit PowerPoint presentation on EHR architecture and meaningful use.

2 When data is collected and entered into the electronic health record, the data is ultimately stored in a database. When analyzing the objectives related to Meaningful Use, data needs to be extracted from the database. It is likely that you ve all worked with databases in some capacity. Most of you are probably familiar with Microsoft Excel s spreadsheets. This a a flat-file type of database. However, it is unlikely that the data that must be acquired for Meaningful Use is stored in a flat-file database. That is because there are several limitations with this type of database - it can t handle large datasets (more than 1 million rows), you can t access the data using a programming language, and it is not multi-user friendly.

3 A better approach that has been adopted by most healthcare organizations is to store the data in a relational database which can be defined in terms of the relations of data. These databases can handle very large datasets, can be accessed and queried using a programming language, support multiple users, and can be accessed and updated remotely.

4 A relational database is structured into tables, each table is referred to by an entity or a noun. For instance, one table might have information about a patient and therefore be referred to as the Patient table. The list of adjectives that would describe the entity are known as attributes and are listed in the table. For the patients table, the attributes may include gender, state of residence, year of birth, name, etc. There are typically many different tables and they often can be related to other tables based on common attributes. The common attributes are known as relations and they are the verbs that connect two entities. For instance, we might have a patients table and a medications table, which lists all the medications patients are taking. Both tables might share the common attribute of a patient identifier and therefore can be related. The relation is similar to a verb in that a patient TAKES medication. The relation between the patients table and medications table can be used for combining data for queries.

5 Here is a picture of an entity relation diagram which represents a relational database. This database includes a patient, medications, and diagnosis table. The medication and diagnosis tables can be related to the patient table because they all share the attribute, PatientID. Similarly, the medications table can be linked to the diagnosis table because they share the attribute, DiagnosisID.

6 There are three different types of relationships that can exist between tables. These different ways are understood as rules of cardinality. The first type of relationship is a Many-to-Many relationship. These types of relationships are very common in the real world, but not in a relational database. An example would be that many different physicians may prescribe many different medications. The problem with these types of relationships is that they lead to a less efficient database. A solution to this problem is to create a third, intervening table called an intersection table. This breaks the many-to-many relationship into two

7 one-to-many relationships. The second type of relationship is known as a oneto-many relationship. This occurs when an entity or table is related to one or more instances of another entity. For example, one patient can have many diagnoses. This is the most common type of relationship in a relational database. The last type of relationship is a one-to-one relationship. This occurs when both entities are related by one and only one instance of the other entity. For example, one patient can only have one date of birth. It is advised to combine entities into one table if a one-to-one relationship exists. In the entity-relation-diagram shown on the previous slide, there are three tables and three one-to-many relationships. That is, one patient can have many medications, one patient can have many diagnoses, and, one diagnosis can have many medications.

8 The type of relationship for a specific entity is represented as symbols on an entity-relation diagram. If an entity has a relationship with another table where one and only one record matches, this would be depicted as two straight lines. If one or many records match that of another table, this is depicted as a triangle and a line. A zero, or one, or many relationship is depicted as a triangle with a circle. Finally a zero or one relationship is depicted as a line and a circle. These symbols are important for interpreting an entity-relationdiagram for determining the type of relationship between two tables.

9 For instance, if we consider the entity-relation-diagram shown previously, we see that the relationship between the patient and medication table is one-tomany where zero, or one, or many patients can be taking a medication, and one and only one patient is assigned to each instance of a medication.

10 Keys are the attributes that link entities. A primary key is an attribute which can uniquely identify a particular instance of an entity. For example, the primary key for the Patient table shown previously is PatientID. It is important to realize that a primary key must be distinct. Therefore, when considering this characteristic for primary keys, would a patient s full name be acceptable? Probably not, as it may not be unique. A social security number may also not be unique. A medical record number could be used, however, there are instances where we find duplicate records and duplicate medical record numbers for a single patient. When a table s primary key is present in another table, this is known as a foreign key. For instance, PatientID is present in both the medications and diagnosis tables. Therefore, although PatientID is the primary key in the patients table it is also the foreign key in the medications and diagnosis tables. The foreign keys are used to create a link between the different entities.

11 The primary keys are unique identifiers. Each table has a Primary key. The primary key in the patient table is PatientID. The primary key in the medications table is MedicationID, and the primary key in the diagnosis table is DiagnosisID.

12 Foreign keys are shown in both the medications and the diagnosis table. The foreign keys in the medications table include PatientID and DiagnosisID while the foreign keys in the diagnosis table include PatientID. Because the patient table does not have any instances of medications or diagnoses, the patient table does not have a foreign key. Consider the one-to-many relationship. For each one patient there may be many diagnoses and medications. Therefore, in order to link the patient table with the other tables, we need to include the patient ID in the medication and diagnosis tables. Anytime there is a

13 one-to-many relationship, the many side of that relationship holds the foreign key.

14 The reason keys are used is primarily for organizational purposes. Without them, the tables would become cumbersome and impossible to link or navigate. If you consider the way the data is stored in spreadsheet form, this may become more apparent.

15 The patient table includes data on each of the patients. Each row has information for one and only one patient. We have the gender, year of birth, and state of residence for each patient.

16 However, because the PatientID also shows up in the diagnosis table, and the fact that each patient can have zero, one, or many diagnoses, we find that one patientid may show up once, more than once, or not at all.

17 The medications table is very similar. The same PatientID may show up in the medications table once, more than once, or not at all. Also, the same medication for the same patient can be used for more than one diagnosis. Therefore, the patientid and MedicationID may match but the DiagnosisID may differ for those rows of data.

18 A data dictionary is essential in order to fully understand the data elements within a relational database. The data dictionary lists all of the attributes in each table, and provides a brief description of the attribute, the data type (e.g., date/time, numerical), the length of the data in the field, and several other fields that can provide information about the data.

19 For the example shown in this presentation, the data dictionary shows that the patient table includes 5 columns of data. The PatientID is the primary key and is a unique identifer data type which is never left blank. The definition of the PatientID is a unique identifier for a patient record. Gender is stored as character that is 1 letter long and not left blank. The data is stored as M for males and F for female. You can go through each of the other columns to see their data type and descriptions.

20 The medication table includes 8 columns of data. The MedicationID is a unique identifier for a patient medication and is the primary key. There are two foreign keys: the patientid which is the unique identifier for a patient taking the medication and DiagnosisID which is the identifier for the diagnosis that the provider linked to the medication.

21 The diagnosis table has a primary key called the DiagnosisID which is the unique identifier for a patient diagnosis. The foreign key in this table is the PatientID which is the unique identifier for the patient.

22 When considering EHR architecture, particularly consider the implications of the data storage. The data that is needed for assessing the core and menu objectives and clinical quality measures is derived from these databases. Therefore, an understanding of relational databases is essential for understanding the data and ensuring data quality.

23

EXTENDED LEARNING MODULE A

EXTENDED LEARNING MODULE A EXTENDED LEARNING MODULE A DESIGNING DATABASES AND ENTITY- RELATIONSHIP DIAGRAMMING Student Learning Outcomes 1. Identify how databases and spreadsheets are both similar and different. 2. List and describe

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz March 1, 2015 The Database Approach to Data Management Database: Collection of related files containing records on people, places, or things.

More information

1 Class Diagrams and Entity Relationship Diagrams (ERD)

1 Class Diagrams and Entity Relationship Diagrams (ERD) 1 Class Diagrams and Entity Relationship Diagrams (ERD) Class diagrams and ERDs both model the structure of a system. Class diagrams represent the dynamic aspects of a system: both the structural and behavioural

More information

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

More information

Welcome to the Data Analytics Toolkit PowerPoint presentation on clinical quality measures, meaningful use, and data analytics.

Welcome to the Data Analytics Toolkit PowerPoint presentation on clinical quality measures, meaningful use, and data analytics. Welcome to the Data Analytics Toolkit PowerPoint presentation on clinical quality measures, meaningful use, and data analytics. According to the Centers for Medicare and Medicaid Services, Clinical Quality

More information

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1 - Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

ISM 318: Database Systems. Objectives. Database. Dr. Hamid R. Nemati

ISM 318: Database Systems. Objectives. Database. Dr. Hamid R. Nemati ISM 318: Database Systems Dr. Hamid R. Nemati Department of Information Systems Operations Management Bryan School of Business Economics Objectives Underst the basics of data databases Underst characteristics

More information

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0 ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended

More information

No doubt, fleet managers. Fleet Information Management: IT for Fleet Managers: Part 1

No doubt, fleet managers. Fleet Information Management: IT for Fleet Managers: Part 1 IT for Fleet Managers: Part 1 Fleet Information Management: This is the first in a series of articles on information technology for fleet managers. Understanding how the data elements relate makes using

More information

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet

More information

User Services. Microsoft Access 2003 II. Use the new Microsoft

User Services. Microsoft Access 2003 II. Use the new Microsoft User Services July 2007 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Chapter 5 Foundations of Business Intelligence: Databases and Information Management 5.1 Copyright 2011 Pearson Education, Inc. Student Learning Objectives How does a relational database organize data,

More information

5.5 Copyright 2011 Pearson Education, Inc. publishing as Prentice Hall. Figure 5-2

5.5 Copyright 2011 Pearson Education, Inc. publishing as Prentice Hall. Figure 5-2 Class Announcements TIM 50 - Business Information Systems Lecture 15 Database Assignment 2 posted Due Tuesday 5/26 UC Santa Cruz May 19, 2015 Database: Collection of related files containing records on

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Setting up a basic database in Access 2003

Setting up a basic database in Access 2003 Setting up a basic database in Access 2003 1. Open Access 2. Choose either File new or Blank database 3. Save it to a folder called customer mailing list. Click create 4. Double click on create table in

More information

Attribute Data and Relational Database. Lecture 5 9/21/2006

Attribute Data and Relational Database. Lecture 5 9/21/2006 Attribute Data and Relational Database Lecture 5 9/21/2006 definition Attribute data is about what of a spatial data and is a list or table of data arranged as rows and columns Rows are records (map features)

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Access 2007. Creating Databases - Fundamentals

Access 2007. Creating Databases - Fundamentals Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view

More information

Access Tutorial 2 Building a Database and Defining Table Relationships

Access Tutorial 2 Building a Database and Defining Table Relationships Access Tutorial 2 Building a Database and Defining Table Relationships Microsoft Office 2013 Objectives Session 2.1 Learn the guidelines for designing databases and setting field properties Create a table

More information

A brief overview of developing a conceptual data model as the first step in creating a relational database.

A brief overview of developing a conceptual data model as the first step in creating a relational database. Data Modeling Windows Enterprise Support Database Services provides the following documentation about relational database design, the relational database model, and relational database software. Introduction

More information

Microsoft Access Part I (Database Design Basics) ShortCourse Handout

Microsoft Access Part I (Database Design Basics) ShortCourse Handout Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences

More information

CHAPTER 6 DATABASE MANAGEMENT SYSTEMS. Learning Objectives

CHAPTER 6 DATABASE MANAGEMENT SYSTEMS. Learning Objectives CHAPTER 6 DATABASE MANAGEMENT SYSTEMS Management Information Systems, 10 th edition, By Raymond McLeod, Jr. and George P. Schell 2007, Prentice Hall, Inc. 1 Learning Objectives Understand the hierarchy

More information

Microsoft Access 2003 Module 1

Microsoft Access 2003 Module 1 Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional

More information

Chapter 5 Foundations of Business Intelligence: Databases and Information Management

Chapter 5 Foundations of Business Intelligence: Databases and Information Management 1 Chapter 5 Foundations of Business Intelligence: Databases and Information Management LEARNING TRACK 1: DATABASE DESIGN, NORMALIZATION, AND ENTITY-RELATIONSHIP DIAGRAMMING This Hands-On Guide will show

More information

Designing Databases. Introduction

Designing Databases. Introduction Designing Databases C Introduction Businesses rely on databases for accurate, up-to-date information. Without access to mission critical data, most businesses are unable to perform their normal daily functions,

More information

Data Warehousing With Microsoft Access

Data Warehousing With Microsoft Access R. Jason Weiss Development Dimensions International This issue s edition of the Leading Edge was submitted by guest writer Robert J. Townsend. Data Warehousing With Microsoft Access Robert J. Townsend

More information

A Basic introduction to Microsoft Access

A Basic introduction to Microsoft Access A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database

More information

Database IST400/600. Jian Qin. A collection of data? A computer system? Everything you collected for your group project?

Database IST400/600. Jian Qin. A collection of data? A computer system? Everything you collected for your group project? Relational Databases IST400/600 Jian Qin Database A collection of data? Everything you collected for your group project? A computer system? File? Spreadsheet? Information system? Date s criteria: Integration

More information

Microsoft Access 2007 Module 1

Microsoft Access 2007 Module 1 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

Information Technology Services Kennesaw State University

Information Technology Services Kennesaw State University Information Technology Services Kennesaw State University Microsoft Access 2007 Level 1 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied

More information

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N).

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N). Lab 3 Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

More information

8. DATABASES 8.1 WIKIPEDIA ON DATABASES: MSF 574: NO NEED TO DO THESE PROJECTS.

8. DATABASES 8.1 WIKIPEDIA ON DATABASES: MSF 574: NO NEED TO DO THESE PROJECTS. MSF 574: NO NEED TO DO THESE PROJECTS. 8. DATABASES 8.1 WIKIPEDIA ON DATABASES: A database management system (DBMS) is a complex set of software programs that controls the organization, storage, management,

More information

Preview of the Attestation System for the Medicare Electronic Health Record (EHR) Incentive Program

Preview of the Attestation System for the Medicare Electronic Health Record (EHR) Incentive Program Preview of the Attestation System for the Medicare Electronic Health Record (EHR) Incentive Program The Medicare EHR Incentive Program provides incentive payments to eligible professionals, eligible hospitals

More information

Database Database Management System (DBMS)

Database Database Management System (DBMS) Database Database Management System (DBMS) Introduction to databases A database is a collection of structured and related data items organized so as to provide a consistent and controlled access to items.

More information

Converting an Excel Spreadsheet Into an Access Database

Converting an Excel Spreadsheet Into an Access Database Converting an Excel Spreadsheet Into an Access Database Tracey L. Fisher Personal Computer and Software Instructor Butler County Community College - Adult and Community Education Exceeding Your Expectations..

More information

Microsoft Access 2010: Basics & Database Fundamentals

Microsoft Access 2010: Basics & Database Fundamentals Microsoft Access 2010: Basics & Database Fundamentals This workshop assumes you are comfortable with a computer and have some knowledge of other Microsoft Office programs. Topics include database concepts,

More information

Welcome to the Meaningful Use and Data Analytics PowerPoint presentation in the Data Analytics Toolkit. In this presentation, you will be introduced

Welcome to the Meaningful Use and Data Analytics PowerPoint presentation in the Data Analytics Toolkit. In this presentation, you will be introduced Welcome to the Meaningful Use and Data Analytics PowerPoint presentation in the Data Analytics Toolkit. In this presentation, you will be introduced to meaningful use and the role of data analytics in

More information

www.gr8ambitionz.com

www.gr8ambitionz.com Data Base Management Systems (DBMS) Study Material (Objective Type questions with Answers) Shared by Akhil Arora Powered by www. your A to Z competitive exam guide Database Objective type questions Q.1

More information

Database Management. Technology Briefing. Modern organizations are said to be drowning in data but starving for information p.

Database Management. Technology Briefing. Modern organizations are said to be drowning in data but starving for information p. Technology Briefing Database Management Modern organizations are said to be drowning in data but starving for information p. 509 TB3-1 Learning Objectives TB3-2 Learning Objectives TB3-3 Database Management

More information

School account creation guide

School account creation guide School account creation guide Contents Your welcome email Page 2 The CSV file Page 3 Uploading the CSV and creating the accounts Page 5 Retrieving staff usernames and passwords Page 8 Retrieving student

More information

Data Modelling And Normalisation

Data Modelling And Normalisation Access made easy. Data Modelling And Normalisation 02 www.accessallinone.com This guide was prepared for AccessAllInOne.com by: Robert Austin This is one of a series of guides pertaining to the use of

More information

Access Part 2 - Design

Access Part 2 - Design Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will

More information

Care360 EHR Frequently Asked Questions

Care360 EHR Frequently Asked Questions Care360 EHR Frequently Asked Questions Table of Contents Care360 EHR... 4 What is Care360 EHR?... 4 What are the current capabilities of Care 360 EHR?... 4 Is Care 360 EHR an EMR?... 5 Can I have Care360

More information

Data and Information Management in Public Health

Data and Information Management in Public Health Data and Information Management in Public Health Adrienne S. Ettinger, Sc.D., M.P.H. Environmental Public Health Tracking Methods Course July 2004 Outline Information Management in Public Health Information

More information

Course Title: Microsoft Access 2007- Basic Duration: 12 hours

Course Title: Microsoft Access 2007- Basic Duration: 12 hours Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic

More information

Introduction to IBM Watson Analytics Data Loading and Data Quality

Introduction to IBM Watson Analytics Data Loading and Data Quality Introduction to IBM Watson Analytics Data Loading and Data Quality December 16, 2014 Document version 2.0 This document applies to IBM Watson Analytics. Licensed Materials - Property of IBM Copyright IBM

More information

Access Tutorial 2: Tables

Access Tutorial 2: Tables Access Tutorial 2: Tables 2.1 Introduction: The importance of good table design Tables are where data in a database is stored; consequently, tables form the core of any database application. In addition

More information

LMS USER GUIDE AN INTRODUCTION TO REPORTS

LMS USER GUIDE AN INTRODUCTION TO REPORTS LMS USER GUIDE AN INTRODUCTION TO REPORTS Report Information The E nable system generates a lot of data to enable administrators/monitors/managers to obtain information useful to their organisation. Different

More information

z Introduction to Relational Databases for Clinical Research Michael A. Kohn, MD, MPP michael.kohn@ucsf.edu copyright 2007Michael A.

z Introduction to Relational Databases for Clinical Research Michael A. Kohn, MD, MPP michael.kohn@ucsf.edu copyright 2007Michael A. z Introduction to Relational Databases for Clinical Research Michael A. Kohn, MD, MPP michael.kohn@ucsf.edu copyright 2007Michael A. Kohn Table of Contents Introduction...1 Relational Databases, Keys,

More information

Critical Care EEG Database Public Edition. User Manual

Critical Care EEG Database Public Edition. User Manual Critical Care EEG Database Public Edition User Manual v. 9/25/2015 Table of Contents Overview... 2 Installation... 2 Basic Structure 2 Installing the Files 3 Connecting to Data 4 Configuration... 4 System

More information

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training MS Access 2010 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training materials

More information

Instructions for applying data validation(s) to data fields in Microsoft Excel

Instructions for applying data validation(s) to data fields in Microsoft Excel 1 of 10 Instructions for applying data validation(s) to data fields in Microsoft Excel According to Microsoft Excel, a data validation is used to control the type of data or the values that users enter

More information

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Chapter 6 Foundations of Business Intelligence: Databases and Information Management 6.1 2010 by Prentice Hall LEARNING OBJECTIVES Describe how the problems of managing data resources in a traditional

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Planning and Creating a Custom Database

Planning and Creating a Custom Database Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined

More information

Database Design Basics

Database Design Basics Database Design Basics Table of Contents SOME DATABASE TERMS TO KNOW... 1 WHAT IS GOOD DATABASE DESIGN?... 2 THE DESIGN PROCESS... 2 DETERMINING THE PURPOSE OF YOUR DATABASE... 3 FINDING AND ORGANIZING

More information

Using Microsoft Access Databases

Using Microsoft Access Databases Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database

More information

Health Foundations Module

Health Foundations Module FSA GROUP AND HEALTH TRACK Health Foundations Module SECTION 1: MODULE OVERVIEW The Financial and Health Economics Module discusses a macro view of the health care system. This module, Health Foundations,

More information

Tutorial on Relational Database Design

Tutorial on Relational Database Design Tutorial on Relational Database Design Introduction Relational database was proposed by Edgar Codd (of IBM Research) around 1969. It has since become the dominant database model for commercial applications

More information

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:

More information

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database.

Physical Design. Meeting the needs of the users is the gold standard against which we measure our success in creating a database. Physical Design Physical Database Design (Defined): Process of producing a description of the implementation of the database on secondary storage; it describes the base relations, file organizations, and

More information

PRINCIPLES OF EFFECTIVE DATABASE DESIGN

PRINCIPLES OF EFFECTIVE DATABASE DESIGN PRINCIPLES OF EFFECTIVE DATABASE DESIGN Table of Contents Page LESSON 1: WHAT IS A DATABASE?...1 LESSON 2: IDENTIFYING REQUIREMENTS...3 LESSON 3: CONCEPTUAL DESIGN - THE STORYBOARD...5 LESSON 4: CONCEPTUAL

More information

Instructions for data-entry and data-analysis using Epi Info

Instructions for data-entry and data-analysis using Epi Info Instructions for data-entry and data-analysis using Epi Info After collecting data using the tools for evaluation and feedback available in the Hand Hygiene Implementation Toolkit (available at http://www.who.int/gpsc/5may/tools

More information

Database Management Systems

Database Management Systems Database Management Systems Database Design (1) 1 Topics Information Systems Life Cycle Data Base Design Logical Design Physical Design Entity Relationship (ER) Model Entity Relationship Attributes Cardinality

More information

Lecture Notes INFORMATION RESOURCES

Lecture Notes INFORMATION RESOURCES Vilnius Gediminas Technical University Jelena Mamčenko Lecture Notes on INFORMATION RESOURCES Part I Introduction to Dta Modeling and MSAccess Code FMITB02004 Course title Information Resourses Course

More information

Entity/Relationship Modelling. Database Systems Lecture 4 Natasha Alechina

Entity/Relationship Modelling. Database Systems Lecture 4 Natasha Alechina Entity/Relationship Modelling Database Systems Lecture 4 Natasha Alechina In This Lecture Entity/Relationship models Entities and Attributes Relationships Attributes E/R Diagrams For more information Connolly

More information

Maximizing Legacy Data Migration to a New EHR

Maximizing Legacy Data Migration to a New EHR WHITE PAPER Maximizing Legacy Data Migration to a New EHR By Joy Ales, MHA, BSN, RN, Sr. Consultant, An Encore Point of View August 2015 Encore, A Quintiles Company AN ENCORE POINT OF VIEW When organizations

More information

IN THIS PROJECT, YOU LEARN HOW TO

IN THIS PROJECT, YOU LEARN HOW TO UNIT 2 PROJECT 11 CREATING A CUSTOMIZED DATABASE IN THIS PROJECT, YOU LEARN HOW TO Examine a Database and Its Objects Create Tables and Set Field Properties in Design View Create Relationships Add and

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and Information Management Content Problems of managing data resources in a traditional file environment Capabilities and value of a database management

More information

DATABASE INTRODUCTION

DATABASE INTRODUCTION Introduction The history of database system research is one of exceptional productivity and startling economic impact. We have learnt that from the days of file-based systems there are better ways to handle

More information

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior. Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,

More information

Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives

Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives Describe how the problems of managing data resources in a traditional file environment are solved

More information

Entity-Relationship Model

Entity-Relationship Model UNIT -2 Entity-Relationship Model Introduction to ER Model ER model is represents real world situations using concepts, which are commonly used by people. It allows defining a representation of the real

More information

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports Introduction...2 Tables...3 Designing a Table...3 Data Types...4 Relationships...8 Saving Object Designs and Saving Data...9 Queries...11

More information

Topic: Relationships in ER Diagram and Relationships in MS Access

Topic: Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Topic: Relationships in ER Diagram and Relationships in MS Access Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

More information

EXCEL XML SPREADSHEET TUTORIAL

EXCEL XML SPREADSHEET TUTORIAL EXCEL XML SPREADSHEET TUTORIAL In this document we are going to work with our Excel XML spreadsheet that we used in Video 1. You have now identified your shoe products and have one image of each of these

More information

Microsoft Access 2010 Basics & Database Fundamentals

Microsoft Access 2010 Basics & Database Fundamentals Microsoft Access 2010 Basics & Database Fundamentals Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Access Basics & Database Fundamentals 3.0 hours Microsoft Access is

More information

Database Design and Normalization

Database Design and Normalization Database Design and Normalization 3 CHAPTER IN THIS CHAPTER The Relational Design Theory 48 46 Database Design Unleashed PART I Access applications are database applications, an obvious statement that

More information

Creating Tables ACCESS. Normalisation Techniques

Creating Tables ACCESS. Normalisation Techniques Creating Tables ACCESS Normalisation Techniques Microsoft ACCESS Creating a Table INTRODUCTION A database is a collection of data or information. Access for Windows allow files to be created, each file

More information

CA IDMS. Database Design Guide. Release 18.5.00, 2nd Edition

CA IDMS. Database Design Guide. Release 18.5.00, 2nd Edition CA IDMS Database Design Guide Release 18.5.00, 2nd Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Lesson 1 Tutorial 1 Database Applications Microsoft Access Lesson 1 Introduction For Lesson 1, you will work through Tutorial 1 in your textbook. The tutorial may expose you to more information than is

More information

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit

More information

DPL. Portfolio Manual. Syncopation Software, Inc. www.syncopation.com

DPL. Portfolio Manual. Syncopation Software, Inc. www.syncopation.com 1 DPL Portfolio Manual Syncopation Software, Inc. www.syncopation.com Copyright 2009 Syncopation Software, Inc. All rights reserved. Printed in the United States of America. March 2009: First Edition.

More information

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013 c 2015 by David W. Gerbing School of Business Administration Portland State University July 2, 2015 CONTENTS 1 Contents 1 Create a New Database 1 2

More information

INSURANCE Training Guide

INSURANCE Training Guide INSURANCE Training Guide Group Insurance premium calculator May 2015 Training Guide Group Insurance premium calculator Before you are able to use the Group Insurance premium calculator you must have: 1.

More information

AMERICAN BOARD OF UROLOGY 2016 CERTIFICATION EXAMINATION PROCESS INSTRUCTIONS FOR SUBMISSION OF ELECTRONIC LOGS

AMERICAN BOARD OF UROLOGY 2016 CERTIFICATION EXAMINATION PROCESS INSTRUCTIONS FOR SUBMISSION OF ELECTRONIC LOGS AMERICAN BOARD OF UROLOGY 2016 CERTIFICATION EXAMINATION PROCESS INSTRUCTIONS FOR SUBMISSION OF ELECTRONIC LOGS Please read all instructions carefully before preparing your log. It will be returned for

More information

Course 103402 MIS. Foundations of Business Intelligence

Course 103402 MIS. Foundations of Business Intelligence Oman College of Management and Technology Course 103402 MIS Topic 5 Foundations of Business Intelligence CS/MIS Department Organizing Data in a Traditional File Environment File organization concepts Database:

More information

Web Conferencing Demo and Tutorial

Web Conferencing Demo and Tutorial Web Conferencing Demo and Tutorial Overview Share presentations, documents, Web content & applications with individuals and groups around the world Adds a visual component to a conference call Enhances

More information

Getting Started With Mortgage MarketSmart

Getting Started With Mortgage MarketSmart Getting Started With Mortgage MarketSmart We are excited that you are using Mortgage MarketSmart and hope that you will enjoy being one of its first users. This Getting Started guide is a work in progress,

More information

Data Management Issues in Epidemiology

Data Management Issues in Epidemiology 1 Data Management Issues in Epidemiology Wayne Enanoria, PhD, MPH Public Health Epidemiologist Email: enanoria@berkeley.edu 2 Outline Steps of a Project: Defining new variables Format and range of permissible

More information

Creating Codes with Spreadsheet Upload

Creating Codes with Spreadsheet Upload Creating Codes with Spreadsheet Upload Ad-ID codes are created at www.ad-id.org. In order to create a code, you must first have a group, prefix and account set up and associated to each other. This document

More information

Doing database design with MySQL

Doing database design with MySQL Doing database design with MySQL Jerzy Letkowski Western New England University ABSTRACT Most of the database textbooks, targeting database design and implementation for information systems curricula support

More information

Setting up a basic database in Access 2007

Setting up a basic database in Access 2007 Setting up a basic database in Access 2007 1. Open Access. This is the screen that you should see 2. Click on Blank database 3. Enter the name customer mailing list in the file name section (this will

More information