1 TOPIC 6 DATABASE 6.1 Introduction to Database 6.2 Basic Concept of Database 6.3 Database Object DATABASE.

Slides:



Advertisements
Similar presentations
Introduction to Databases
Advertisements

Introduction to Databases
Introduction to Databases
1 Pertemuan 01 Pengantar tentang database Matakuliah: >/ > Tahun: > Versi: >
Introduction to Databases
1 Minggu 1, Pertemuan 1 Introduction to Database Matakuliah: T0206-Sistem Basisdata Tahun: 2005 Versi: 1.0/0.0.
Data Management I DBMS Relational Systems. Overview u Introduction u DBMS –components –types u Relational Model –characteristics –implementation u Physical.
Introduction to Databases Transparencies
Chapter 1 INTRODUCTION TO DATABASE.
INTRODUCTION TO DATABASES
Lecture Two Database Environment Based on Chapter Two of this book:
Chapter 1 Introduction to Databases
DBMS1 Database Management System (DBMS) Introductory Concepts Week-1.
Introduction and Conceptual Modeling
Introduction to Databases
Introduction to Database Systems 1.  Assignments – 3 – 9%  Marked Lab – 5 – 10% + 2% (Bonus)  Marked Quiz – 3 – 6%  Mid term exams – 2 – (30%) 15%
Introduction to Databases Transparencies 1. ©Pearson Education 2009 Objectives Common uses of database systems. Meaning of the term database. Meaning.
Database Design and Introduction to SQL
Introduction to Data bases concepts
Database Environment 1.  Purpose of three-level database architecture.  Contents of external, conceptual, and internal levels.  Purpose of external/conceptual.
PHASE 3: SYSTEMS DESIGN Chapter 7 Data Design.
DBMS By Narinder Singh Computer Sc. Deptt. Topics What is DBMS What is DBMS File System Approach: its limitations File System Approach: its limitations.
Module Title? DBMS Introduction to Database Management System.
Chapter 1 Introduction to Databases Pearson Education ©
Database Architecture Introduction to Databases. The Nature of Data Un-structured Semi-structured Structured.
CSC271 Database Systems Lecture # 4.
Introduction: Databases and Database Users
1 Introduction to Database Systems. 2 Database and Database System / A database is a shared collection of logically related data designed to meet the.
1 Welcome: To the second learning sequence “ Data Base (DB) and Data Base Management System (DBMS) “ Recap : In the previous learning sequence, we discussed.
Databases and Database Management Systems
Instructor: Dema Alorini Database Fundamentals IS 422 Section: 7|1.
Intro – Part 2 Introduction to Database Management: Ch 1 & 2.
Chapter(1) Introduction and conceptual modeling. Basic definitions Data : know facts that can be recorded and have an implicit. Database: a collection.
Database Management System (DBMS) an Introduction DeSiaMore 1.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
Introduction to Databases
Chapter 1 Introduction to Databases © Pearson Education Limited 1995, 2005.
Database Systems DBMS Environment Data Abstraction.
MSIS 635 DATABASE MANAGEMNT Database Systems Thomas Connolly and Carolyn Begg Third Edition – 2002 – ©Addison Wesley.
CIS/SUSL1 Fundamentals of DBMS S.V. Priyan Head/Department of Computing & Information Systems.
1 Introduction to Databases. 2 Examples of Database Applications u Purchases from the supermarket u Purchases using your credit card u Booking a holiday.
1 Chapter 1 Introduction to Databases Transparencies.
DATABASE MANAGEMENT SYSTEM By: YAMINI TRIPATHI. INTRODUCTION Consists - Collection of interrelated data - Set of programs to access those data Definition.
Introduction to Databases
Introduction to Databases Transparencies © Pearson Education Limited 1995, 2005.
1 Geog 357: Data models and DBMS. Geographic Decision Making.
Introduction to Databases Dr. Osama AL Rababah. Objectives In this capture you will learn: Some common uses of database systems. The characteristics of.
Difference between DBMS and File System
IIS 645 Database Management Systems DDr. Khorsheed Today’s Topics 1. Course Overview 22. Introduction to Database management 33. Components of Database.
1 Lecture1 Introduction to Databases Systems Database 1.
1 Management Information Systems M Agung Ali Fikri, SE. MM.
Introduction: Databases and Database Systems Lecture # 1 June 19,2012 National University of Computer and Emerging Sciences.
Introduction to Databases Transparencies
Introduction to Databases
Introduction to Databases Transparencies
Introduction to Databases
Introduction to Databases
Introduction to Databases
Introduction to Databases Transparencies
Introduction to Databases
Introduction to Databases
Introduction to Databases
Introduction to Databases
Introduction to Database Management System
Introduction to Databases
Introduction to Databases Transparencies
Introduction to Databases
Introduction to Databases
Introduction to Databases
Introduction to Databases Transparencies
Presentation transcript:

1 TOPIC 6 DATABASE 6.1 Introduction to Database 6.2 Basic Concept of Database 6.3 Database Object DATABASE

2 6.1 Introduction to Database At the end of this topic, students should be able to: 1. define ●Database ●Database Management System (DBMS) 2. describe advantages and disadvantages of database DATABASE Learning Outcome

3 DATABASE 6.1 Introduction to Database Database ● can be define as ; ● An collection of OR ● collection of data organized in a manner that allows access, retrieval, and use of that data – Shelly & Varmaat, 2012, OR ● a collection of data, manage and organized by a database management system – Petersen, 2002 ● related data, e.g. : information stored in University ( ) ● integrated: all data is stored in a uniform way on secondary storage.

4 DATABASE 6.1 Introduction to Database Database Management System (DBMS) ● can be define as ; ● that is used to create, maintain and manipulate data in the database, OR ● specific type of for creating, storing, organizing and accessing data from a database. ● provide an interface between the database and its users and other application programs ● DBA, a database administrator is the, who sets up and manage a database.

DATABASE 6.1 Introduction to Database DBMS’s example software

9 File System versus Databases Almost all application programs use either these two approaches (in managing data and information); DATABASE 6.1 Introduction to Database File SystemDatabase System

10 ● each department in an organization has its own set of files. ● the records in one file may not relate to the records in any other file. ● organizations have used file processing systems for many years. DATABASE 6.1 Introduction to Database File System

11 ● each department in an organization has its own set of files ●  Weakness#1, ● the records in one file may not relate to the records in any other file. ●  Weakness#2, ● organizations have used file processing systems for many years. ●  Weakness#3, DATABASE 6.1 Introduction to Database File System

12 ● database system – many programs and users share the data in the database. ● example#1: a school’s database most likely at a minimum contains data about students, instructors, schedule of classes, and student schedules. ● example#2: a library’s database stored data about book’s title, the author, ISBN number etc. DATABASE 6.1 Introduction to Database Database System

13 Database System, graphical representation of a School Database DATABASE 6.1 Introduction to Database

14 DATABASE 6.1 Introduction to Database

15 Advantages 1. data in a database environment is shared over a network. 2. better data accessibility using standard data query language (SQL). allows end- user to access and maintain data. 3. reduce data redundancy by improving data sharing. DATABASE 6.1 Introduction to Database

16 Advantages (continued) 4. improved data security (backup recovery, concurrency, access control) 5. is easy and fast to develop programs. 6. increasing data integrity through data independence from applications program. 7. reducing update errors (using same format) thus increasing data consistency DATABASE 6.1 Introduction to Database

17 Disadvantages 1., difficult, and time consuming to design 2. for all programmers and users 3.more memory, storage and processing power 4.Expensive hardware and software cost to setup database DATABASE 6.1 Introduction to Database

18 Disadvantages 5. Extensive conversion costs in moving form a file-based system to a database system 6. ● damage to database affects virtually all applications programs ● unauthorized users potentially could gain access to single database file that contains personal and confidential data DATABASE 6.1 Introduction to Database