• No results found

Scope of this Course. Database System Environment. CSC 440 Database Management Systems Section 1

N/A
N/A
Protected

Academic year: 2021

Share "Scope of this Course. Database System Environment. CSC 440 Database Management Systems Section 1"

Copied!
12
0
0

Loading.... (view fulltext now)

Full text

(1)

CSC 440

Database Management Systems

Section 1

Acknowledgment: Slides borrowed from Dr. Rada Chirkova. This presentation uses slides and lecture notes available from http://www-db.stanford.edu/~ullman/dscb.html#slides

Spring 2008 CSC440: Database Management Systems 2

Scope of this Course

Directed at computer science undergraduate students

Introduces concepts and theory

Requires design and development of a database

application

Implementation-specific details are not the focus

of the course — you learn those on your own

Intensive

Database System Environment

DATABASE SYSTEM

DBMS SOFTWARE

Application Programs / Queries

Users / Programmers

Processing Queries / Programs

(2)

Spring 2008 CSC440: Database Management Systems 4

Contents

Introduction

Database programming basics

Data modeling: entity-relationship approach Relational data model

Relational algebra

SQL

Constraints and triggers

Transactions, security, and authorization in SQL

Spring 2008 CSC440: Database Management Systems 5

Contents (cont’d)

Data-storage and index structures

Recovery

Concurrency control Query execution Distributed databases

Prerequisites

CSC 316 (Data structures for computer

scientists)

Knowledge of discrete mathematics and

predicate logic

Sufficient ability to program in Java or a

(3)

Spring 2008 CSC440: Database Management Systems 7

Course Textbook

Database Systems: The Complete Book, by

Hector Garcia-Molina, Jeffrey D. Ullman, and Jennifer Widom, Prentice Hall.

Bundled with Gradiance software for

homeworks

Spring 2008 CSC440: Database Management Systems 8

Instructor

Peng Ning, associate professor of Computer Science

Email policy pning@ncsu.edu Phone (919) 513-4457

Office: EBII-3258, Centennial Campus Office hours: Tuesdays and Thursdays

9:45-10:45am, or by appointment

Teaching Assistant

Ms. Yao Liu

Office hours: Tuesdays and Thursdays, 4pm - 5pm

Office: EBII-3323

(4)

Spring 2008 CSC440: Database Management Systems 10

Now Tell Us about Yourself

Interview your neighbor and have

him/her interview you

Introduce your neighbor to the class

Spring 2008 CSC440: Database Management Systems 11

Course Website

http://courses.ncsu.edu/csc440/lec/001/

Tour of web sites

Important: course announcements:

on the web site

Learning objectives and lecture slides on the

web

Assignments

Reading assignments: see course web page Chapter 1 and Section 8.5 now Eight homework assignments

All work is to be done individually unless

otherwise specified.

For the collaborative problems, you may form

teams of 2-3 members (of students in this class) to cooperate only on those problems. After discussing the problems, please write up your answers individually. Indicate the names of the other members in your team, if any.

(5)

Spring 2008 CSC440: Database Management Systems 13

Project

All students are required to complete a

course project

The details will be announced on the course website

You need to start forming project teams Talk to your classmates

Use the message board

Spring 2008 CSC440: Database Management Systems 14

Grading

Quizzes

5%

Assignments 10%

Project (demo day April 23) 22%

Midterm (February 28 in class) 30%

Final exam (April 29, 8-11am) 33%

Why the Homeworks

Are Important

(6)

Spring 2008 CSC440: Database Management Systems 16

Self-Study Responsibilities

Some of the topics are important but are

either quite straightforward or not a main focus of this course.

These topics will be identified as self-study

topics on the course web page.

Your knowledge of them will be evaluated

as appropriate through exams, homework, programming assignments, or the project.

Spring 2008 CSC440: Database Management Systems 17

Miscellaneous

Rules: The NC State University and Department of Computer Science rules regarding academic honesty apply

Regrade policy: see syllabus

Discussion

Discuss the syllabus in pairs

(7)

Spring 2008 CSC440: Database Management Systems 19

Setting Goals and Expectations

Write your goals for the semester (2-3 phrases) Write your expectations of me as a teacher (2-3

phrases)

Anonymously: hand in rumors, if any, you have

heard about the course or about me. We will discuss the rumors next time.

You may also ask me questions.

Spring 2008 CSC440: Database Management Systems 20

Topic #1:

A Brief Introduction to DBMS:

The Big Picture

Group Discussion

