Information System & Database Design

Slides:



Advertisements
Similar presentations
ER Model For a college DB
Advertisements

Chapter Information Systems Database Management.
Chapter Information Systems Database Management.
Chapter 12 Information Systems Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Chapter Information Systems Database Management.
Project 1 Assignment Building a mini-database for CCI in UNCC which includes entity sets: departments (CS,SIS, bioinformatics), faculties, courses given.
1004INT Information Systems Week 10 Databases as Business Tools.
Database Design Concepts Info1408
The (min,max) notation (1,1) (0,1) (1,N) (1,1). SUMMARY OF ER-DIAGRAM NOTATION FOR ER SCHEMAS Meaning ENTITY TYPE WEAK ENTITY TYPE RELATIONSHIP TYPE IDENTIFYING.
Chapter 12 Information Systems. 2 Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Case study Lisa’s Bookstore IST210.
Database Design & ER Diagrams
Things are bad. Children no longer obey their parents and everyone is writing a book. -- Marcus Tillius Cicero.
ER Modeling Case Studies
Chapter 12 Information Systems. 2 Chapter Goals Define the role of general information systems Explain how spreadsheets are organized Create spreadsheets.
Chapter 16 (p481 – 485, ) Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
Database Organization and Design
Chapter 12 Information Systems. 2 Managing Information Information system Software that helps the user organize and analyze data Electronic spreadsheets.
Relational Databases (MS Access)
Lecture 7 of Advanced Databases
Created by, Author Name, School Name—State FLUENCY WITH INFORMATION TECNOLOGY Skills, Concepts, and Capabilities.
CS 1308 Computer Literacy and the Internet
Dr. John P. Abraham, University of Texas Pan American Information Technology Database Dr. John P. Abraham.
Database Design 3: Advanced Data Modeling Concepts CS 320.
Access Review. Access Access is a database application A database is a collection of records and files organized for a particular purpose Access supports.
COMP231 Tutorial 1 ER Model and ER to Relational Schema.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
Howard Paul. Sequential Access Index Files and Data File Random Access.
Concepts of Database Management Seventh Edition Chapter 4 Keys and Relationship.
Test SEITA.
Hoi Le. Why database? Spreadsheet is not good to: Store very large information Efficiently update data Use in multi-user mode Hoi Le2.
DATA SCIENCE MIS0855 | Spring 2016 Designing Data
DATA MODELING AND ENTITY-RELATIONSHIP MODEL II IST 210: Organization of Data IST210 1.
Object Oriented Analysis -- A Historical View “Data Processing” Era: Processes Stored in Programs Data in Associated Files Payroll Payroll Data Purchasing.
Lecture # 11 & 12 (First Exam) Chapter # 5 The Relational Data Model and Relational Database Constraints Database Systems.
2b. Create an Access Database Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
Order Database – ER Diagram
Let try to identify the conectivity of these entity relationship
Design Skills Example.
The Entity-Relationship Model
Revised: 2 April 2004 Fred Swartz
Order Database – ER Diagram
COP5725 Database Management ER DIAGRAM AND RELATIONAL DATA MODEL
ER Diagram Practical Example
Dept. of Computer & Information Sciences
Chapter 12 Information Systems.
Outline of the ER Model By S.Saha
Information Systems Database Management
Order Database – ER Diagram
Order Database – ER Diagram
CSCI-100 Introduction to Computing
Database Management  .
Entity/Relationship Model
Entity-Relationship Model and Diagrams (continued)
Order Database – ER Diagram
Week 11: Database Management System
The Entity-Relationship Model
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Order Database – ER Diagram
Databases & Consistency
CS4222 Principles of Database System
Order Database – ER Diagram
Chengyu Sun California State University, Los Angeles
ER Diagram Master How to use this template
MIS2502: Data Analytics Relational Data Modeling
Day 2 - Basic Database Backbone
Database Management system
MIS2502: Data Analytics Relational Data Modeling 3
G061 - Data Dictionary.
Presentation transcript:

Information System & Database Design CS105

What is Information System Data raw facts Information Data that has been organized to help us answer question Information System Software that helps us organize and analyze data

Information System vs. Website Directory Tables (in most database system) Website Directory Hierarchy Structure (Tree) Class CS105 Computer Concept M-2-135 Students Student Henry UMS00977588 Dan UMS00877832 … class enroll student

Tables Fields / Attribute (each column) Records (each row) Key (unique identification) cno Data cname, cr Records (each row) 7 records Courses

Entity- Relationship (ER) Model Database Schema ER Modeling / Diagram (1) An instructor is advising one or more students Students - stno - name - addr - city - state - zip Instructors - empno - name - rank - roomno - telno advising

Entity- Relationship (ER) Model ER Modeling / Diagram (2) stno name name addr empno Students advising Instructors city state rank roomno zip telno

Example in Textbook: Movie Rental Entity Movie MovieId, Title, Genre, Rating Customer CustomerId, Name, Address, CreditCardNumber Relationship Rents CustomerId, MovieId, DataRented, DateDue

Course DB Entity Relationships Students Courses Instructors Advising Grades

What you need to do Find your partner(s) You should draw an ER diagram with 2 Tables for Entities 1 Table for Relationship All tables should contain at least 1 key and 3 data fields. You should have a short description Turn in the diagram with your signatures after class.