Databases and Database Management Systems

Slides:



Advertisements
Similar presentations
Chapter 10: Designing Databases
Advertisements

Introduction to Databases
Management Information Systems, Sixth Edition
Computer Concepts 5th Edition Parsons/Oja Page 492 CHAPTER 10 File And Database Concepts Section A PARSONS/OJA Databases.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA
Databases Chapter Distinguish between the physical and logical view of data Describe how data is organized: characters, fields, records, tables,
File Systems and Databases
Database Management: Getting Data Together Chapter 14.
3-1 Chapter 3 Data and Knowledge Management
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
BUSINESS DRIVEN TECHNOLOGY
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
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.
Software Development Unit 2 Databases What is a database? A collection of data organised in a manner that allows access, retrieval and use of that data.
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
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.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
MICROSOFT ACCESS 2007 BTA – Spring What is Access?  Microsoft Access is a database management system…this means that it contains database information.
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.
1 California State University, Fullerton Chapter 7 Information System Data Management.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Management Information Systems By Effy Oz & Andy Jones
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
Databases and Database Management Systems
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
DAY 12: DATABASE CONCEPT Tazin Afrin September 26,
Storing Organizational Information - Databases
Instructor: Dema Alorini Database Fundamentals IS 422 Section: 7|1.
Database What is a database? A database is a collection of information that is typically organized so that it can easily be storing, managing and retrieving.
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.
Databases. What is a database?  A database is used to store data. The word DATA is actually Latin for FACTS. A database is, therefore, a place, or thing.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
Chapter 4c, Database H Definition H Structure H Parts H Types.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
INFORMATION MANAGEMENT Unit 2 SO 4 Explain the advantages of using a database approach compared to using traditional file processing; Advantages including.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
FILES AND DATABASES. A FILE is a collection of records with similar characteristics, e.g: A Sales Ledger Stock Records A Price List Customer Records Files.
1 Introduction to Oracle Chapter 1. 2 Before Databases Information was kept in files: Each field describes one piece of information about student Fields.
Introduction to Database Tonga Institute of Higher Education NOS 215.
Database Concepts Track 3: Managing Information using Database.
Database Management Systems (DBMS)
IT in Business Personal and PC Databases Lecture – 14.
DATA RESOURCE MANAGEMENT
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Chapter 10 Database Management. Data and Information How are data and information related? p Fig Next processing data stored on disk Step.
Flat Files Relational Databases
1 Chapter 9 Database Management. Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe.
Databases Chapter Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
1 Geog 357: Data models and DBMS. Geographic Decision Making.
UNIVERSITI TENAGA NASIONAL “Generates Professionals” MODULE 5 : Part 1 INTRODUCTION TO DATABASE.
Introduction to Databases Dr. Osama AL Rababah. Objectives In this capture you will learn: Some common uses of database systems. The characteristics of.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
Database Concepts and Applications in HRIS
Database Presentation BIM, Mrs. Bailey. **Database Notes** Use new sheet of paper! Microsoft Access - known as a database management system or DBMS Database.
Data Model.
DATABASES WHAT IS A DATABASE?
The ultimate in data organization
Chapter 3 Database Management
Presentation transcript:

Databases and Database Management Systems

Definition A database is an application package used for storage and retrieval of data A database is a structured collection of related data Databases and DBMS

Why Use a Database? All organisations need to keep records of transactions they perform with suppliers and customers Organisations need records of employees, orders, invoices etc The business needs to be able to find information quickly and easily as needed Databases and DBMS

Terminology Entity This is the thing/object you are recording information about. Types of entities Person Employee Country Customer Product Invoice Order Part Databases and DBMS

Attributes Attributes are the characteristics that describe the entities. For the entity Employee: Name - Address Age - Gender Tel No - Soc Sec Number etc Dept - Date Hired Databases and DBMS

Fields This is where we store the attributes Name Age Address etc No two fields can have the same name Databases and DBMS

Record A record holds all the data relating to a single person or a single transaction etc A record is a collection of Fields The number if Fields needed depends on the subject Databases and DBMS

A File Is a collection of records All the student records would make up the Student File All the employee’s records could make up the Employee File Databases and DBMS

A Organisation Database Contains all the files within the organisation A College Database could contain the following files Student File Course File Grant File Personnel File Student Applications File Databases and DBMS

Database Models Not all databases store data in the same way. This depends on the type of software used. Database Models are Relational - Hierarchical Network - Object Oriented For our course we are using Access which is a Relational Model Databases and DBMS

DBMS The Database Management System (DBMS) is the software that manages the database It is the user interface that allows the user to create, add, delete and generally manipulate the data in the database Databases and DBMS

COLLEGE DATABASE Databases and DBMS

COLLEGE DATABASE Databases and DBMS

COLLEGE DATABASE Databases and DBMS

Linking We need to repeat some fields so that we can LINK the tables The repeated fields allow us to link the information in one table to that in another Databases and DBMS

PRIMARY KEY A primary key is one that uniquely identifies a record Student ID is a number allocated to each student as there may be 2 students with the same name Databases and DBMS

Relationships If we want to link data from different tables we must define RELATIONSHIPS between the tables This involves linking the Primary Key field of one table with a field in a second table Databases and DBMS

Database Query When we want to extract information from a database this is called a ‘Query’ The result is a screen display that shows the information you want which may have been extracted for one or more tables Databases and DBMS

Features of a DBMS It allows us to create database files It enables the user to update, delete, add or change data in the database It enables the user to link tables It enables the user to query the database The user can produce reports on screen or in printed form Databases and DBMS

Query “Co Mayo” If we query the Student database regarding which students come from Co Mayo the database will give us the following result Databases and DBMS

Advantages of Databases The DBMS makes the entry of data to the system is quick and easy Data is organised in a way that minimises data redundancy (re-entering of the same data over and over) Databases and DBMS

Advantages A DBMS allows the organisation to have a central store of information so anyone who needs access can get it A DBMS can keep data secure by using passwords etc and limiting access to the data Better access to data for decision-making Databases and DBMS

Advantages Easy update and retrieval of data Easy to create reports for management Reduced data redundancy Data is shared throughout the organisation Better security of data Better data integrity Databases and DBMS

Disadvantages Cost of the software Complexity Size – huge amounts of data Backup procedures required High impact of failure Skilled personnel needed to maintain a DBMS Databases and DBMS

Summary A DBMS is a powerful piece of software for managing data Can store large quantities of data Data is consistent throughout the organisation when a DBMS is used (data integrity) It is easier to maintain data security It is much easier to distribute information throughout the organisation Databases and DBMS