Northern College Diploma Philip Bird

Slides:



Advertisements
Similar presentations
Information Systems Today: Managing in the Digital World
Advertisements

Entity Function Matrix – Putting It All Together Northern College Diploma Philip Bird.
Introduction to Databases
1 1 File Systems and Databases. 1 1 Introducing the Database 4Major Database Concepts u Data and information l Data - Raw facts l Information - Processed.
Introduction to Databases
Predecessor to the Database: Traditional File Processing Records are stored in files. Programs are customized to process the data.
File Systems and Databases
Concepts of Database Management Sixth Edition
Ch1: File Systems and Databases Hachim Haddouti
Chapter 1 INTRODUCTION TO DATABASE.
Concepts of Database Management Seventh Edition Chapter 1 Introduction to Database Management.
Databases and Database Management Systems
Week 2 Lecture 2 Structure of a database. External Schema Conceptual Schema Internal Schema Physical Schema.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Chapter 1: The Database Environment
Distributed Database and Replication. Distributed Database A logically interrelated collection of shared data and a description of this data physically.
IST Databases and DBMSs Todd S. Bacastow January 2005.
GCSE Computing: A451 Computer Systems & Programming Relational Databases Databases.
Concepts of Database Management Seventh Edition
Structured Systems Analysis and Design Methodology Northern College Diploma Philip Bird.
ITOM 2308 Introduction to Databases Review Access Database Corporate Case Study ITOM 2308 Class 81.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
Concepts of Database Management Eighth Edition
Web-Enabled Decision Support Systems
1 California State University, Fullerton Chapter 7 Information System Data Management.
Database Technical Session By: Prof. Adarsh Patel.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
Concepts of Database Management, Fifth Edition Chapter 1: Introduction to Database Management.
Announcements. Data Management Chapter 12 Traditional File Approach  Structure Field  Record  File  Fixed All records have common fields, and a field.
MIS 327 Database Management system 1 MIS 327: DBMS Dr. Monther Tarawneh Dr. Monther Tarawneh Week 2: Basic Concepts.
Intro – Part 2 Introduction to Database Management: Ch 1 & 2.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
INFORMATION MANAGEMENT Unit 2 SO 4 Explain the advantages of using a database approach compared to using traditional file processing; Advantages including.
Databases Shortfalls of file management systems Structure of a database Database administration Database Management system Hierarchical Databases Network.
Chapter 1 Introduction to Databases © Pearson Education Limited 1995, 2005.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
Ch 14 QQ T F 1.A database table consists of fields and records. T F 2.Good data validation techniques can help improve data integrity. T F 3.An index is.
Advanced Accounting Information Systems Day 7 Database Modeling.
1 Introduction to Databases. 2 Examples of Database Applications u Purchases from the supermarket u Purchases using your credit card u Booking a holiday.
Concepts of Database Management Seventh Edition Chapter 1 Introduction to Database Management.
Information Systems Today: Managing in the Digital World TB3-1 3 Technology Briefing Database Management “Modern organizations are said to be drowning.
Flat Files Relational Databases
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Database Overview What is a database? What types of databases are there? How are databases more powerful than spreadsheets?
Introduction to Databases Transparencies
Database Relationships
Databases and DBMSs Todd S. Bacastow January
Lesson 10 Databases.
Databases – Exam questions
An Introduction to database system
IS 130 Information systems 1
Database Systems Chapter 3 1.
Information Systems Today: Managing in the Digital World
Introduction to Databases
Introduction to Databases Connolly and Begg
Chapter Ten Managing a Database.
Chapter 12 Information Systems.
Introduction to Databases
CSCI-100 Introduction to Computing
What is a Database and Why Use One?
File Systems and Databases
Introduction to Databases
Database Management Concepts
Data Model.
Database Relationships
Introduction to Databases
G061 - Data Dictionary.
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management
Database Design Chapter 7.
Presentation transcript:

Northern College Diploma Philip Bird Databases Northern College Diploma Philip Bird

What is a Database? Collection of all stored operational data Uses schemas to Separate the data from how its stored Identifies entities and attributes Limit access to approved applications/people Include validation checks Use 4th GL’s to allow easy querying SELECT name, address FROM customer WHERE credit_limit>500

Each entity stores attributes that describes what we know about it Database is composed of tables (entities) linked by key fields (Relational model) Each entity stores attributes that describes what we know about it These can be described by Bachman diagrams Customer (Cust_number, Name, Address, Credit_Limit) 0123 A.Wally 24 High Street 350 0234 S.Jones 12 Huddersfield Rd 600 Customer Order Stock Item Supplier

Advantages Less data duplication New applications are easy to add Easier security monitoring Database can be distributed over many sites

Disadvantages Large and complex systems “All eggs in one basket” Difficult to design (data modelling) Requires management “All eggs in one basket”

Other Issues Security Integrity Consistency and Concurrency Recovery Administration