Chapter 4 Intermediate SQL Transactions Integrity Constraints and

  • Slides: 33
Download presentation
Chapter 4: Intermediate SQL: Transactions, Integrity Constraints and Authorization Database System Concepts, 6 th

Chapter 4: Intermediate SQL: Transactions, Integrity Constraints and Authorization Database System Concepts, 6 th Ed. ©Silberschatz, Korth and Sudarshan See www. db-book. com for conditions on re-use

Transactions n Unit of work n Atomic transaction l either fully executed or rolled

Transactions n Unit of work n Atomic transaction l either fully executed or rolled back as if it never occurred n Isolation from concurrent transactions n Transactions begin implicitly l Ended by commit work or rollback work n But default on most databases: each SQL statement commits automatically l Can turn off auto commit for a session (e. g. using API) l In SQL: 1999, can use: begin atomic …. end 4 Not supported on most databases

Integrity Constraints n Integrity constraints guard against accidental damage to the database, by ensuring

Integrity Constraints n Integrity constraints guard against accidental damage to the database, by ensuring that authorized changes to the database do not result in a loss of data consistency. l A checking account must have a balance greater than $10, 000. 00 l A salary of a bank employee must be at least $4. 00 an hour l A customer must have a (non-null) phone number

Integrity Constraints on a Single Relation n not null n primary key n unique

Integrity Constraints on a Single Relation n not null n primary key n unique n check (P), where P is a predicate

Not Null and Unique Constraints n not null l Declare name and budget to

Not Null and Unique Constraints n not null l Declare name and budget to be not null name varchar(20) not null budget numeric(12, 2) not null n unique ( A 1, A 2, …, Am) l The unique specification states that the attributes A 1, A 2, … Am form a candidate key. l Candidate keys are permitted to be null (in contrast to primary keys).

The check clause n check (P) where P is a predicate Example: ensure that

The check clause n check (P) where P is a predicate Example: ensure that semester is one of fall, winter, spring or summer: create table section ( course_id varchar (8), sec_id varchar (8), semester varchar (6), year numeric (4, 0), building varchar (15), room_number varchar (7), time slot id varchar (4), primary key (course_id, sec_id, semester, year), check (semester in (’Fall’, ’Winter’, ’Spring’, ’Summer’)) );

Referential Integrity n Ensures that a value that appears in one relation for a

Referential Integrity n Ensures that a value that appears in one relation for a given set of attributes also appears for a certain set of attributes in another relation. l Example: If “Biology” is a department name appearing in one of the tuples in the instructor relation, then there exists a tuple in the department relation for “Biology”. n Let A be a set of attributes. Let R and S be two relations that contain attributes A and where A is the primary key of S. A is said to be a foreign key of R if for any values of A appearing in R these values also appear in S.

