Trigger
Trigger
Trigger
Navathe
Slide 9- 1
Chapter 9
Introduction to SQL Programming Techniques
Chapter Outline
9.1 General Constraints as Assertions 9.2 Views in SQL 9.3 Database Programming 9.4 Embedded SQL 9.5 Functions Calls, SQL/CLI 9.6 Stored Procedures, SQL/PSM 9.7 Summary
Slide 9- 3
Chapter Objectives
Specification of more general constraints via assertions SQL facilities for defining views (virtual tables) Various techniques for accessing and manipulating a database via programs in generalpurpose languages
E.g., Java, C++, etc.
Slide 9- 4
Constraints as Assertions
General constraints: constraints that do not fit in the basic SQL categories (presented in chapter 8) Mechanism: CREAT ASSERTION
Components include:
a constraint name, followed by CHECK, followed by a condition
Slide 9- 5
Assertions: An Example
The salary of an employee must not be greater than the salary of the manager of the department that the employee works for constraint
CREAT ASSERTION SALARY_CONSTRAINT CHECK (NOT EXISTS (SELECT * FROM EMPLOYEE E, EMPLOYEE M, DEPARTMENT D WHERE E.SALARY > M.SALARY AND E.DNO=D.NUMBER AND D.MGRSSN=M.SSN))
name, CHECK, condition
Slide 9- 6
Slide 9- 7
SQL Triggers
Objective: to monitor a database and take initiate action when a condition occurs Triggers are expressed in a syntax similar to assertions and include the following:
Event
Such as an insert, deleted, or update operation
Condition Action
To be taken when the condition is satisfied
Slide 9- 8
Slide 9- 9
Views in SQL
A view is a virtual table that is derived from other tables Allows for limited update operations
Since the table may not physically be stored
Slide 9- 10
Specification of Views
SQL command: CREATE VIEW
a table (view) name a possible list of attribute names (for example, when arithmetic operations are specified or when we want the names to be different from the attributes in the base relations) a query to specify the table contents
Slide 9- 11
Slide 9- 12
Slide 9- 13
Disadvantage:
Inefficient for views defined via complex queries
Especially if additional queries are to be applied to the view within a short time period
Slide 9- 14
Assumption:
Other queries on the view will follow
Concerns:
Maintaining correspondence between the base table and the view when the base table is updated
Strategy:
Incremental update
Copyright 2007 Ramez Elmasri and Shamkant B. Navathe
Slide 9- 15
Update Views
Update on a single view without aggregate operations:
Update may map to an update on the underlying base table
Slide 9- 16
Un-updatable Views
Views defined using groups and aggregate functions are not updateable Views defined on multiple tables using joins are generally not updateable WITH CHECK OPTION: must be added to the definition of a view if the view is to be updated
To allow check for updatability and to plan for an execution strategy
Slide 9- 17
Database Programming
Objective:
To access a database from an application program (as opposed to interactive interfaces)
Why?
An interactive interface is convenient but not sufficient
A majority of database operations are made thru application programs (increasingly thru web applications)
Slide 9- 18
Slide 9- 19
Impedance Mismatch
Incompatibilities between a host programming language and the database model, e.g.,
type mismatch and incompatibilities; requires a new binding for each language set vs. record-at-a-time processing
need special iterators to loop over query results and manipulate individual values
Slide 9- 20
10
Slide 9- 21
Embedded SQL
Most SQL statements can be embedded in a general-purpose host programming language such as COBOL, C, Java An embedded SQL statement is distinguished from the host language statements by enclosing it between EXEC SQL or EXEC SQL BEGIN and a matching END-EXEC or EXEC SQL END (or semicolon)
Syntax may vary with language Shared variables (used in both languages) usually prefixed with a colon (:) in SQL
Copyright 2007 Ramez Elmasri and Shamkant B. Navathe
Slide 9- 22
11
Slide 9- 23
Disconnection
DISCONNECT connection-name;
Slide 9- 24
12
Slide 9- 25
Slide 9- 26
13
Dynamic SQL
Objective:
Composing and executing new (not previously compiled) SQL statements at run-time
a program accepts SQL statements from the keyboard at runtime a point-and-click operation translates to certain SQL query
Slide 9- 27
Slide 9- 28
14
Slide 9- 29
A Java program with JDBC functions can access any relational DBMS that has a JDBC driver JDBC allows a program to connect to several databases (known as data sources)
Slide 9- 30
15
Slide 9- 31
Slide 9- 32
16
Slide 9- 33
Disadvantage:
SQL syntax checks to be done at run-time
Slide 9- 34
17
Slide 9- 35
Components of SQL/CLI
Environment record:
Keeps track of database connections
Connection record:
Keep tracks of info needed for a particular connection
Statement record:
Keeps track of info needed for one SQL statement
Description record:
Keeps track of tuples
Copyright 2007 Ramez Elmasri and Shamkant B. Navathe
Slide 9- 36
18
Slide 9- 37
Advantages:
If the procedure is needed by many applications, it can be invoked by any of them (thus reduce duplications) Execution by the server reduces communication costs Enhance the modeling power of views
Disadvantages:
Every DBMS has its own syntax and this can make the system less portable
Slide 9- 38
19
Slide 9- 39
Slide 9- 40
20
SQL/PSM: An Example
CREATE FUNCTION DEPT_SIZE (IN deptno INTEGER) RETURNS VARCHAR[7] DECLARE TOT_EMPS INTEGER; SELECT COUNT (*) INTO TOT_EMPS FROM SELECT EMPLOYEE WHERE DNO = deptno; IF TOT_EMPS > 100 THEN RETURN HUGE ELSEIF TOT_EMPS > 50 THEN RETURN LARGE ELSEIF TOT_EMPS > 30 THEN RETURN MEDIUM ELSE RETURN SMALL ENDIF;
Slide 9- 41
Summary
Assertions provide a means to specify additional constraints Triggers are assertions that define actions to be automatically taken when certain conditions occur Views create temporary (virtual) tables A database may be accessed in an interactive mode Most often, however, data in a database is manipulate via application programs Several methods of database programming: Embedded SQL Dynamic SQL Stored procedure and function
Copyright 2007 Ramez Elmasri and Shamkant B. Navathe
Slide 9- 42
21