CS 3630 Database Design and Implementation

Slides:



Advertisements
Similar presentations
Data Definition and Integrity Constraints
Advertisements

RELATIONAL DATABASES. Relational data Structure RELATION: Table with columns and rows ATTRIBUTE: Column of a relation DOMAIN: Set of allowable values.
Relational Database. Relational database: a set of relations Relation: made up of 2 parts: − Schema : specifies the name of relations, plus name and type.
Assignment Design Methodology A structured approach that uses procedures, techniques, tools, and documentation aids to support and facilitate the.
SQL Lecture 10 Inst: Haya Sammaneh. Example Instance of Students Relation  Cardinality = 3, degree = 5, all rows distinct.
Overview Begin 6:00 Quiz15 mins6:15 Review Table Terms25 mins6:40 Short Break10 mins6:50 SQL: Creating Tables60 mins7:50 Break10 mins8:00 Lab – Creating.
Assignment6-1 Assignment6-2 Due Wednesday, March 13 1.
Cs3431 Constraints Sections 6.1 – 6.5. cs3431 Example CREATE TABLE Student ( sNum int, sName varchar (20), prof int, CONSTRAINT pk PRIMARY KEY (snum),
Chapter 6 SQL. Agenda Data Definition Language (DDL) Access Control.
Mid-term Exam Answer Keys Week 7 Spring I. Multiple Choices Questions Each may have more than one answer (6 x 4 = 24 points total)
Relational Model Stores data as tables –Each column contains values about the same attribute –Each column has a distinct name –Each row contains values.
SQL Keys and Constraints Justin Maksim. Key Declaration Key constraint defined within the CREATE TABLE command Key can be declared using either the PRIMARY.
DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 4-1 David M. Kroenke Database Processing Chapter 7 Structured Query Language.
Relational Database Management System A type of database in which records are stored in relational form is called relational database management system.
Chapter 6 SQL. Agenda Data Definition Language (DDL) Access Control.
Your Oracle Account UserName is the same as your UWP username Followed Not case sensitive Initial Password: UWPstudent Password is case sensitive.
Exam 2 Review Dr. Bernard Chen Ph.D. University of Central Arkansas.
SQL Data Definition (CB Chapter 6) CPSC 356 Database Ellen Walker Hiram College (Includes figures from Database Systems by Connolly & Begg, © Addison Wesley.
SQL data definition using Oracle1 SQL Data Definition using Oracle.
CS 3630 Database Design and Implementation. Your Oracle Account UserName is the same as your UWP username Followed Not case sensitive Initial.
1 The Relational Model Instructor: Mohamed Eltabakh
Chapter 6 SQL Data Definition Language Chapter 7 in Textbook.
Chapter 8 Part 1 SQL-99 Schema Definition, Constraints, Queries, and Views.
Ms. Hatoon Al-Sagri CCIS – IS Department SQL-99 :Schema Definition, Constraints, Queries, and Views 1.
SQL data definition using Oracle1 SQL Data Definition using Oracle.
CS 3630 Database Design and Implementation. Assignment 3 Style! Agreement between database designer and the client. UserName1_EasyDrive UserName2_EasyDrive.
Recap of SQL Lab no 8 Advance Database Management System.
Intro to SQL| MIS 2502  Spacing not relevant › BUT… no spaces in an attribute name or table name  Oracle commands keywords, table names, and attribute.
Creating Tables and Inserting Records -- Not easy to edit! -- check constraints! Create table test1 ( C1 char(5) primary key, C2 Varchar2(15) not null.
CS 3630 Database Design and Implementation. Database Schema Branch (Bno…) Staff (Sno…Bno) Owner (Ono…) PropertyForRent (Pno…Ono) Renter (Rno…) Viewing.
Dec 8, 2003Murali Mani Constraints B term 2004: lecture 15.
Chapter 9 Constraints. Chapter Objectives  Explain the purpose of constraints in a table  Distinguish among PRIMARY KEY, FOREIGN KEY, UNIQUE, CHECK,
Oracle 11g: SQL Chapter 4 Constraints.
Chapter 4 Constraints Oracle 10g: SQL. Oracle 10g: SQL 2 Objectives Explain the purpose of constraints in a table Distinguish among PRIMARY KEY, FOREIGN.
Chapter 7 SQL: Data Definition Pearson Education © 2009.
Sql DDL queries CS 260 Database Systems.
Week 8-9 SQL-1. SQL Components: DDL, DCL, & DML SQL is a very large and powerful language, but every type of SQL statement falls within one of three main.
Chapter 4 Practice Problem Solutions. A list (Bno, Street, Area,Tel_No, Fax_No) of branches located in Bay Area Branch (Bno, Street, Area, City, Pcode,
Data Definition Language
CS34311 The Relational Model. cs34312 Why Relational Model? Currently the most widely used Vendors: Oracle, Microsoft, IBM Older models still used IBM’s.
CS 3630 Database Design and Implementation. Null Value The value of an attribute could be NULL NOT known at the moment or NOT Applicable Example Cell.
Basic SQL*Plus edit and execute commands SQL*Plus buffer and built-in editor holds the last SQL statement Statements are created in free-flow style and.
Constraints and Views Chap. 3-5 continued (7 th ed. 5-7)
3 A Guide to MySQL.
Teacher Workshop Database Design Pearson Education © 2014.
CS 3630 Database Design and Implementation
國立臺北科技大學 課程:資料庫系統 Chapter 7 SQL Data Definition.
CS 3630 Database Design and Implementation
Minggu 5, Pertemuan 9 SQL: Data Definition
Lecture # 13 (After 1st Exam)
Designing Tables for a Database System
Module 5: Implementing Data Integrity by Using Constraints
ORACLE SQL Developer & SQLPLUS Statements
Instructor: Mohamed Eltabakh
The Relational Model Relational Data Model
لغة قواعد البيانات STRUCTURED QUERY LANGUAGE SQL))
CS4222 Principles of Database System
SQL data definition using Oracle
CS 3630 Database Design and Implementation
CS122 Using Relational Databases and SQL
Oracle Data Definition Language (DDL)
SQL-1 Week 8-9.
Session - 6 Sequence - 1 SQL: The Structured Query Language:
CS3220 Web and Internet Programming SQL and MySQL
Database Design: Relational Model
ISC321 Database Systems I Chapter 4: SQL: Data definition, Constraints, and Basic Queries and Updates Fall 2015 Dr. Abdullah Almutairi.
Mapping an ERD to a Relational Database
SQL-Data Definition 4/21/2019.
CS122 Using Relational Databases and SQL
CS3220 Web and Internet Programming SQL and MySQL
Presentation transcript:

CS 3630 Database Design and Implementation

Assignment7 Table names and column names must be exactly the same as specified. Due Monday, March 27

SQL Script File Using any text editor outside SQL*Plus File extension .SQL UserName_Lab7.Sql Multiple SQL commands Each command ends with ;

UserName_Lab7.sql ------------------------------------------------ -- Name : Qi Yang -- UserName : YangQ -- Date : 03-21-2017 -- Course : CS 3630 -- Description: Creating tables -- Inserting records Drop Table test2; Drop Table test1; Create table test1 . . . Desc Test1 Pause Create Table Test2 . . . Desc test2 Insert into test1 . . . Commit; Select * From Test1; . . .

Running Script File Using either Start or @ SQL> Start file_name_with_full_path SQL> @file_name_with_full_path Use Arrow Keys to get previous commands!

Create a Table Create Table Test1 ( C1 Char(5) Primary Key, C2 Varchar2(50), C3 Integer, C4 Date);

Create another Table Create Table Test1 ( C1 Char(5) Primary Key, C2 Varchar2(50), C3 Integer, C4 Date); Create Table Test2 ( D1 VARCHAR2(15) Primary Key, D2 Char(5) references Test1, D3 Integer);

Drop Tables Drop table test1; Drop table test2; Create Table Test1 ( C1 Char(5) Primary Key, C2 Varchar2(50), C3 Integer, C4 Date); Create Table Test2 ( D1 VARCHAR2(15) Primary Key, D2 Char(5) references Test1, D3 Integer);

Drop Tables Drop table test2; Drop table test1; Create Table Test1 ( C1 Char(5) Primary Key, C2 Varchar2(50), C3 Integer, C4 Date); Create Table Test2 ( D1 VARCHAR2(15) Primary Key, D2 Char(5) references Test1, D3 Integer);

Using Pause Drop table test2; pause Drop table test1; Pause Create Table Test1 ( C1 Char(5) Primary Key, C2 Varchar2(50), C3 Integer, C4 Date); Create Table Test2 ( D1 VARCHAR2(15) Primary Key, D2 Char(5) references Test1, D3 Integer);

Insert Records Insert into Test1 Values ('cs363', 's1', 44, '28-feb-12'); Values ('cs334', 's2', 45, '29-feb-2012'); One record at a time! Single quotes for string Date is entered as string in the default format

Entity Integrity Insert into Test1 Values ('cs363', 'q2', 17, '2-Mar-12'); PK must be Unique!

Null Values Insert into Test1 Values ('cs387', 'q2', 17, null); Null is a key word, not a string! NULL, null and Null are the same SQL is not case sensitive

Entity Integrity Insert into Test1 Values (NULL, 'q2', 17, '2-Mar-12'); PK cannot be null!

Column Constraints

Column Constraints Primary key Sno Char(4) Primary Key, Alternate Key SSN Char(9) Unique, Foreign Key BNo char(4) References Branch, -- when attribute has the same name -- even when FK and PK have different names BNo char(4) References Branch on Delete Cascade, -- Do NOT use “Foreign Key” in column constaints!

References For Foreign Key It also works for Aks!

Column Constraints Domain constraint Salary Number Check (Salary > 10000 and Salary < 200000), PType varchar2(6) Check (PType IN ('House', 'Flat', 'Appt')), -- Strings are in single quotes, NOT double quotes Bno Char(4) Default 'B363' References Branch, Rent Float Check (Rent Between 200 and 400), -- between is Inclusive Required data LName Varchar2(20) Not Null, -- Can be specified only by column constraint

Column Constraints Create table Staff ( SNo char(4) Primary Key, Bno Char(4) Default 'B363' References Branch on Delete Cascade, FName Varchar2(20) Not Null, LName Varchar2(20) Not Null, -- assuming functions DateDiff and Now DOB Date Not Null Check (DateDiff(Year, Now, DOB) >= 16), Salary Number Check (Salary Between 30000 and 100000), SSN Char(9) Unique, Tel_No Char(12)); -- Primary Key, Unique, References should be the last constraint for a column -- Do not use Foreign key for column constraints, only use References

Table Constraints Constraints on one or more columns Composite PK, AK, FK Cannot use Not Null in table constraints Naming the constraints

Table Constraints Create table Staff ( SNo char(4), FName Varchar2(20) Not Null, LName Varchar2(20) Not Null, DOB Date, Salary Number default, BNo Char(4), Tel_No Char(12), SSN Char(11), Constraint PK_Staff Primary Key (SNo), Constraint Range_of_Salary Check (Salary between 30000 and 200000), Unique (SSN), Foreign Key (BNo) References Branch (BNo));

Works. -- Composite PK Create Table Test1 ( C1 Char(5), C2 Varchar2(50) , C3 Integer, C4 Date, Constraint Test1_PK Primary Key (C1, C3)); Desc Test3 pause; Create Table Test2 ( D1 VARCHAR2(25) Primary Key, D2 Char(5), D3 Integer, Constraint Test2_FK Foreign Key (D2, D3) references Test1); Desc Test4; Pause Works.

Does Not Work. -- Composite PK Create Table Test1 ( C1 Char(5), C2 Varchar2(50) , C3 Integer, C4 Date, Constraint Test1_PK Primary Key (C1, C3)); Desc Test3 pause; Create Table Test2 ( D1 VARCHAR2(25) Primary Key, D2 Char(5), D3 Integer, Constraint Test2_FK Foreign Key (D3, D2) references Test1); Desc Test4; Pause Does Not Work.

This Works. -- Composite PK Create Table Test1 ( C1 Char(5), C2 Varchar2(50) , C3 Integer, C4 Date, Constraint Test1_PK Primary Key (C1, C3)); Desc Test3 pause; Create Table Test2 ( D1 VARCHAR2(25) Primary Key, D2 Char(5), D3 Integer, Constraint Test2_FK Foreign Key (D3, D2) references Test1(C3, C1)); Desc Test4; Pause This Works.

Attribute Order in Foreign Key -- Primary key (c1, c2) for TableA Foreign Key (c1, c2) References TableA, -- Same order as PK Foreign Key (c2, c1) References TableA(c2, c1), -- Different order from PK Foreign Key (c2, c1) References TableA, -- Incorrect!

Referential Integrity Insert into Test2 Values ('golf', 'cs363', 44); Values ('bridge', 'cs334', 44); Values ('bridge', 'cs334', Null); Values ('bridge1', null, null);

Database Schema Branch (Bno…) Staff (Sno…Bno) Owner (Ono…) PropertyForRent (Pno…Ono) Renter (Rno…) Viewing (Rno, Pno, ViewDate…)

In what order to create the tables? Branch (Bno…) Staff (Sno…Bno) Owner (Ono…) PropertyForRent (Pno…Ono) Renter (Rno…) Viewing (Rno, Pno, ViewDate…) Will it work? YES! Branch (Bno…) Staff (Sno…Bno) PropertyForRent (Pno…Ono) Owner (Ono…) Viewing (Rno, Pno, ViewDate…) Renter (Rno…) Will it work? NO! Referential Integrity!

In what order to drop the tables? Viewing (Rno, Pno, ViewDate…) Staff (Sno…Bno) PropertyForRent (Pno…Ono) Owner (Ono…) Renter (Rno…) Branch (Bno…) Will it work? YES! Branch (Bno…) Staff (Sno…Bno) Owner (Ono…) PropertyForRent (Pno…Ono) Renter (Rno…) Viewing (Rno, Pno, ViewDate…) Will it work? NO! Referential Integrity!

Insert Rows The PK must be unique The foreign key value must exist in the parent table if FK is provided FK can be null, meaning not known at the time

Insert Rows Insert into Branch: no problem Insert into Staff: Bno Phone … B101 B205 Staff Sno Phone Bno SG100 B101 SG363 Null SA200 B123 Insert into Branch: no problem Insert into Staff: Cannot insert a staff with Bno being ‘B123’ if Branch table has no ‘B123’ in Bno column FK can be null, meaning not known at the time

Delete Rows No records in other tables referencing the record to be deleted.

Delete Rows Delete branch 'B101' What about staff in 'B101‘? Branch Bno Phone … B101 B205 Staff Sno Phone Bno SG100 B101 SG363 Null SA200 Delete from Staff: no problem Delete from Branch: Delete branch 'B101' What about staff in 'B101‘?

ANSI SQL Solutions In ANSI SQL, there are five choices No Action Cannot delete Set to Null Set to Default No Check No good Cascade Delete all staff in 'B101' from Staff table when deleting branch ‘B101’ Dangerous!

Oracle Solutions In Oracle, only two choices are implemented No Action Cannot delete Cascade Delete all staff in 'B101' from Staff table when deleting branch ‘B101’ Set to Null: not implemented Set to Default : not implemented No Check : not implemented

Update Record Update table Staff ‘B101’ of SG100 to ‘B205’ Branch Bno Phone … B101 B205 Staff Sno Phone Bno SG100 B101 SG363 Null SA200 B205 Update table Staff ‘B101’ of SG100 to ‘B205’ New value must exist in Branch Update table Branch ‘B101’ to ‘B303’ Five choices in ANSI SQL, only No Action is implemented in Oracle

Integrity Rules: Constraints Column Constraints Table Constraints

Project Phase I Due Today by 5 PM