Cascading Actions in Referential Integrity n create table course ( course_id char(5) primary key,

Cascading Actions in Referential Integrity n create table course ( course_id char(5) primary key, title varchar(20), dept_name varchar(20) references department ) n create table course ( … dept_name varchar(20), foreign key (dept_name) references department on delete cascade on update cascade, . . . ) n alternative actions to cascade: set null, set default

Integrity Constraint Violation During Transactions n E. g. create table person ( ID char(10),

Integrity Constraint Violation During Transactions n E. g. create table person ( ID char(10), name char(40), mother char(10), father char(10), primary key ID, foreign key father references person, foreign key mother references person) n How to insert a tuple without causing constraint violation ? l insert father and mother of a person before inserting person l OR, set father and mother to null initially, update after inserting all persons (not possible if father and mother attributes declared to be not null) l OR defer constraint checking (next slide)

Complex Check Clauses n check (time_slot_id in (select time_slot_id from time_slot)) l why not

Complex Check Clauses n check (time_slot_id in (select time_slot_id from time_slot)) l why not use a foreign key here? n Every section has at least one instructor teaching the section. l how to write this? n Unfortunately: subquery in check clause not supported by pretty much any database l Alternative: triggers (later) n create assertion <assertion-name> check <predicate>; l Also not supported by anyone

Built-in Data Types in SQL n date: Dates, containing a (4 digit) year, month

Built-in Data Types in SQL n date: Dates, containing a (4 digit) year, month and date l Example: date ‘ 2005 -7 -27’ n time: Time of day, in hours, minutes and seconds. l Example: time ‘ 09: 00: 30’ time ‘ 09: 00: 30. 75’ n timestamp: date plus time of day l Example: timestamp ‘ 2005 -7 -27 09: 00: 30. 75’ n interval: period of time l Example: interval ‘ 1’ day l Subtracting a date/timestamp value from another gives an interval value l Interval values can be added to date/timestamp values

Index Creation n create table student (ID varchar (5), name varchar (20) not null,

Index Creation n create table student (ID varchar (5), name varchar (20) not null, dept_name varchar (20), tot_cred numeric (3, 0) default 0, primary key (ID)) n create index student. ID_index on student(ID) n Indices are data structures used to speed up access to records with specified values for index attributes l e. g. select * from student where ID = ‘ 12345’ can be executed by using the index to find the required record, without looking at all records of student

User-Defined Types n create type construct in SQL creates user-defined type create type Dollars

User-Defined Types n create type construct in SQL creates user-defined type create type Dollars as numeric (12, 2) final l create table department (dept_name varchar (20), building varchar (15), budget Dollars);

Domains n create domain construct in SQL-92 creates user-defined domain types create domain person_name

Domains n create domain construct in SQL-92 creates user-defined domain types create domain person_name char(20) not null n Types and domains are similar. Domains can have constraints, such as not null, specified on them. create domain degree_level varchar(10) constraint degree_level_test check (value in (’Bachelors’, ’Masters’, ’Doctorate’));

Large-Object Types n Large objects (photos, videos, CAD files, etc. ) are stored as

Large-Object Types n Large objects (photos, videos, CAD files, etc. ) are stored as a large object: l blob: binary large object -- object is a large collection of uninterpreted binary data (whose interpretation is left to an application outside of the database system) l clob: character large object -- object is a large collection of character data l When a query returns a large object, a pointer is returned rather than the large object itself.

Authorization

Authorization

Authorization Forms of authorization on parts of the database: n Read - allows reading,

Authorization Forms of authorization on parts of the database: n Read - allows reading, but not modification of data. n Insert - allows insertion of new data, but not modification of existing data. n Update - allows modification, but not deletion of data. n Delete - allows deletion of data. Forms of authorization to modify the database schema n Index - allows creation and deletion of indices. n Resources - allows creation of new relations. n Alteration - allows addition or deletion of attributes in a relation. n Drop - allows deletion of relations.

Authorization Specification in SQL n The grant statement is used to confer authorization grant

Authorization Specification in SQL n The grant statement is used to confer authorization grant <privilege list> on <relation name or view name> to <user list> n <user list> is: l a user-id l public, which allows all valid users the privilege granted l A role (more on this later) n Granting a privilege on a view does not imply granting any privileges on the underlying relations. n The grantor of the privilege must already hold the privilege on the specified item (or be the database administrator).

Privileges in SQL n select: allows read access to relation, or the ability to

Privileges in SQL n select: allows read access to relation, or the ability to query using the view l Example: grant users U 1, U 2, and U 3 select authorization on the instructor relation: grant select on instructor to U 1, U 2, U 3 n insert: the ability to insert tuples n update: the ability to update using the SQL update statement n delete: the ability to delete tuples. n all privileges: used as a short form for all the allowable privileges l Example: 4 GRANT select, insert, update, delete ON instructor TO eduard; 4 GRANT all ON instructor TO eduard;

GRANT Statement GRANT privileges ON object TO users [WITH GRANT OPTIONS] At Colum level.

GRANT Statement GRANT privileges ON object TO users [WITH GRANT OPTIONS] At Colum level. privileges = SELECT | INSERT(column-name) | UPDATE(column-name) | DELETE | REFERENCES(column-name) object = table | attribute 20

Examples GRANT INSERT, DELETE ON Instructors TO Lia WITH GRANT OPTIONS Which of these

Examples GRANT INSERT, DELETE ON Instructors TO Lia WITH GRANT OPTIONS Which of these queries are allowed to Lia? INSERT INTO Instructor(ID, name, dept_name, salary) VALUES(13131, ‘Spacey’, 70, 000) DELETE Instructor WHERE Salary> 90, 000 SELECT salary FROM Instructor WHERE name = ‘Mozart’ 21

Examples GRANT SELECT ON Instructor TO John n What can John do on Instructor?

Examples GRANT SELECT ON Instructor TO John n What can John do on Instructor? l SELECT, but not INSERT or DELETE 22

Revoking Authorization in SQL n The revoke statement is used to revoke authorization. revoke

Revoking Authorization in SQL n The revoke statement is used to revoke authorization. revoke <privilege list> on <relation name or view name> from <user list> n Example: revoke select on branch from U 1, U 2, U 3 n <privilege-list> may be all to revoke all privileges the revokee may hold. n If <revokee-list> includes public, all users lose the privilege except those granted it explicitly. n If the same privilege was granted twice to the same user by different grantees, the user may retain the privilege after the revocation. n All privileges that depend on the privilege being revoked are also revoked.

Revokation REVOKE [GRANT OPTION FOR] privileges ON object FROM users { RESTRICT | CASCADE

Revokation REVOKE [GRANT OPTION FOR] privileges ON object FROM users { RESTRICT | CASCADE } If DBA says: REVOKE SELECT ON Instructor FROM Jen CASCADE n Then, Jen loses SELECT privileges on Instructor. n How about the privileges she gave to others? 24

Roles n create role teacher; n grant teacher to Amit; n Privileges can be

Roles n create role teacher; n grant teacher to Amit; n Privileges can be granted to roles: l grant select on takes to teacher; n Roles can be granted to users, as well as to other roles l create role teaching_assistant l grant teaching_assistant to teacher; 4 teacher inherits all privileges of teaching_assistant n Chain of roles l create role dean; l grant teacher to dean; l grant dean to Satoshi; n NOTE: the book uses instructor. I replaced it with teacher to avoid confusing it with the table instructor.

Examples GRANT UPDATE (salary) ON Instructor TO dean n What can Satoshi do on

Examples GRANT UPDATE (salary) ON Instructor TO dean n What can Satoshi do on Instructor? l Satoshi can update Instructor, but only the field SALARY. 26

Authorization on Views n create view phy_instructor as (select * from instructor where dept_name

Authorization on Views n create view phy_instructor as (select * from instructor where dept_name = Physics’); n grant select on phy_instructor to phy_staff n Suppose that a phy_staff member issues l select * from phy_instructor; l What would phy_staff get?

Authorization on Views: Example n create view public_instructor as (select name, dept_name from instructor);

Authorization on Views: Example n create view public_instructor as (select name, dept_name from instructor); n grant select on public_instructor to student No student is allowed to see this

Authorization on Views n What if l phy_staff does not have permissions on instructor?

Authorization on Views n What if l phy_staff does not have permissions on instructor? l creator of view did not have some permissions on instructor?

References Authorization n Mariano has INSERT/UPDATE rights to Instructor. n Suppose he issues the

References Authorization n Mariano has INSERT/UPDATE rights to Instructor. n Suppose he issues the query l INSERT (31313, ‘Messi’, ‘Chemistry’, 90, 000) l What happens? n references privilege to create foreign key l grant reference (dept_name) on department to Mariano; l why is this required?

Transfer of Privileges n grant select on department to Amit with grant option; n

Transfer of Privileges n grant select on department to Amit with grant option; n revoke select on department from Amit, Satoshi cascade; n revoke select on department from Amit, Satoshi restrict; n Suppose DBA revokes the authorization for U 1. l What happens to the authorization of U 4? l What happens to the authorization of U 5?

Examples GRANT SELECT ON Instructor TO John WITH GRANT OPTIONS n John can do

Examples GRANT SELECT ON Instructor TO John WITH GRANT OPTIONS n John can do this now: l GRANT SELECT ON Customers TO Jen n Now Jen can SELECT on Instructor. 32

End of Chapter 4 Database System Concepts, 6 th Ed. ©Silberschatz, Korth and Sudarshan

End of Chapter 4 Database System Concepts, 6 th Ed. ©Silberschatz, Korth and Sudarshan See www. db-book. com for conditions on re-use