Simple Database.

Slides:



Advertisements
Similar presentations
Database Theory Each Table in a Database needs a Primary Key Data TypesDescriptionExample TextCharacters (Letters, numbers and symbols) ABC 123 NumberNumerical.
Advertisements

The database approach to data management provides significant advantages over the traditional file-based approach Define general data management concepts.
Management Information Systems, Sixth Edition
Databases Chapter Distinguish between the physical and logical view of data Describe how data is organized: characters, fields, records, tables,
Database Software File Management Systems Database Management Systems.
1 A GUIDE TO ORACLE8 CHAPTER 1: Introduction to Client/Server Databases 1.
Database Management An Introduction.
12 CHAPTER DATABASES Databases are the key to accessing information throughout our lives. Used in hospitals, grocery stores, schools, department stores,
Database Management: Getting Data Together Chapter 14.
1 Introduction The Database Environment. 2 Web Links Google General Database Search Database News Access Forums Google Database Books O’Reilly Books Oracle.
Multiple Tiers in Action
1212 CHAPTER DATABASES. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved Competencies Distinguish between the physical and logical view.
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
Copyright 2003 The McGraw-Hill Companies, Inc CHAPTER Application Software computing ESSENTIALS    
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
Attribute databases. GIS Definition Diagram Output Query Results.
Web-based Control Interface For a model train control system By: Kevin Sendra.
Introduction To Databases IDIA 618 Fall 2014 Bridget M. Blodgett.
Relational Database M S
Database System Concepts and Architecture Lecture # 3 22 June 2012 National University of Computer and Emerging Sciences.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2012 (September 5, 2012)
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
1 Overview of Databases. 2 Content Databases Example: Access Structure Query language (SQL)
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
MET280: Computing for Bioinformatics Introduction to databases What is a database? Not a spreadsheet. Data types and uses DBMS (DataBase Management System)
Professor Michael J. Losacco CIS 1110 – Using Computers Database Management Chapter 9.
Relational Databases Database Driven Applications Retrieving Data Changing Data Analysing Data What is a DBMS An application that holds the data manages.
1 Client/Server Databases and the Oracle Relational Database.
Database A database is a collection of data organized to meet users’ needs. In this section: Database Structure Database Tools Industrial Databases Concepts.
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 7 Information System Data Management.
Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
MIS 327 Database Management system 1 MIS 327: DBMS Dr. Monther Tarawneh Dr. Monther Tarawneh Week 2: Basic Concepts.
Mainframe (Host) - Communications - User Interface - Business Logic - DBMS - Operating System - Storage (DB Files) Terminal (Display/Keyboard) Terminal.
Enhanced Guide to Oracle8i
Chapter 4 Database Processing Copyright © 2013 Pearson Education, Inc. Publishing as Prentice Hall 4-1.
EAK 362/2 MIS LECTURE 4 PART 2 Managing Databases.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
CS 1308 Computer Literacy and the Internet
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
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.
Database revision.
Database Concepts Track 3: Managing Information using Database.
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.
0 / Database Management. 1 / Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.
DATABASES. -2 Competencies Distinguish between the physical and logical view of data Describe how data is organized Describe databases Describe the five.
3/6: Data Management, pt. 2 Refresh your memory Relational Data Model
Databases Chapter Copyright © 2011 by The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 9 Vocabulary Databases. 1.Table – a collection of information, or data arranged in columns and rows. 2.Record – all of the information about one.
CIS 250 Advanced Computer Applications Database Management Systems.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Chapter 4 Relational Database, Pivot Charts, and Switchboard.
Introduction to Databases Angela Clark University of South Alabama.
3-1 Modeling Basic Entities DBMS Create Sort Search Addition Deletion Modification Create Sort Search Addition Deletion Modification DBMS is a Software.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
COMSATS INSTITUTE OF INFORMATION TECHNOLOGY, VEHARI
Database Management  .
System And Application Software
MANAGING DATA RESOURCES
Database.
Tiers vs. Layers.
MANAGING DATA RESOURCES
File Operations Access Permissions.
The Database Environment
DATABASES WHAT IS A DATABASE?
ບົດທີ 6 ການຄຸ້ມຄອງຊັບພະຍາກອນຂໍ້ມູນ (Managing Data Resource)
DATABASE TECHNOLOGIES
Presentation transcript:

Simple Database

Objectives Identify Type of databases (based on relationship of the data) Remember Database models (based on management software) How to access the database (SQL)

Types of Databases (data relationship) Hierarchical Relational Object-oriented

Hierarchical Databases

Relational Database Holds data in a group of tables that can be related to one another by columns they have in common Column headings are called field names Rows are called records, which are made up of individual fields Each row of data can be identified uniquely by the content of one or more fields (primary key) Result of a database search is called a query

Object-Oriented Database Holds objects such as BLOB (Binary Large Object) data types that hold video clips, graphics, photographs, and other large binary data

Database models (based on management software) File server Client/Server Database Model Internet Client/Server Database Model

File Server Model

Client/Server Database Model Some database management software is on the client, some is on the server that contains the database 2-tier model (client and server) Used in most Internet applications today

Client/Server Database Model

Internet Client/Server Database Model Differs from traditional client/server model: Neither client nor server portions of database software are on the PC of the Internet user The browser on the user’s PC accesses a database via the client/server model (client is on the web site and server has direct access to the database) 3-tier model (browser, client, server) Advantage Client PC does not need to contain database management software

Internet Client/Server Database Model

Use SQL (Structured Query Language) to Access Data The standard for the command set used to interface with most databases Database engine Applications software that provides a user with an interface to the DBMS Database server Computer that contains the database and the DBMS

Summary Type of databases (based on relationship of the data) Database models (based on management software) How to access the database (SQL)