1 Constraints Foreign Keys Local and Global Constraints Triggers.

Slides:



Advertisements
Similar presentations
Chapter 7 Notes on Foreign Keys Local and Global Constraints Triggers.
Advertisements

1 Database Systems Relations as Bags Grouping and Aggregation Database Modification.
1 Introduction to SQL Multirelation Queries Subqueries Slides are reused by the approval of Jeffrey Ullman’s.
Triggers. Triggers: Motivation Assertions are powerful, but the DBMS often can’t tell when they need to be checked. Attribute- and tuple-based checks.
1 More SQL Database Modification Defining a Database Schema Views Source: slides by Jeffrey Ullman.
Constraints and Triggers Foreign Keys Local and Global Constraints Triggers.
1 Constraints Foreign Keys Local and Global Constraints Triggers Source: slides by Jeffrey Ullman.
1 More SQL Defining a Database Schema Views. 2 Defining a Database Schema uA database schema comprises declarations for the relations (“tables”) of the.
CPSC-608 Database Systems Fall 2010 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #4.
Winter 2002Arthur Keller – CS 1809–1 Schedule Today: Jan. 31 (TH) u Constraints. u Read Sections , Project Part 3 due. Feb. 5 (T) u Triggers,
1 Constraints Foreign Keys Local and Global Constraints Triggers.
CPSC-608 Database Systems Fall 2011 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #4.
CPSC-608 Database Systems Fall 2011 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #3.
CPSC-608 Database Systems Fall 2008 Instructor: Jianer Chen Office: HRBB 309B Phone: Notes #4.
Fall 2001Arthur Keller – CS 1809–1 Schedule Today Oct. 23 (T) Constraints. u Read Sections Assignment 4 due. Project Part 3 due Oct. 24 (W). Oct.
Winter 2002Arthur Keller – CS 1807–1 Schedule Today: Jan. 24 (TH) u Subqueries, Grouping and Aggregation. u Read Sections Project Part 2 due.
1 PL/SQL Oracle’s Version of Triggers and PSM. 2 PL/SQL uOracle uses a variant of SQL/PSM which it calls PL/SQL. uPL/SQL not only allows you to create.
Triggers.
1 More SQL Extended Relational Algebra Outerjoins, Grouping/Aggregation Insert/Delete/Update.
CPSC-608 Database Systems Fall 2011 Instructor: Jianer Chen Office: HRBB 315C Phone: Notes #2.
DB Modifications Modification = insert + delete + update. Insertion of a Tuple INSERT INTO relation VALUES (list of values). Inserts the tuple = list of.
1 Transactions, Views, Indexes Controlling Concurrent Behavior Virtual and Materialized Views Speeding Accesses to Data This slides are from J. Ullman’s.
SCUHolliday - coen 1789–1 Schedule Today: u Constraints, assertions, triggers u Read Sections , 7.4. Next u Triggers, PL/SQL, embedded SQL, JDBC.
Constraints on Relations Foreign Keys Local and Global Constraints Triggers Following lecture slides are modified from Jeff Ullman’s slides
Databases 1 Fourth lecture. Rest of SQL Defining a Database Schema Views Foreign Keys Local and Global Constraints Triggers 2.
Winter 2006Keller, Ullman, Cushing9–1 Constraints Commercial relational systems allow much more “fine-tuning” of constraints than do the modeling languages.
1 Introduction to SQL. 2 Why SQL? SQL is a very-high-level language, in which the programmer is able to avoid specifying a lot of data-manipulation details.
CS411 Database Systems Kazuhiro Minami 06: SQL. Constraints & Triggers Foreign Keys Local and Global Constraints Triggers.
1 IT 244 Database Management System Lecture 11 More SQL Constraints &Triggers, SQL Authorization,Transactions Foreign Keys, Local and Global Constraints,
+ Assignment 5 Q’s CSCI 2141 W Foreign Key issue CONSTRAINT fk_model FOREIGN KEY (model) REFERENCES Desktop(Model) Problem – can’t have it reference.
IST 210 Constraints and Triggers. IST Constraints and Triggers Constraint: relationship among data elements DBMS should enforce the constraints.
7 1 Constraints & Triggers Chapter Constraints and triggers? Constraints: Certain properties that the DBMS is required to enforce –E.g. primary.
1 Database Systems Defining Database Schema Views.
1 Chapter 6 Constraints uForeign Keys uConstraints.
Advanced SQL Concepts - Checking of Constraints CIS 4301 Lecture Notes Lecture /6/2006.
1 CSCE Database Systems Anxiao (Andrew) Jiang The Database Language SQL.
1 Views, Indexes Virtual and Materialized Views Speeding Accesses to Data.
1 Introduction to SQL. 2 Why SQL? SQL is a very-high-level language, in which the programmer is able to avoid specifying a lot of data-manipulation details.
Databases : SQL-Schema Definition and View 2007, Fall Pusan National University Ki-Joune Li These slides are made from the materials that Prof. Jeffrey.
1 Constraints, Views, Indexes Foreign Keys Constraints Triggers Virtual and Materialized Views Speeding Accesses to Data.
1 Transactions, Views, Indexes Controlling Concurrent Behavior Virtual and Materialized Views Speeding Accesses to Data This slides are from J. Ullman’s.
Chapter 7: Constraints and Triggers Foreign Keys Local and Global Constraints Triggers 1.
SCUHolliday - coen 1789–1 Schedule Today: u Constraints, assertions, triggers u Read Sections , 7.4. Next u Embedded SQL, JDBC. u Read Sections.
1 Introduction to Database Systems, CS420 SQL Views and Indexes.
1 Introduction to Database Systems, CS420 SQL Constraints.
1 Constraints and Triggers in SQL. 2 Constraints are conditions that must hold on all valid relation instances SQL2 provides a variety of techniques for.
1 Data Modification with SQL CREATE TABLE, INSERT, DELETE, UPDATE Slides from
1 Introduction to Database Systems, CS420 SQL JOIN, Aggregate, Grouping, HAVING and DML Clauses.
Database Design and Programming
CPSC-310 Database Systems
Virtual and Materialized Views Speeding Accesses to Data
Slides are reused by the approval of Jeffrey Ullman’s
Outerjoins, Grouping/Aggregation Insert/Delete/Update
CMSC-461 Database Management Systems
Foreign Keys Local and Global Constraints Triggers
CPSC-310 Database Systems
Schedule Today: Next After that Subqueries, Grouping and Aggregation.
Database Design: DBS CB, 2nd Edition
Introduction to Database Systems, CS420
CPSC-608 Database Systems
CPSC-310 Database Systems
CPSC-310 Database Systems
2018, Fall Pusan National University Ki-Joune Li
CMSC-461 Database Management Systems
Virtual and Materialized Views Speeding Accesses to Data
CPSC-608 Database Systems
More SQL Extended Relational Algebra Outerjoins, Grouping/Aggregation
SQL – Constraints & Triggers
CPSC-608 Database Systems
Presentation transcript:

