Principles of Database Design, Part I AIMS 2710 R. Nakatsu.

Slides:



Advertisements
Similar presentations
C6 Databases.
Advertisements

Lecture-7/ T. Nouf Almujally
Foundations of Relational Implementation n Defining Relational Data n Relational Data Manipulation n Relational Algebra.
Chapter 5 Database Concepts. Why Study Databases? Databases have incredible value to business. Probably the most important technology for supporting operations.
Chapter 5 Database Concepts. Why Study Databases? Databases have incredible value to businesses. Very important technology for supporting operations.
Information Systems Chapter 2 Organizing Data and Information.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA
Chapter 3 An Introduction to Relational Databases.
Organizing Data & Information
Chapter 5 Database Concepts.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
SESSION 7 MANAGING DATA DATARESOURCES. File Organization Terms and Concepts Field: Group of words or a complete number Record: Group of related fields.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Chapter 1 Introduction to Databases
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
An Introduction to Database Management Systems R. Nakatsu.
Database Management Last Update Copyright Kenneth M. Chipps Ph.D. 1.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA ebay
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Intro to MIS – MGS351 Databases and Data Warehouses Chapter 3.
DBMS By Narinder Singh Computer Sc. Deptt. Topics What is DBMS What is DBMS File System Approach: its limitations File System Approach: its limitations.
Your Interactive Guide to the Digital World Discovering Computers 2012.
Discovering Computers Fundamentals, 2012 Edition Your Interactive Guide to the Digital World.
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
DATABASE. A database is collection of information that is organized so that it can easily be accessed, managed and updated. It is also the collection.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
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.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe the qualities of valuable information.
Instructor: Dema Alorini Database Fundamentals IS 422 Section: 7|1.
Introduction to Computers Lesson 10B. home Database A collection of related data or facts.
MIS 327 Database Management system 1 MIS 327: DBMS Dr. Monther Tarawneh Dr. Monther Tarawneh Week 2: Basic Concepts.
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
Chapter 5 Data Resource Management. 2 I. Why do organizations store data?  Data resources must be structured and organized in some logical manner so.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
Database Management Systems.  Database management system (DBMS)  Store large collections of data  Organize the data  Becomes a data storage system.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
DATABASE MANAGEMENT SYSTEMS CMAM301. Introduction to database management systems  What is Database?  What is Database Systems?  Types of Database.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
1 Database & DBMS The data that goes into transaction processing systems (TPS), also goes to a database to be stored and processed later by decision support.
What have we learned?. What is a database? An organized collection of related data.
Data resource management
1 Introduction to Databases. 2 Examples of Database Applications u Purchases from the supermarket u Purchases using your credit card u Booking a holiday.
Database Fundamentals CSC105 Furman University Peggy Batchelor.
Programming Logic and Design Fourth Edition, Comprehensive Chapter 16 Using Relational Databases.
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Foundations of Business Intelligence: Databases and Information Management.
1 Chapter 9 Database Management. Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe.
Chapter 13.3: Databases Invitation to Computer Science, Java Version, Second Edition.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Intro to MIS – MGS351 Databases and Data Warehouses
Fundamentals of Information Systems, Sixth Edition
Chapter 4 Relational Databases
Database Management  .
RELATIONAL DATABASE MODEL
Databases and Information Management
MANAGING DATA RESOURCES
Database.
Databases and Information Management
Presentation transcript:

Principles of Database Design, Part I AIMS 2710 R. Nakatsu

File-Processing Systems

Problems with File-Processing Systems n Data are separated and isolated n Data are often duplicated n Incompatible data files

DBMS Relationships

The Relational Model n Data is represented in two-dimensional tables  Each of the tables is a matrix consisting of a series of row/column intersections  Files are called tables or relations  Fields (i.e. columns) of the tables are called attributes  Records (i.e. rows) of the tables are called tuples (rarely used terminology) n Information in more than one table can be easily extracted and combined

TableRowColumn FileRecordField RelationTupleAttribute Related Terminology: Three ways to refer to the same thing

What is a database? n A database is an integrated collection of logically related data elements. A database consolidates records previously stored in separate files. n A database can be viewed as the topmost element of a data hierarchy:  database (a set of related files)  file (a collection of related records)  record (a group of logically related fields)  field (an attribute)  character (single alphabet, number, or other symbol)

Database Management System (DBMS) A DBMS (database management system) is a set of computer programs that is used to create, maintain, and provide controlled access to user databases What are some of the DBMS products on the marketplace today?

DBMS: Main Functions n Data definition  Define what data is stored, the type of data, how the data is related.  Specify how the data can be formatted and validated n Data manipulation  You can select which data you want, filter it, sort it, join it with other data, summarize it (querying data) n Application Development  Graphical tools to develop menus, forms, and reports n Data control  Allows you to specify security, as well as how the data can be shared.  Backup and recovery tools