DATABASES WHAT IS A DATABASE?

Slides:



Advertisements
Similar presentations
Lecture Microsoft Access and Relational Database Basics.
Advertisements

Database Management: Getting Data Together Chapter 14.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Attribute databases. GIS Definition Diagram Output Query Results.
Databases and Database Management Systems
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.
IST Databases and DBMSs Todd S. Bacastow January 2005.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2007 (Week 3, Tuesday 9/4/2007)
Copyright © 2003 by Prentice Hall Module 4 Database Management Systems 1.What is a database? Data hierarchy and data organization Field, record, file,
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
1 Overview of Databases. 2 Content Databases Example: Access Structure Query language (SQL)
Introduction to SQL Steve Perry
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
Relational Databases (MS Access)
Introduction to Databases Trisha Cummings. What is a database? A database is a tool for collecting and organizing information. Databases can store information.
DATABASE MANAGEMENT SYSTEMS AND THEIR USES
Instructor: Dema Alorini Database Fundamentals IS 422 Section: 7|1.
Microsoft Access Database Software.
Prepared By Prepared By : VINAY ALEXANDER ( विनय अलेक्सजेंड़र ) PGT(CS),KV JHAGRAKHAND.
Introduction to Database Tonga Institute of Higher Education NOS 215.
+ Information Systems and Databases 2.2 Organisation.
SQL Jan 20,2014. DBMS Stores data as records, tables etc. Accepts data and stores that data for later use Uses query languages for searching, sorting,
Database Management Systems (DBMS)
Database Management Systems
Introduction to Databases Angela Clark University of South Alabama.
PREPARED BY: PN. SITI HADIJAH BINTI NORSANI. LEARNING OUTCOMES: Upon completion of this course, students should be able to: 1. Understand the structure.
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)
1 Management Information Systems M Agung Ali Fikri, SE. MM.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
5/12/  It is a repository where organizations keep their data.  Every org maintains data about its business, its employees, and other relevant.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Geographic Information Systems GIS Data Databases.
Fundamental of Database Systems
Databases and DBMSs Todd S. Bacastow January
Introduction to Microsoft Access
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Chapter 1 Introduction.
Roles in the Database Environment
Microsoft Office Access 2010 Lab 3
Database Management:.
BASIC INFORMATION ABOUT DATABASE MANAGEMENT SOFTWARE
Fundamentals & Ethics of Information Systems IS 201
NURS 736: Technology Solutions for Knowledge Generation in Healthcare
Database Management System
Chapter 12 Information Systems.
Chapter 4 Relational Databases
Database Management  .
RELATIONAL DATABASE MODEL
Databases and Information Management
What is a Database and Why Use One?
Introduction to Database Management System
Chapter 2 Database Environment Pearson Education © 2009.
Basic Concepts in Data Management
MANAGING DATA RESOURCES
Database.
File Systems and Databases
Structured Query Language
Databases.
Data Model.
Databases and Information Management
Spreadsheets, Modelling & Databases
The ultimate in data organization
Chapter 3 Database Management
Chapter 2 Database Environment Pearson Education © 2009.
Chapter 2 Database Environment Pearson Education © 2009.
Geographic Information Systems
Unit – V Data Controls.
Presentation transcript:

DATABASES WHAT IS A DATABASE? A database is a collection of data that is organized so that its contents can easily be accessed managed and updated To create a database, we need to have a Database Management Software (DBMS) Prepared by: MK SOLUTIONS MK SOLUTIONS

Problems that databases are made to address Unnecessary duplication of data Boredom and time wastage while searching for a record Misleading reports due to poor data entry and organization Poor update of records MK SOLUTIONS

Common examples of DBMS - Software DATABASE DATABASES Common examples of DBMS - Software Microsoft Access Lotus Approach MySQL DbaseIV FoxPro Oracle -dBASE -Libre Office Base MK SOLUTIONS