1 Constraints Foreign Keys Local and Global Constraints Triggers

2 Constraints and Triggers uA constraint is a relationship among data elements that the DBMS is required to enforce. wExample: key constraints. uTriggers are only executed when a specified condition occurs, e.g., insertion of a tuple. wEasier to implement than complex constraints.

3 Kinds of Constraints uKeys. uForeign-key, or referential-integrity. uValue-based constraints. wConstrain values of a particular attribute. uTuple-based constraints. wRelationship among components. uAssertions: any SQL boolean expression.

4 Foreign Keys uConsider Relation Sells(bar, beer, price). uWe might expect that a beer value is a real beer --- something appearing in Beers.name. uA constraint that requires a beer in Sells to be a beer in Beers is called a foreign - key constraint.

5 Expressing Foreign Keys uUse the keyword REFERENCES, either: 1.Within the declaration of an attribute (only for one-attribute keys). 2.As an element of the schema: FOREIGN KEY ( ) REFERENCES ( ) uReferenced attributes must be declared PRIMARY KEY or UNIQUE.

6 Example: With Attribute CREATE TABLE Beers ( nameCHAR(20) PRIMARY KEY, manfCHAR(20) ); CREATE TABLE Sells ( barCHAR(20), beerCHAR(20) REFERENCES Beers(name), priceREAL );

7 Example: As Element CREATE TABLE Beers ( nameCHAR(20) PRIMARY KEY, manfCHAR(20) ); CREATE TABLE Sells ( barCHAR(20), beerCHAR(20), priceREAL, FOREIGN KEY(beer) REFERENCES Beers(name));