What do you know already about the topic? We’ll see next week!

What questions do you have about the course content?

(8)

Spring 2008 CSC440: Database Management Systems 22

An Example of a Database

STUDENT: Name StudentNumber Class Major

Smith 17 1 CSC Brown 8 2 ECE Green 24 2 CSC White 37 1 CSC

GRADE_RPRT: StudentNo Course Grade

17 CSC742 17 CSC316 B 24 CSC742 8 CSC742 B+

Spring 2008 CSC440: Database Management Systems 23

Database: What It Is

Coherent collection of data with inherent

meaning

Random assortment of data is not a database

About an aspect of the world

Changes in the world are reflected in the

database

Fit to use for its intended purpose

Somebody is going to use the database

Group Discussion

(9)

Spring 2008 CSC440: Database Management Systems 25

Database System Environment

DATABASE SYSTEM

DBMS SOFTWARE

Application Programs / Queries

Users / Programmers

Processing Queries / Programs

Accessing Stored Data

Stored Database Definition (Meta-Data)

Stored Database

Spring 2008 CSC440: Database Management Systems 26

Database Management System

Specialized software

Buy, install, set up for particular application Available for PC’s, workstations, mainframes,

supercomputers

Is expected to:

Database Management System

Specialized software

Buy, install, set up for particular application

Available for PC’s, workstations, mainframes,

supercomputers

(10)

Spring 2008 CSC440: Database Management Systems 28

Database Management System

(cont’d)

Major vendors/products:

Oracle IBM (DB2)

Microsoft (SQL Server, Access)

Powerful tool for providing efficient, convenient, and safe multi-user storage of and access to

massive amounts of persistent data

Spring 2008 CSC440: Database Management Systems 29

Example: Banking System

Data = information on accounts,

customers, balances, current interest

rates, transaction histories, etc

Massive

Persistent

Multi-user

Example (2 of 4)

Jane at ATM1: withdraw $100 from account #55 Get balance from database

If balance > 100 then balance := balance – 100 dispense cash

(11)

Spring 2008 CSC440: Database Management Systems 31

Example (3 of 4)

John at ATM2: withdraw $50 from account #55 Get balance from database

If balance > 50 then balance := balance – 50 dispense cash

put new balance into database Initial balance = 100

Final balance = ??

Spring 2008 CSC440: Database Management Systems 32

Example (4 of 4)

Safe

Convenient

Efficient

DBMS Components

 Storage manager:

Stores on disk: data, metadata, indexes, logs  Query processor:

Parses queries, optimizes by selecting query plan, executes the plan on the data 

(12)

Spring 2008 CSC440: Database Management Systems 34

DBMS Structure in More Detail

Buffer Manager

Query Parser User User Transaction Transaction Manager

Strategy Selector

Recovery Manager Concurrency Control

File Manager Log

Lock Table M.M. Buffer

Statistical Data Indexes User Data System Data

Spring 2008 CSC440: Database Management Systems 35

People

DBMS implementor: builds systems

Database designer: sets up schema,

loads data

Database user: queries/modifies data

You in the course project

Less Traditional Applications

Real-time, historical data and queries,

“active” databases

Distributed, heterogeneous databases

Scientific data

References

Related documents

Additionally, the table provides various measures of goodness of fit for the model including the Likelihood Ratio (LR), the pseudo R-squared (Pseudo R 2 ), the Akaike

3.1 Textbooks and Readings 3.2 Staff 4 Course Assessment 4.1 Exams 4.2 Homework 4.3 Software Project 4.4 Oracle 4.5 Class Participation 4.6 Late Policy 4.7 Grading.. 5 Other

The KD Method models the original KD relay as well as a number of electromechanical and microprocessor relay types that utilize the same basic technology. The KD Method can be

– Large page size – data related to x stored in same page; hence additional page transfer can be avoided. – Small page size – reduce transfer time, reduce buffer size in

CyDesk™ integrates your telephone into your business systems, linking you to your office CRM, customer database or management system and provides presence management

Indications for newborn screening for in utero substance exposure:  The neonate is exhibiting signs or symptoms of withdrawal..  Maternal urine toxicology is positive

IM Domain IPv6 Existing IPv4 Internet Mobile Termin al SIP Proxy Server Media/Signaling Gateway PSTN SIP Client SIP Proxy Server WWW Server Operators ISP BRAS DSLAM L2TP DSL

Barbara for the student medical report on human resources and you feel comfortable and students have questions in urop the research.. Above information is to mit student medical