DATABASES Allow users to delete or add records Functions of DBMS Allow users to delete or add records Update and modify existing records Organize data for easy access, retrieval and manipulation of records Ensuring the security of data Keep statistics of data in the database. MK SOLUTIONS

DATABASES Database Models Databases can be classified according the method used to organize data namely: Flat file Hierarchical Network Relational Object Oriented Models A data model is a collection of concepts and rules for the description of the structure of the database. Structure of the database means the data types, the constraints and the relationships for the description or storage of data respectively. MK SOLUTIONS

Database Models- Flat File DATABASES Database Models- Flat File In flat file model, a database holds only one set of data and its neither different from manual files Either In databases a flat file refers to data files that contain records with no structured relationships. Flat files may contain only basic formatting, have a small fixed number of fields MK SOLUTIONS

Database Models- Hierarchical models DATABASES Database Models- Hierarchical models Data items are arranged in tree form. To access level two data items, you have to first access level 1 data item called the root component LEVEL1 LEVEL2 LEVEL3 MK SOLUTIONS

Database Models- Network Model DATABASES Database Models- Network Model Links are used to express the relationship between different data items, forming a network of items. Accessing to one item can be through multiple paths item1 item2 item3 item4 item5 item6 item7 item8 item9 MK SOLUTIONS

Database Models- Relational Model DATABASES Database Models- Relational Model Related data items are stored together in structures called relations or tables. Relationship can be created between tables such that a record or records from one table relates to another or other records in another table. Relational database model MK SOLUTIONS

Database Models- Object Oriented Models DATABASES Database Models- Object Oriented Models Object-oriented models define a database as a collection of objects with features and methods Other database models include Object-Relational model This is database model extended by some basic object-oriented concepts. These allow us to work with the widely know relational database model but also have some advantages of the object-oriented model without its complexity. MK SOLUTIONS

Features of DBMS Software DATABASE DATABASES Features of DBMS Software DBMS software comes with features that help the user to manipulate the database. These features include: Tables Queries Report generators Form interface Macros and Modules MK SOLUTIONS

Features of DBMS Software - Tables DATABASE DATABASES Features of DBMS Software - Tables Tables in a database are used to hold related data items Tables are arranged in rows and columns with each row representing a record and columns represent common fields MK SOLUTIONS

Features of DBMS Software - Queries DATABASE DATABASES Features of DBMS Software - Queries A query is a statement used to extract, change, analyze or request for specific data from one or more tables For example, you might only want to see how many individuals in your database live in a given city. Or you might only want to see which individuals have registered with your database within a given time period. As with many other tasks, you can query a database either programmatically or via a user interface. MK SOLUTIONS

Features of DBMS Software – Forms/Input Screen DATABASE DATABASES Features of DBMS Software – Forms/Input Screen A form is a graphical interface that resembles an ordinary paper form. They are used to enter and view data in a database MK SOLUTIONS

Features of DBMS Software – Forms/Input Screen DATABASE DATABASES Features of DBMS Software – Forms/Input Screen Report carry the output from the database. Reports are used in decision making and analysis MK SOLUTIONS

Features of DBMS Software – Macros & Modules DATABASE DATABASES Features of DBMS Software – Macros & Modules Macros is used to automate processes in the database When the database becomes more and more complex, a programming language is used to further automate the processes, these languages are included in a module in the software MK SOLUTIONS

Data Organization in a database DATABASES Data Organization in a database Data is organized from the simplest form called a field to a very complex structure called a database These forms are: Fields Records Tables Database MK SOLUTIONS

Data Organization in a database- Fields DATABASES Data Organization in a database- Fields A field is a character or a logical combination of characters that represent a data item. MK SOLUTIONS

Data Organization in a database- Records DATABASES Data Organization in a database- Records A record is a collection of related fields that represent a single entity. MK SOLUTIONS

DATABASE A table is a collection of related records. DATABASES Data Organization in a database- Tables A table is a collection of related records. MK SOLUTIONS

DATABASE A database holds related files or tables DATABASES Data Organization in a database- Database A database holds related files or tables MK SOLUTIONS