8 Enforcing Foreign-Key Constraints uIf there is a foreign-key constraint from attributes of relation R to a key of relation S, two violations are possible: 1.An insert or update to R introduces values not found in S. 2.A deletion or update to S causes some tuples of R to “dangle.”

9 Actions Taken --- (1) uSuppose R = Sells, S = Beers. uAn insert or update to Sells that introduces a nonexistent beer must be rejected. uA deletion or update to Beers that removes a beer value found in some tuples of Sells can be handled in three ways (next slide).

10 Actions Taken --- (2) 1.Default : Reject the modification. 2.Cascade : Make the same changes in Sells. wDeleted beer: delete Sells tuple. wUpdated beer: change value in Sells. 3.Set NULL : Change the beer to NULL.

11 Example: Cascade uDelete the Bud tuple from Beers: wThen delete all tuples from Sells that have beer = ’Bud’. uUpdate the Bud tuple by changing ’Bud’ to ’Budweiser’: wThen change all Sells tuples with beer = ’Bud’ so that beer = ’Budweiser’.

12 Example: Set NULL uDelete the Bud tuple from Beers: wChange all tuples of Sells that have beer = ’Bud’ to have beer = NULL. uUpdate the Bud tuple by changing ’Bud’ to ’Budweiser’: wSame change.

13 Choosing a Policy uWhen we declare a foreign key, we may choose policies SET NULL or CASCADE independently for deletions and updates. uFollow the foreign-key declaration by: ON [UPDATE, DELETE][SET NULL CASCADE] uTwo such clauses may be used. uOtherwise, the default (reject) is used.

14 Example CREATE TABLE Sells ( barCHAR(20), beerCHAR(20), priceREAL, FOREIGN KEY(beer) REFERENCES Beers(name) ON DELETE SET NULL ON UPDATE CASCADE );

15 Attribute-Based Checks uConstraints on the value of a particular attribute. uAdd: CHECK( ) to the declaration for the attribute. uThe condition may use the name of the attribute, but any other relation or attribute name must be in a subquery.

16 Example CREATE TABLE Sells ( barCHAR(20), beerCHAR(20)CHECK ( beer IN (SELECT name FROM Beers)), priceREAL CHECK ( price <= 5.00 ) );

17 Timing of Checks uAttribute-based checks performed only when a value for that attribute is inserted or updated.  Example: CHECK (price <= 5.00) checks every new price and rejects the modification (for that tuple) if the price is more than $5.  Example: CHECK (beer IN (SELECT name FROM Beers)) not checked if a beer is deleted from Beers (unlike foreign-keys).

18 Tuple-Based Checks uCHECK ( ) may be added as a relation-schema element. uThe condition may refer to any attribute of the relation. wBut any other attributes or relations require a subquery. uChecked on insert or update only.

19 Example: Tuple-Based Check uOnly Joe’s Bar can sell beer for more than $5: CREATE TABLE Sells ( barCHAR(20), beerCHAR(20), priceREAL, CHECK (bar = ’Joe’’s Bar’ OR price <= 5.00) );

20 Assertions uThese are database-schema elements, like relations or views. uDefined by: CREATE ASSERTION CHECK ( ); uCondition may refer to any relation or attribute in the database schema.

21 Example: Assertion uIn Sells(bar, beer, price), no bar may charge an average of more than $5. CREATE ASSERTION NoRipoffBars CHECK ( NOT EXISTS ( SELECT bar FROM Sells GROUP BY bar HAVING 5.00 < AVG(price) )); Bars with an average price above $5

22 Example: Assertion uIn Drinkers(name, addr, phone) and Bars(name, addr, license), there cannot be more bars than drinkers. CREATE ASSERTION FewBar CHECK ( (SELECT COUNT(*) FROM Bars) <= (SELECT COUNT(*) FROM Drinkers) );

23 Timing of Assertion Checks uIn principle, we must check every assertion after every modification to any relation of the database. uA clever system can observe that only certain changes could cause a given assertion to be violated. wExample: No change to Beers can affect FewBar. Neither can an insertion to Drinkers.

24 Triggers: Motivation uAssertions are powerful, but the DBMS often can’t tell when they need to be checked. uAttribute- and tuple-based checks are checked at known times, but are not powerful. uTriggers let the user decide when to check for a powerful condition.

