Instructor 彭智勇 武汉大学软件工程国家重点实验室 电话:

Slides:



Advertisements
Similar presentations
CS4432Notes 11 CS 4432 Database Systems II Lecture 1: Introduction.
Advertisements

CMPT 454, Simon Fraser University, Fall 2009, Martin Ester 1 Database Systems II Introduction.
CSC 485E/CSC 571 Advanced Databases Introduction.
CPSC 310/6031 CPSC 310 Database Systems CPSC 603 Database Systems and Applications Prof. Jennifer Welch.
CSC 485D/586D/SEng 480D Introduction. In essence a database is nothing more than a collection of information that exists over a long period of time. Databases.
CSC 485E/SENG 480D/CSC 571 Advanced Databases Introduction.
CPSC-608 Database Systems Fall 2011 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #6.
CS Winter 2002Notes 11 CMPS 277: officially Relational Databases but this quarter Database Implementation Notes 01: Introduction Arthur Keller.
Databases and Database Management System. 2 Goals comprehensive introduction to –the design of databases –database transaction processing –the use of.
CS 245Notes 11 CS 245: Database System Principles Notes 01: Introduction Hector Garcia-Molina.
CPSC-608 Database Systems Fall 2010 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes 1.
CPSC-608 Database Systems Fall 2010 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #6.
CPSC-608 Database Systems Fall 2011 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes 1.
1 Course: Database Management Systems Credits: 3 Prepared by: Assoc. Prof. Dr. Duong Tuan Anh Faculty of Computer Science & Engineering HoChiMinh City.
DATABASE MANAGEMENT SYSTEM ARCHITECTURE
CS462: Introduction to Database Systems. ©Silberschatz, Korth and Sudarshan1.2Database System Concepts Course Information Instructor  Kyoung-Don (KD)
1 CS222: Principles of Database Management Fall 2010 Professor Chen Li Department of Computer Science University of California, Irvine Notes 01.
Overview of a Database Management System
Introduction. 
The Worlds of Database Systems Chapter 1. Database Management Systems (DBMS) DBMS: Powerful tool for creating and managing large amounts of data efficiently.
Chapter Oracle Server An Oracle Server consists of an Oracle database (stored data, control and log files.) The Server will support SQL to define.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
Instructor 彭智勇 武汉大学计算机学院珞珈学者特聘教授 软件工程国家重点实验室 电话 :
CS4432Notes 11 CS 4432 Database Systems II Lecture 1: Introduction.
CS4432Notes 11 CS 4432 Database Systems II Lecture 1: Introduction Professor Elke A. Rundensteiner Today: Tim Sutherland.
DBMS 2001Notes 1: Introduction1 Principles of Database Management Systems (Tietokannanhallintajärjestelmät) Pekka Kilpeläinen Fall 2001.
Introduction: The Megatron-3000 Database-Management System (Slides by Hector Garcia-Molina,
Introduction to Database Management Systems. Information Instructor: Csilla Farkas Office: Swearingen 3A43 Office Hours: Monday, Wednesday 4:15 pm – 5:30.
Introduction to Database Management Systems. Information Instructor: Csilla Farkas Office: Swearingen 3A43 Office Hours: M,T,W,Th,F 2:30 pm – 3:30 pm,
Introduction to Database Management Systems. Information Instructor: Csilla Farkas Office: Swearingen 3A43 Office Hours: Monday, Wednesday 2:30 pm – 3:30.
DATABASE MANAGEMENT SYSTEM ARCHITECTURE
COMP4100: Database System Principles 01: Introduction.
Introduction.  Administration  Simple DBMS  CMPT 454 Topics John Edgar2.
Chapter 11 Database System Implementation Spring 2001 Prof. Sang Ho Lee School of Computing, Soongsil Univ.
CPSC-310 Database Systems
Scholastic Dishonesty
Databases and DBMSs Todd S. Bacastow January
CPSC 603 Database Systems Lecturer: Laurie Webster II, Ph.D., P.E.
Introduction to DBMS Purpose of Database Systems View of Data
Databases (CS507) CHAPTER 2.
Instructor 彭智勇 武汉大学软件工程国家重点实验室 电话:
Module 11: File Structure
CS 245: Database System Principles Notes 01: Introduction
CS 245: Database System Principles Notes 01: Introduction
CS422 Principles of Database Systems Course Overview
Chapter 9 Database Systems
Chapter 1: Introduction
Introduction What is a Database?.
Persistence Database Management Systems
Introduction to Database Systems
RELATIONAL DATABASE MODEL
Translation of ER-diagram into Relational Schema
Databases and Information Management
Chapter 3: Data Management Systems
Introduction to Database Systems
Database management concepts
1.1 The Evolution of Database Systems
Chapter 9 Database and Information Management.
Introduction to Database Management Systems
CS 4432 Database Systems II Lecture 1: Introduction
Databases and Information Management
Introduction to DBMS Purpose of Database Systems View of Data
Database management concepts
ICOM 5016 – Introduction to Database Systems
Chapter 1: Introduction
CPSC-608 Database Systems
CPSC-608 Database Systems
Chapter 1: Introduction
Presentation transcript:

Instructor 彭智勇 武汉大学软件工程国家重点实验室 电话:87653196 Email: zypeng@public.wh.hb.cn

Book 经典原版书库 《Database System Implementation》 (斯坦福大学) 机械工业出版社 (美)Hator Garcia-Molina, Jeffrey.D.Ullman, Jennifer Widom 著 (斯坦福大学) 机械工业出版社

Marking Scheme Assignment (4) (练习,3次): 15% Small Test (3) (小测验,3次): 15% Final Examination (期末考试): 70% Total 100%

Practice 安装PostgreSQL系统 分析PostgreSQL源代码 改进PostgreSQL系统 http://www.postgresql.org

Database System Implementation Hector Garcia-Molina Jeffrey D. Ullman Jennifer Widom

Chapter 1 Introduction to DBMS Implementation

Database Management System A database management system (DBMS) is a powerful tool for creating and managing large amounts of data efficiently and allowing it to persist over long periods of time, safely.

Capabilities of a DBMS Persistent Storage Programming interface allowing the user to access and modify data through a powerful query language. Transaction Management supporting concurrent access to data and resiliency ( i.e. recovering from failures or errors)

Terminology Review Data Database Query Relation Schema (Metadata) A collection of data, well organized for access and modification, preserved over a long period. Query Relation An organization of data into a two-dimensional table. Schema (Metadata) A description of the structure of the data.

A Simple DBMS: Megatron 2000 Megatron 2000 is a relational database management system which supports the SQL query language.

Megatron 2000 Implementation The Relation Students(name, id, dept) Data: /usr/db/students Smith#123#CS Johnson#522#EE …… Schema: /usr/db/schema Students#name#STR#id#INT#dept#STR Depts#name#STR#office#STR ……

Execution of Megatron 2000 DBMS dbhost> megatron2000 WELCOME TO MEGATRON 2000 ! & SELECT * FROM Students # name id dept Smith 123 CS Johnson 522 EE

& SELECT * FROM Students WHERE id>= 500 | HighID # /usr/db/HighID Johnson#522#EE

How Megatron 2000 Executes Queries SELECT * FROM R WHERE <Condition> Read the file schema to determine the attributes of relation R and their types. Check that the <Condition> is semantically valid for R. Display each of the attribute names as the header of a column, and draw a line. Read the file named R, and for each line: (a) Check the condition, and (b) Display the line as a tuple, if the condition is true.

SELECT * FROM R WHERE <Condition> | T Read the file schema to determine the attributes of relation R and their types. Check that the <Condition> is semantically valid for R. Read the file named R, and for each line: (a) Check the condition, and (b) Write the result to a new file /usr/db/T, if the condition is true. 4. Add to the file /usr/db/schema an entry for T that looks just like the entry for R, except that relation name T replaces R. That is, the schema for T is the same as the schema for R.

Example 1.2 SELECT office FROM Students, Depts WHERE Students.name = ‘Smith’ AND Students.dept = Depts.name # for (each tuple s in Students) for (each tuple d in Depts) if(s and d satisfy the WHERE-condition) display the office value from Depts;

Problem (1) of Megatron 2000 Tuple layout on disk The data layout on disk is not flexible. e.g., - Change string from ‘Cat’ to ‘Cats’ and we have to rewrite file - ASCII storage is expensive - Deletions are expensive

Problem (2) of Megatron 2000 Search expensive; no indexes e.g., - Cannot find tuple with given key quickly - Always have to read full relation

Problem (3) of Megatron 2000 Brute force query processing Query-processing is not clever. e.g., select * from R,S where R.A = S.A and S.B > 1000 - Do select first? - More efficient join?

Problem (4) of Megatron 2000 No buffer manager There is no buffer in main memory. e.g., Need caching

Problem (5) of Megatron 2000 There is no concurrency control.

Problem (6) of Megatron 2000 No reliability e.g., - Can lose data - Can leave operations half done

Problem (7) of Megatron 2000 No security e.g., - File system insecure - File system security is coarse

Problem (8) of Megatron 2000 No application program interface (API) e.g., How can a payroll program get at the data?

Problem (9) of Megatron 2000 Cannot interact with other DBMSs.

Problem (10) of Megatron 2000 Poor dictionary facilities

Problem (11) of Megatron 2000 No GUI

Overview of a Database Management System administrator User/application transaction commands queries, updates DDL Commands Query Compiler DDL Compiler Transaction Manager query plan metadata statistics metadata Execution engine Logging and Recovery Concurrency Control Index, file, and record requests Index/file/rec- Ord manager log pages page commands data, metadata, indexes Buffer manager Lock table read/write pages Storage manager Buffers Storage

Storage Management It is responsible for storing data, metadata, indexes, and logs. An important storage management component is the buffer manager, which keeps portions of the data contents in main memory.

Query Processing A user or an application program initiates query to extract data from the database. The query is parsed and optimized by a query compiler. The resulting query plan is executed by the execution engine.

Transaction Management Logging and Recovery Concurrency Control Deadlock Resolution

Course Overview C2 Memory hierarchy Storage-Management Overview C3 Storage of data elements C4 one-dimensional indexes C5 Multidimensional indexes Query Processing C6 Query Execution C7 Query compiler and optimizer Transaction-Processing C8 System failures C9 Concurrency control C10 More about transaction management Information integration

The course lets students know better ways of building a database management system.