What is a Database? Textbook: Chapter 1 © 1999 UW CSE 2/23/2019.

Slides:



Advertisements
Similar presentations
Introduction to Database Management  Department of Computer Science Northern Illinois University January 2001.
Advertisements

CS 501: Software Engineering Fall 2000 Lecture 16 System Architecture III Distributed Objects.
1 A Student Guide to Object- Orientated Development Chapter 9 Design.
IT – DBMS Concepts Relational Database Theory.
CSC2012 Database Technology & CSC2513 Database Systems.
The Worlds of Database Systems Chapter 1. Database Management Systems (DBMS) DBMS: Powerful tool for creating and managing large amounts of data efficiently.
Database System Concepts and Architecture
Dr. Mohamed Osman Hegazi 1 Database Systems Concepts Database Systems Concepts Course Outlines: Introduction to Databases and DBMS. Database System Concepts.
Introduction.  Administration  Simple DBMS  CMPT 454 Topics John Edgar2.
Fall CSE330/CIS550: Introduction to Database Management Systems Prof. Susan Davidson Office: 278 Moore Office hours: TTh
IT 5433 LM1. Learning Objectives Understand key terms in database Explain file processing systems List parts of a database environment Explain types of.
Database Principles: Fundamentals of Design, Implementation, and Management Chapter 1 The Database Approach.
Introduction to Databases Transparencies
Chapter 1 Database and Database Users
Introduction to Databases Transparencies
Introduction to Databases
Scholastic Dishonesty
Database Systems: Design, Implementation, and Management Tenth Edition
CS4222 Principles of Database System
Accessing the Database Server: ODBC, OLE DB, and ADO
Introduction to Databases
Database Management.
Outline Types of Databases and Database Applications Basic Definitions
Chapter 2 Database Environment.
Chapter 1: Introduction
Chapter 2 Database System Concepts and Architecture
Database System Concepts and Architecture
The Object-Oriented Database System Manifesto
Database Management System
Introduction to Databases
Introduction to Databases Transparencies
Database Systems: Design, Implementation, and Management Tenth Edition
Introduction to Databases
Introduction to Databases
Database Architectures and the Web
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 2 Database System Concepts and Architecture.
Introduction to Databases
Introduction to Databases
Chapter 2 Database Environment.
Chapter 2 Database Environment Pearson Education © 2009.
Database Management System (DBMS)
Introduction to Database Management System
Chapter 2 Database Environment.
MANAGING DATA RESOURCES
Topics Covered in COSC 6340 Data models (ER, Relational, XML (short))
Database.
File Systems and Databases
Database Systems Chapter 1
LECTURE 34: Database Introduction
Introduction to Databases
Chapter 1: The Database Environment
Database Management Systems CSE594
Introduction to Databases
Chapter 1: The Database Environment
Introduction to Databases
Introduction to Databases
Introduction to Databases Transparencies
What is a Database? © 1997 UW CSE 4/11/2019.
Chapter 3 Database Management
Database System Concepts and Architecture
Introduction to Database Systems
Database Management Systems
Terms: Data: Database: Database Management System: INTRODUCTION
LECTURE 33: Database Introduction
The Database Environment
OBJECT STORAGE AND INTEROPERABILITY
Review #1 Intro stuff What is a database, 4 parts, 3 users, etc.
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management
Database management systems
CSE 444 Database Management Systems Autumn 1997 University of Washington Introduction and Welcome © 1997 UW CSE 12/12/2019.
Presentation transcript:

What is a Database? Textbook: Chapter 1 © 1999 UW CSE 2/23/2019

The Lay View "A database is any collection of information" Might be a simple file Might not even be on a computer! Far too broad, but it's hard to fight everyday usage 2/23/2019

An extreme operational definition "A database is a structured collection of information created, managed, and accessed using one of a number of software packages commonly accepted as Database Management Systems." Too limited, but on the right track. "structured" and "using a DBMS" are fairly essential 2/23/2019

Common Characteristics These are not found in every DB, but most are found in most DBs Large size Multiple files Well-structured data not free-form text, not large binary blobs Many instances of a few structures A snapshot of the real world 2/23/2019

More Characteristics Many users Under administrative control both end-users and programmers not viewed directly by end-users Under administrative control separate from end-users and programmers “Data processing” rather than “computer science” applications Characteristic applications are large, long-lived, and critical to the organization 2/23/2019

The Database Management System (DBMS) Definition: Software components for creating, administering, and managing access to the database. "Below" the DBMS: file system, operating system, networking, hardware "Above" the DBMS: DB administrator, application programs. "Above" the application programs: end-users. 2/23/2019

PCs vs Mainframes PCs: The same person may act as administrator, programmer, end-user, etc. Mainframes (or big applications generally): normally a sharp division of human roles DB and the DBMS may be part of an even more complex software/hardware arrangement multiple computers, multiple platforms, client/server, networks, tie-ins to other software systems... 2/23/2019

Some Classic DB Topics Data modeling Database design Look at the real world and the application, identify pieces of data needed and their relationships We will study "E/R modeling" Database design Turning the model into a structure supported by the DBMS We will focus on the "relational" model 2/23/2019

Classic Topics (continued) Query Languages Languages designed to support "queries" (requests for data) and other DB operations We will study the formal "relational algebra" and the practical language SQL. Transaction processing Managing user-activated programs, to guarantee service and preserve DB integrity. We will learn the key issues and terminology of concurrent access and crash recovery. 2/23/2019

Classic topics (concluded) File storage and structures How data is organized on disk for efficient access. In particular we will learn about a data structure called a "B-tree." Query processing (time permitting) How complex queries can be internally reorganized for efficiency 2/23/2019

At Least One Modern Topic Object-oriented DB Complex data types (sound, images, time-series, etc.) "Persistent" objects Integration with OO languages like C++, Java Theory and practice are both in flux 2/23/2019

Database Soup 4GL RAD RAID R/3 Datamart ODMS CORBA COM JDC SAP MDM OLAP... What's going on out there?! Schedule permitting, we'll use a little class time to sort through some current commercial developments. Your papers could also stir through the soup Your projects might use some of that stuff... 2/23/2019

As you’ve probably noticed... DB has links with many other areas of Computer Science: Operating Systems Software Engineering Computer Architecture Programming Languages etc., etc. Try to spot the connections! 2/23/2019