Lecture 1 Introduction to Database

Slides:



Advertisements
Similar presentations
Introduction to Databases
Advertisements

Prentice Hall, Database Systems Week 1 Introduction By Zekrullah Popal.
Database Systems Chapter 1
ITS232 Introduction To Database Management Systems
File Systems and Databases
Ch1: File Systems and Databases Hachim Haddouti
Chapter 1 Database Systems
Database Systems.
CSC 351 FUNDAMENTALS OF DATABASE SYSTEMS
Introduction to Databases and Database Languages
Database Systems: Design, Implementation, and Management Ninth Edition
Database Systems: Design, Implementation, and Management Ninth Edition
Database Systems Chapter 1
Chapter 1 Database Systems. Good decisions require good information derived from raw facts Data is managed most efficiently when stored in a database.
Chapter # 1 Database Systems BIS Database Systems
Database Systems: Design, Implementation, and Management Ninth Edition
Week 1 Lecture MSCD 600 Database Architecture Samuel ConnSamuel Conn, Asst. Professor Suggestions for using the Lecture Slides.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Database Design - Lecture 1
DBS201: DBA/DBMS Lecture 13.
1 Introduction An organization's survival relies on decisions made by management An organization's survival relies on decisions made by management To make.
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 1 DATABASE SYSTEMS (Cont’d) Instructor Ms. Arwa Binsaleh.
1 CSBP430 – Database Systems Chapter 1: Databases and Database Users Mamoun Awad College of Information Technology United Arab Emirates University
Chapter 1 In-lab Quiz Next week
Chapter 1 Database Systems
1 1 Chapter 1 Database Systems Database Systems: Design, Implementation, and Management, Sixth Edition, Rob and Coronel.
1 Chapter 1 Database Systems Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
Database Management System (DBMS) an Introduction DeSiaMore 1.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 1 DATABASE SYSTEMS Instructor Ms. Arwa Binsaleh.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 1 Database Systems.
Database Systems. Role and Advantages of the DBMS Improved data sharing Improved data security Better data integration Minimized data inconsistency Improved.
© 2013 Cengage Learning. All Rights Reserved. This edition is intended for use outside of the U.S. only, with content that may be different from the U.S.
Department of Mathematics Computer and Information Science1 CS 351: Database Management Christopher I. G. Lanclos Chapter 1.
© 2013 Cengage Learning. All Rights Reserved. This edition is intended for use outside of the U.S. only, with content that may be different from the U.S.
1 Chapter 1 Database Systems Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
CSC 351 FUNDAMENTALS OF DATABASE SYSTEMS. LECTURE 1: INTRODUCTION TO DATABASES.
Database Principles: Fundamentals of Design, Implementation, and Management Ninth Edition Chapter 1 Database Systems Carlos Coronel, Steven Morris, and.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 1 Database Systems.
Lecture 1 Introduction to Database (updated 22/2/2016) 21/2/2014TMC2034 Database Concept and Design1.
Database Principles: Fundamentals of Design, Implementation, and Management Chapter 1 The Database Approach.
CS311 Database Management system
Introduction To DBMS.
IS 130 Information systems 1
Database Systems Chapter 3 1.
Database Systems: Design, Implementation, and Management Tenth Edition
Database Management System (DBMS)
Database Systems: Design, Implementation, and Management Ninth Edition
What is a Database and Why Use One?
Data Base System Lecture 2: Introduction to Database
Chapter 1 Database Systems
File Systems and Databases
Managing data Resources:
Database Systems Chapter 1
Chapter 1: The Database Environment
Database Systems: Design, Implementation, and Management
Introduction to Databases
Chapter 1 Database Concepts.
Chapter 1 Database Systems
Database Principles 2 nd Ed., Coronel, Morris, Rob & Crockett © 2013 Cengage Learning EMEA Database Principles: Fundamentals of Design, Implementations.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Chapter 1 Database Systems
Chapter 1 Database Systems
The Database Environment
Introduction to Databases
Database Systems: Design, Implementation, and Management Tenth Edition
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management
Presentation transcript:

Lecture 1 Introduction to Database (updated 04/09/2016)

Objectives In this chapter, you will learn: Data vs information What a database is? Database Management System File Systems and Databases

Data vs Information

Data vs. Information Data (singular or plural) are raw facts Raw data - Not yet been processed to reveal the meaning Building blocks of information Information requires context to reveal meaning Eg, 123° 43' 52.12588" W Raw data must be formatted for storage, processing, and presentation Data are the foundation of information, which is the bedrock of knowledge

Data vs. Information (cont’d.) Information produced by processing data Information used to reveal meaning in data Accurate, relevant, timely information is the key to good decision making Good decision making is the key to organizational survival Data management: focuses on proper generation, storage, and retrieval of data

Why do I care about databases? Good decisions require good information derived from raw facts Data is managed most efficiently when stored in a database Databases solve many of the problems encountered in data management Used in almost all modern settings involving data management: Business Research Administration Important to understand how databases work and interact with other applications

What a database is?

What a Database is? A database is a collection of organized data which are collected over time. The data contains both user data and metadata. User data: raw facts of interest to end user They are student names, grades, salary etc. Metadata: data about data They are data type, relationship, date created, data modified, and file size and etc. Metadata also known as system catalog and data dictionary Database management system (DBMS) Is a collection of software Manages the database structure Controls access to data stored in the database More on this later

Database Management System

What is a Database Management System (DBMS)? An integrated database environment DBMS controls the access to the databases DBMS eliminates most of file system’s problems Current generation DBMS software: Stores data structures, relationships between structures, and access paths Defines, stores, and manages all access paths and components Logically related data stored in a single logical data repository Physically distributed among multiple storage facilities

Role of the DBMS Serve data to end user Interact DBMS directly or indirectly Use SQL to retrieve the data from the DBMS Allow writing applications for other users Java, C, C++, C# … Allow designing, creating and maintaining the database with ease Carry out the task by database administrator (DBA)

The Database System Environment

Advantages of Database Systems (1) Allow sharing of data Control of redundancy Ensure data consistency Improve data standards More control over concurrency

Advantages of Database Systems (2) Better data security Improved data integrity Better backup and recovery procedures Fast development of new applications Better data accessibility

Disadvantages of Database Systems Increased costs Management complexity Maintaining currency Vendor dependence Frequent upgrade/replacement cycles

File Systems and Databases

A Simple Database Everyone Can Do – Flat File

Flat file When data grow, processing may be difficult A dedicated program may create to read the flat file database Read line by line, fields are separated using a separator However, flat file database is subjected to structural, data dependence and data redundancy.

A Conventional File System

File System (1) Contents of each file folder are logically related Manual file systems Served as a data repository for small data collections Cumbersome for large collections Computerized file systems Data processing (DP) specialist converted computer file structure from manual system Wrote software that managed the data Designed the application programs

File System (2) Initially, computer file systems resembled manual systems As number of files increased, file systems evolved Each file used its own application program to store, retrieve, and modify data Each file was owned by individual or department that commissioned its creation

Computerized File Systems

A Simple File System

File System Redux: Spreadsheet Ubiquitous use of personal productivity tools can introduce the same problems as the old file systems Microsoft Excel Widely used by business users Users have become so adept at working with spreadsheets, they tend to use them to complete tasks for which spreadsheets are not appropriate – database substitute

Problems with File System Data Processing Lengthy development times Difficulty of getting quick answers Complex system administration Lack of security and limited data sharing Extensive programming

Contrasting Database and File Systems

Preparing for Your Database Professional Career

Question?

Which is the following businesses require database? An ice-cream store A tuition center A computer hardware and repair store A pharmacy A car spare-part store A florist store A Real estate corporation A clinic A second hand car dealer A furniture store