25 Event-Condition-Action Rules uAnother name for “trigger” is ECA rule, or event-condition-action rule. uEvent : typically a type of database modification, e.g., “insert on Sells.” uCondition : Any SQL boolean-valued expression. uAction : Any SQL statements.

26 Preliminary Example: A Trigger uInstead of using a foreign-key constraint and rejecting insertions into Sells(bar, beer, price) with unknown beers, a trigger can add that beer to Beers, with a NULL manufacturer.

27 Example: Trigger Definition CREATE TRIGGER BeerTrig AFTER INSERT ON Sells REFERENCING NEW ROW AS NewTuple FOR EACH ROW WHEN (NewTuple.beer NOT IN (SELECT name FROM Beers)) INSERT INTO Beers(name) VALUES(NewTuple.beer); The event The condition The action

28 Options: CREATE TRIGGER uCREATE TRIGGER uOption: CREATE OR REPLACE TRIGGER wUseful if there is a trigger with that name and you want to modify the trigger.

29 Options: The Event uAFTER can be BEFORE. wAlso, INSTEAD OF, if the relation is a view. A great way to execute view modifications: have triggers translate them to appropriate modifications on the base tables. uINSERT can be DELETE or UPDATE. wAnd UPDATE can be UPDATE... ON a particular attribute.

30 Options: FOR EACH ROW uTriggers are either “row-level” or “statement-level.” uFOR EACH ROW indicates row-level; its absence indicates statement-level. uRow level triggers : execute once for each modified tuple. uStatement-level triggers : execute once for an SQL statement, regardless of how many tuples are modified.

31 Options: REFERENCING uINSERT statements imply a new tuple (for row-level) or new table (for statement-level). wThe “table” is the set of inserted tuples. uDELETE implies an old tuple or table. uUPDATE implies both. uRefer to these by [NEW OLD][TUPLE TABLE] AS

32 Options: The Condition uAny boolean-valued condition is appropriate. uIt is evaluated before or after the triggering event, depending on whether BEFORE or AFTER is used in the event. uAccess the new/old tuple or set of tuples through the names declared in the REFERENCING clause.

33 Options: The Action uThere can be more than one SQL statement in the action. wSurround by BEGIN... END if there is more than one. uBut queries make no sense in an action, so we are really limited to modifications.

34 Another Example uUsing Sells(bar, beer, price) and a unary relation RipoffBars(bar) created for the purpose, maintain a list of bars that raise the price of any beer by more than $1.

35 The Trigger CREATE TRIGGER PriceTrig AFTER UPDATE OF price ON Sells REFERENCING OLD ROW AS ooo NEW ROW AS nnn FOR EACH ROW WHEN(nnn.price > ooo.price ) INSERT INTO RipoffBars VALUES(nnn.bar); The event – only changes to prices Updates let us talk about old and new tuples We need to consider each price change Condition: a raise in price > $1 When the price change is great enough, add the bar to RipoffBars

36 Triggers on Views uGenerally, it is impossible to modify a view, because it doesn’t exist. uBut an INSTEAD OF trigger lets us interpret view modifications in a way that makes sense. uExample: We’ll design a view Synergy that has (drinker, beer, bar) triples such that the bar serves the beer, the drinker frequents the bar and likes the beer.

37 Example: The View CREATE VIEW Synergy AS SELECT Likes.drinker, Likes.beer, Sells.bar FROM Likes, Sells, Frequents WHERE Likes.drinker = Frequents.drinker AND Likes.beer = Sells.beer AND Sells.bar = Frequents.bar; Natural join of Likes, Sells, and Frequents Pick one copy of each attribute

38 Interpreting a View Insertion uWe cannot insert into Synergy --- it is a view. uBut we can use an INSTEAD OF trigger to turn a (drinker, beer, bar) triple into three insertions of projected pairs, one for each of Likes, Sells, and Frequents. wThe Sells.price will have to be NULL.

39 The Trigger CREATE TRIGGER ViewTrig INSTEAD OF INSERT ON Synergy REFERENCING NEW ROW AS n FOR EACH ROW BEGIN INSERT INTO LIKES VALUES(n.drinker, n.beer); INSERT INTO SELLS(bar, beer) VALUES(n.bar, n.beer); INSERT INTO FREQUENTS VALUES(n.drinker, n.bar); END;