Database Basics Alan B. Marr, M.D., F.A.C.S. Associate Professor of Clinical Surgery.

Slides:



Advertisements
Similar presentations
Database Modeling Past and Present
Advertisements

WHAT D IS RAW, UNPROCESSED FACTS AND FIGURES COLLECTED, STORED AND PROCESSED BY COMPUTERS.
Fundamentals, Design, and Implementation, 9/e Appendix A Data Structures for Database Processing.
Chapter Chapter 13-2 Chapter 13 Data Modeling Introduction An Overview of Databases Steps in Creating a Database Using Rea Creating Database Tables.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 Key.
Database Design Conceptual –identify important entities and relationships –determine attribute domains and candidate keys –draw the E-R diagram Logical.
3-1 Chapter 3 Data and Knowledge Management
1004INT Information Systems Week 10 Databases as Business Tools.
SLIDE 1IS Fall 2002 Database Management: Discussion Session University of California, Berkeley School of Information Management and.
WELL-DESIGNED DATABASES Process faster Easy to develop and maintain Easy to read and write code.
“DOK 322 DBMS” Y.T. Database Design Hacettepe University Department of Information Management DOK 322: Database Management Systems.
8/28/97Information Organization and Retrieval Files and Databases University of California, Berkeley School of Information Management and Systems SIMS.
Chapter 3: Data Modeling
BUSINESS DRIVEN TECHNOLOGY
Databases and Database Management Systems
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design Copyright 2000 © John Wiley & Sons, Inc. All rights reserved. Slide 1 Data.
Modeling & Designing the Database
Relational Databases What is a relational database? What would we use one for? What do they look like? How can we describe them? How can you create one?
IST Databases and DBMSs Todd S. Bacastow January 2005.
File and Database Design SYS364. Today’s Agenda WHTSA DBMS, RDBMS, SQL A place for everything and everything in its place. Entity Relationship Diagrams.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2007 (Week 3, Tuesday 9/4/2007)
Information storage: Introduction of database 10/7/2004 Xiangming Mu.
DATABASE MANAGEMENT SYSTEMS BASIC CONCEPTS 1. What is a database? A database is a collection of data which can be used: alone, or alone, or combined /
A Guide to SQL, Eighth Edition Chapter Two Database Design Fundamentals.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Introduction to Databases A line manager asks, “If data unorganized is like matter unorganized and God created the heavens and earth in six days, how come.
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
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.
1 A Guide to MySQL 2 Database Design Fundamentals.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Lecture2: Database Environment Prepared by L. Nouf Almujally & Aisha AlArfaj 1 Ref. Chapter2 College of Computer and Information Sciences - Information.
Storing Organizational Information - Databases
Information Systems & Databases 2.2) Organisation methods.
Organizing Data and Information. What is Data?? Numbers, characters, images, or other method of recording, in a form which can be assessed by a human.
What's a Database A Database Primer Let’s discuss databases n Why they are hard n Why we need them.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
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,
Technology Guide 3 Data & Database. Agenda Definition File processing problems Database Selection criteria.
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
Chapter 4-1. Chapter 4-2 Chapter 4: Data Modeling Introduction An Overview of Databases Steps in Creating a Database Using REA Creating Database Tables.
1 The Information School of the University of Washington Dec 1fit advdatabases © 2006 University of Washington Advanced Database Concepts INFO/CSE.
Description and exemplification of entity-relationship modelling.
 An entity-relationship diagram (ERD) is a specialized graphic that illustrates the interrelationships between entities in a database.
In this session, you will learn to: Map an ER diagram to a table Objectives.
+ Information Systems and Databases 2.2 Organisation.
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
BSA206 Database Management Systems Lecture 2: Introduction to Oracle / Overview of Database Concepts.
1 DATABASE TECHNOLOGIES (Part 2) BUS Abdou Illia, Fall 2015 (September 9, 2015)
Flat Files Relational Databases
DES715 – Database Design Conceptual design. Database Life Cycle Database initial study Database design Implementation Testing Operation Maintenance.
Copyright (c) 2014 Pearson Education, Inc. Introduction to DBMS.
Microsoft Access 2010 Chapter 11 Database Design.
Hoi Le. Why database? Spreadsheet is not good to: Store very large information Efficiently update data Use in multi-user mode Hoi Le2.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
Databases and DBMSs Todd S. Bacastow January
SEEM3430: Information Systems Analysis and Design
Systems Analysis and Design
CSCI-100 Introduction to Computing
Basic Concepts in Data Management
MANAGING DATA RESOURCES
Database.
Database Design Hacettepe University
DATABASES WHAT IS A DATABASE?
Presentation transcript:

Database Basics Alan B. Marr, M.D., F.A.C.S. Associate Professor of Clinical Surgery

Objectives Define Database Database Hx Steps of design

What is a Database? A method to store information Easy retrieval Easy update

Database History Flat file –Delimited text –Scan sequential entries –Not easily searchable

Database History Hierarchical Database –Inverted tree –Each file related only to one above or below –No lateral links –Requires repeat data –Hard to search

Database History Network Model –Improvement over hierarchical –Each file with multiple owners –Still can’t relate files to each other

Database History Relational Database –Flexible –No hard structure –File makeup Entries Attributes –SQL

Steps to Developing a Database 1: Planning and Analysis 2: Conceptual design 3: Logical design 4: Physical Design 5: Implementation

Planning and Analysis Anticipate question Literature review Data collection format

Conceptual design Data modeling –Sketch database relationships Entity-relationship diagram

Entity-Relationship Diagram Entity –Person –Place –Thing –Event –Concept Attributes –Descriptors of entities Primary key –Unique descriptor

E-R Example PatientOperation GET Relationship Surgeon Perform

Logical Design Refine conceptual design Normalize data Ensure data integrity

Physical Design Programming logical design Data tables created Forms made and linked Security

Implementation Data entered Database navigated Continual reassessment

Summary Database design important Follow 5 basic steps –1: Planning and Analysis – 2: Conceptual design – 3: Logical design – 4: Physical Design – 5: Implementation