SlideShare ist ein Scribd-Unternehmen logo
1 von 58
Chapter 4: Advanced SQL




         Database System Concepts, 1 st Ed.
© VNS InfoSolutions Private Limited, Varanasi(UP), India 221002
         See www.vnsispl.com for conditions on re-use
Chapter 4: Advanced SQL
             s SQL Data Types and Schemas
             s Integrity Constraints
             s Authorization
             s Embedded SQL
             s Dynamic SQL
             s Functions and Procedural Constructs**
             s Recursive Queries**
             s Advanced SQL Features**




Database System Concepts, 1 st Ed.            4.2   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Built-in Data Types in SQL
             s date: Dates, containing a (4 digit) year, month and date
                    q   Example: date ‘2005-7-27’
             s time: Time of day, in hours, minutes and seconds.
                    q   Example: time ‘09:00:30’          time ‘09:00:30.75’
             s timestamp: date plus time of day
                    q   Example: timestamp ‘2005-7-27 09:00:30.75’
             s interval: period of time
                    q   Example: interval ‘1’ day
                    q   Subtracting a date/time/timestamp value from another gives an
                        interval value
                    q   Interval values can be added to date/time/timestamp values




Database System Concepts, 1 st Ed.                  4.3   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Build-in Data Types in SQL
                                          (Cont.)
             s Can extract values of individual fields from date/time/timestamp
                    q   Example: extract (year from r.starttime)


             s Can cast string types to date/time/timestamp
                    q   Example: cast <string-valued-expression> as date
                    q   Example: cast <string-valued-expression> as time




Database System Concepts, 1 st Ed.                4.4   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
User-Defined Types
             s create type construct in SQL creates user-defined type


                              create type Dollars as numeric (12,2) final


             s create domain construct in SQL-92 creates user-defined domain
                  types


                              create domain person_name char(20) not null


             s Types and domains are similar. Domains can have constraints, such
                  as not null, specified on them.




Database System Concepts, 1 st Ed.                  4.5   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Domain Constraints
             s Domain constraints are the most elementary form of integrity
                  constraint. They test values inserted in the database, and test queries
                  to ensure that the comparisons make sense.
             s New domains can be created from existing data types
                    q   Example: create domain Dollars numeric(12, 2)
                                 create domain Pounds numeric(12,2)
             s We cannot assign or compare a value of type Dollars to a value of
                  type Pounds.
                    q   However, we can convert type as below
                             (cast r.A as Pounds)
                        (Should also multiply by the dollar-to-pound conversion-rate)




Database System Concepts, 1 st Ed.                   4.6   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Large-Object Types
             s Large objects (photos, videos, CAD files, etc.) are stored as a large
                  object:
                    q   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)
                    q   clob: character large object -- object is a large collection of
                        character data
                    q   When a query returns a large object, a pointer is returned rather
                        than the large object itself.




Database System Concepts, 1 st Ed.                     4.7   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Integrity Constraints
             s 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.
                    q   A checking account must have a balance greater than
                        $10,000.00
                    q   A salary of a bank employee must be at least $4.00 an
                        hour
                    q   A customer must have a (non-null) phone number




Database System Concepts, 1 st Ed.                  4.8   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Constraints on a Single Relation

             s not null
             s primary key
             s unique
             s check (P ), where P is a predicate




Database System Concepts, 1 st Ed.             4.9   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Not Null Constraint

             s Declare branch_name for branch is not null
                       branch_name char(15) not null


             s Declare the domain Dollars to be not null


                     create domain Dollars numeric(12,2) not null




Database System Concepts, 1 st Ed.              4.10   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
The Unique Constraint

             s unique ( A , A2, …, Am)
                         1
             s The unique specification states that the attributes
                     A1, A2, … Am
                  form a candidate key.
             s Candidate keys are permitted to be null (in contrast to primary keys).




Database System Concepts, 1 st Ed.               4.11   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
The check clause

             s check (P ), where P is a predicate

                   Example: Declare branch_name as the primary key for
                   branch and ensure that the values of assets are non-
                   negative.
                               create table branch
                                    (branch_name char(15),
                                       branch_city     char(30),
                                     assets            integer,
                                     primary key (branch_name),
                                     check (assets >= 0))




Database System Concepts, 1 st Ed.            4.12   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
The check clause (Cont.)
             s The check clause in SQL-92 permits domains to be restricted:
                    q   Use check clause to ensure that an hourly_wage domain allows
                        only values greater than a specified value.
                              create domain hourly_wage numeric(5,2)
                                    constraint value_test check(value > = 4.00)
                    q   The domain has a constraint that ensures that the hourly_wage is
                        greater than 4.00
                    q   The clause constraint value_test is optional; useful to indicate
                        which constraint an update violated.




Database System Concepts, 1 st Ed.                  4.13   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Referential Integrity
             s 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.
                    q   Example: If “Perryridge” is a branch name appearing in one of the
                        tuples in the account relation, then there exists a tuple in the branch
                        relation for branch “Perryridge”.
             s Primary and candidate keys and foreign keys can be specified as part of
                  the SQL create table statement:
                    q   The primary key clause lists attributes that comprise the primary key.
                    q   The unique key clause lists attributes that comprise a candidate key.
                    q   The foreign key clause lists the attributes that comprise the foreign
                        key and the name of the relation referenced by the foreign key. By
                        default, a foreign key references the primary key attributes of the
                        referenced table.




Database System Concepts, 1 st Ed.                   4.14   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Referential Integrity in SQL –
                                    Example

             create table customer
                (customer_name char(20),
                customer_street   char(30),
                customer_city     char(30),
                primary key (customer_name ))
             create table branch
                (branch_name     char(15),
                branch_city      char(30),
                assets           numeric(12,2),
                primary key (branch_name ))




Database System Concepts, 1 st Ed.          4.15   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Referential Integrity in SQL – Example
                                      (Cont.)

             create table account
                (account_number char(10),
                branch_name     char(15),
                balance         integer,
                primary key (account_number),
                foreign key (branch_name) references branch )
             create table depositor
                (customer_name char(20),
                account_number char(10),
                primary key (customer_name, account_number),
                foreign key (account_number ) references account,
                foreign key (customer_name ) references customer )




Database System Concepts, 1 st Ed.          4.16   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Assertions
             s An assertion is a predicate expressing a condition that we wish the
                  database always to satisfy.
             s An assertion in SQL takes the form
                        create assertion <assertion-name> check <predicate>
             s When an assertion is made, the system tests it for validity, and tests it
                  again on every update that may violate the assertion
                    q    This testing may introduce a significant amount of overhead;
                         hence assertions should be used with great care.
             s Asserting
                      for all X, P(X)
                  is achieved in a round-about fashion using
                      not exists X such that not P(X)




Database System Concepts, 1 st Ed.                   4.17   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Assertion Example
             s Every loan has at least one borrower who maintains an account with a
                  minimum balance or $1000.00
                  create assertion balance_constraint check
                     (not exists (
                        select *
                             from loan
                           where not exists (
                                select *
                               from borrower, depositor, account
                             where loan.loan_number = borrower.loan_number
                                 and borrower.customer_name = depositor.customer_name
                                 and depositor.account_number = account.account_number
                                 and account.balance >= 1000)))




Database System Concepts, 1 st Ed.                 4.18   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Assertion Example
             s The sum of all loan amounts for each branch must be less than the
                  sum of all account balances at the branch.
                   create assertion sum_constraint check
                      (not exists (select *
                                     from branch
                                 where (select sum(amount )
                                              from loan
                                         where loan.branch_name =
                                              branch.branch_name )
                                     >= (select sum (amount )
                                               from account
                                         where loan.branch_name =
                                              branch.branch_name )))




Database System Concepts, 1 st Ed.                4.19   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Authorization
             Forms of authorization on parts of the database:

             s Read - allows reading, but not modification of data.
             s Insert - allows insertion of new data, but not modification of existing data.
             s Update - allows modification, but not deletion of data.
             s Delete - allows deletion of data.


             Forms of authorization to modify the database schema (covered in Chapter 8):
             s Index - allows creation and deletion of indices.
             s Resources - allows creation of new relations.
             s Alteration - allows addition or deletion of attributes in a relation.
             s Drop - allows deletion of relations.




Database System Concepts, 1 st Ed.                4.20   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Authorization Specification in SQL
             s The grant statement is used to confer authorization
                           grant <privilege list>
                           on <relation name or view name> to <user list>
             s <user list> is:
                    q   a user-id
                    q   public, which allows all valid users the privilege granted
                    q   A role (more on this in Chapter 8)
             s Granting a privilege on a view does not imply granting any privileges
                  on the underlying relations.
             s The grantor of the privilege must already hold the privilege on the
                  specified item (or be the database administrator).




Database System Concepts, 1 st Ed.                   4.21   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Privileges in SQL
             s select: allows read access to relation,or the ability to query using
                  the view
                    q   Example: grant users U1, U2, and U3 select authorization on
                        the branch relation:
                                     grant select on branch to U1, U2, U3
             s insert: the ability to insert tuples
             s update: the ability to update using the SQL update statement
             s delete: the ability to delete tuples.
             s all privileges: used as a short form for all the allowable
                  privileges
             s more in Chapter 8




Database System Concepts, 1 st Ed.                   4.22   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Revoking Authorization in SQL
             s The revoke statement is used to revoke authorization.
                    revoke <privilege list>
                    on <relation name or view name> from <user list>
             s Example:
                    revoke select on branch from U1, U2, U3
             s <privilege-list> may be all to revoke all privileges the revokee may
                  hold.
             s If <revokee-list> includes public, all users lose the privilege except
                  those granted it explicitly.
             s If the same privilege was granted twice to the same user by different
                  grantees, the user may retain the privilege after the revocation.
             s All privileges that depend on the privilege being revoked are also
                  revoked.




Database System Concepts, 1 st Ed.                 4.23   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Embedded SQL
             s The SQL standard defines embeddings of SQL in a variety of
                  programming languages such as C, Java, and Cobol.
             s A language to which SQL queries are embedded is referred to as a
                  host language, and the SQL structures permitted in the host language
                  comprise embedded SQL.
             s The basic form of these languages follows that of the System R
                  embedding of SQL into PL/I.
             s EXEC SQL statement is used to identify embedded SQL request to the
                  preprocessor
                        EXEC SQL <embedded SQL statement > END_EXEC
                  Note: this varies by language (for example, the Java embedding uses
                                                       # SQL { …. }; )




Database System Concepts, 1 st Ed.               4.24   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Example Query
             s From within a host language, find the names and cities of
                  customers with more than the variable amount dollars in some
                  account.

             s Specify the query in SQL and declare a cursor for it
                    EXEC SQL
                      declare c cursor for
                       select depositor.customer_name, customer_city
                      from depositor, customer, account
                      where depositor.customer_name = customer.customer_name
                         and depositor account_number = account.account_number
                         and account.balance > :amount
                    END_EXEC




Database System Concepts, 1 st Ed.               4.25   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Embedded SQL (Cont.)
             s The open statement causes the query to be evaluated
                                     EXEC SQL open c END_EXEC
             s The fetch statement causes the values of one tuple in the query
                  result to be placed on host language variables.
                     EXEC SQL fetch c into :cn, :cc END_EXEC
                  Repeated calls to fetch get successive tuples in the query result
             s A variable called SQLSTATE in the SQL communication area
                  (SQLCA) gets set to ‘02000’ to indicate no more data is available
             s The close statement causes the database system to delete the
                  temporary relation that holds the result of the query.
                                     EXEC SQL close c END_EXEC
             Note: above details vary with language. For example, the Java
                embedding defines Java iterators to step through result tuples.




Database System Concepts, 1 st Ed.                   4.26   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Updates Through Cursors
             s Can update tuples fetched by cursor by declaring that the cursor is for
                  update
                       declare c cursor for
                          select *
                        from account
                        where branch_name = ‘Perryridge’
                      for update
             s To update tuple at the current location of cursor c
                       update account
                      set balance = balance + 100
                      where current of c




Database System Concepts, 1 st Ed.                  4.27   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Dynamic SQL
             s Allows programs to construct and submit SQL queries at run time.
             s Example of the use of dynamic SQL from within a C program.

                  char * sqlprog = “ update account
                                   set balance = balance * 1.05
                                     where account_number = ?”
                  EXEC SQL prepare dynprog from :sqlprog;
                  char account [10] = “A-101”;
                  EXEC SQL execute dynprog using :account;
             s The dynamic SQL program contains a ?, which is a place holder for a
                  value that is provided when the SQL program is executed.




Database System Concepts, 1 st Ed.               4.28   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC and JDBC
             s API (application-program interface) for a program to interact with a
                  database server
             s Application makes calls to
                    q   Connect with the database server
                    q   Send SQL commands to the database server
                    q   Fetch tuples of result one-by-one into program variables
             s ODBC (Open Database Connectivity) works with C, C++, C#, and
                  Visual Basic
             s JDBC (Java Database Connectivity) works with Java




Database System Concepts, 1 st Ed.                  4.29   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC
             s Open DataBase Connectivity(ODBC) standard
                    q   standard for application program to communicate with a database
                        server.
                    q   application program interface (API) to
                             open a connection with a database,
                             send queries and updates,
                             get back results.
             s Applications such as GUI, spreadsheets, etc. can use ODBC




Database System Concepts, 1 st Ed.                    4.30   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC (Cont.)
             s Each database system supporting ODBC provides a "driver" library that
                  must be linked with the client program.
             s When client program makes an ODBC API call, the code in the library
                  communicates with the server to carry out the requested action, and
                  fetch results.
             s ODBC program first allocates an SQL environment, then a database
                  connection handle.
             s Opens database connection using SQLConnect(). Parameters for
                  SQLConnect:
                    q   connection handle,
                    q   the server to which to connect
                    q   the user identifier,
                    q   password
             s Must also specify types of arguments:
                    q   SQL_NTS denotes previous argument is a null-terminated string.



Database System Concepts, 1 st Ed.                       4.31   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC Code

              s int ODBCexample()
                   {
                        RETCODE error;
                        HENV         env;   /* environment */
                        HDBC         conn; /* database connection */
                        SQLAllocEnv(&env);
                        SQLAllocConnect(env, &conn);
                        SQLConnect(conn, "aura.bell-labs.com", SQL_NTS, "avi",
                         SQL_NTS, "avipasswd", SQL_NTS);
                        { …. Do actual work … }


                        SQLDisconnect(conn);
                        SQLFreeConnect(conn);
                        SQLFreeEnv(env);
                    }

Database System Concepts, 1 st Ed.                  4.32   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC Code (Cont.)
             s Program sends SQL commands to the database by using SQLExecDirect
             s Result tuples are fetched using SQLFetch()
             s SQLBindCol() binds C language variables to attributes of the query result
                    q   When a tuple is fetched, its attribute values are automatically stored in
                        corresponding C variables.
                    q   Arguments to SQLBindCol()
                             ODBC stmt variable, attribute position in query result
                             The type conversion from SQL to C.
                             The address of the variable.
                             For variable-length types like character arrays,
                               – The maximum length of the variable
                               – Location to store actual length when a tuple is fetched.
                               – Note: A negative value returned for the length field indicates null value
             s Good programming requires checking results of every function call for
                  errors; we have omitted most checks for brevity.


Database System Concepts, 1 st Ed.                           4.33   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC Code (Cont.)
              s Main body of program
                         char branchname[80];
                         float balance;
                         int lenOut1, lenOut2;
                         HSTMT stmt;
                          SQLAllocStmt(conn, &stmt);
                         char * sqlquery = "select branch_name, sum (balance)
                                             from account
                                             group by branch_name";
                           error = SQLExecDirect(stmt, sqlquery, SQL_NTS);
                          if (error == SQL_SUCCESS) {
                              SQLBindCol(stmt, 1, SQL_C_CHAR, branchname , 80,
                         &lenOut1);
                              SQLBindCol(stmt, 2, SQL_C_FLOAT, &balance,    0 ,
                         &lenOut2);
                                     while (SQLFetch(stmt) >= SQL_SUCCESS) {
                                       printf (" %s %gn", branchname, balance);
                                }
                         }
                         SQLFreeStmt(stmt, SQL_DROP);
Database System Concepts, 1 st Ed.                    4.34   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
More ODBC Features

             s Prepared Statement
                    q   SQL statement prepared: compiled at the database
                    q   Can have placeholders: E.g. insert into account values(?,?,?)
                    q   Repeatedly executed with actual values for the placeholders
             s Metadata features
                    q   finding all the relations in the database and
                    q   finding the names and types of columns of a query result or a relation in
                        the database.
             s By default, each SQL statement is treated as a separate transaction that is
                  committed automatically.
                    q   Can turn off automatic commit on a connection
                             SQLSetConnectOption(conn, SQL_AUTOCOMMIT, 0)}
                    q   transactions must then be committed or rolled back explicitly by
                             SQLTransact(conn, SQL_COMMIT) or
                             SQLTransact(conn, SQL_ROLLBACK)
Database System Concepts, 1 st Ed.                   4.35   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
ODBC Conformance Levels
             s Conformance levels specify subsets of the functionality defined by the
                  standard.
                    q   Core
                    q   Level 1 requires support for metadata querying
                    q   Level 2 requires ability to send and retrieve arrays of parameter
                        values and more detailed catalog information.
             s SQL Call Level Interface (CLI) standard similar to ODBC interface, but
                  with some minor differences.




Database System Concepts, 1 st Ed.                   4.36   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
JDBC
             s JDBC is a Java API for communicating with database systems
                  supporting SQL
             s JDBC supports a variety of features for querying and updating data, and
                  for retrieving query results
             s JDBC also supports metadata retrieval, such as querying about relations
                  present in the database and the names and types of relation attributes
             s Model for communicating with the database:
                    q   Open a connection
                    q   Create a “statement” object
                    q   Execute queries using the Statement object to send queries and
                        fetch results
                    q   Exception mechanism to handle errors




Database System Concepts, 1 st Ed.                    4.37   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
JDBC Code
                       public static void JDBCexample(String dbid, String userid, String passwd)
                    {
                             try {
                               Class.forName ("oracle.jdbc.driver.OracleDriver");
                               Connection conn =
                                DriverManager.getConnection( "jdbc:oracle:thin:@ aura.bell-
                                labs.com:2000:bankdb", userid, passwd);
                               Statement stmt = conn.createStatement();
                                     … Do Actual Work ….
                               stmt.close();
                               conn.close();
                         }
                         catch (SQLException sqle) {
                               System.out.println("SQLException : " + sqle);
                         }
                   }

Database System Concepts, 1 st Ed.                         4.38   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
JDBC Code (Cont.)
             s Update to database
                    try {
                          stmt.executeUpdate( "insert into account values
                                                   ('A-9732', 'Perryridge', 1200)");
                    } catch (SQLException sqle) {
                          System.out.println("Could not insert tuple. " + sqle);
                    }
             s Execute query and fetch and print results
                    ResultSet rset = stmt.executeQuery( "select branch_name,
                      avg(balance)
                                                            from account
                                                            group by
                      branch_name");
                    while (rset.next()) {
                          System.out.println(
                                   rset.getString("branch_name") + " " +
                           rset.getFloat(2));
                    }
Database System Concepts, 1 st Ed.               4.39   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
JDBC Code Details
             s Getting result fields:
                    q   rs.getString(“branchname”) and rs.getString(1)
                        equivalent if branchname is the first argument of select
                        result.
             s Dealing with Null values
                    int a = rs.getInt(“a”);
                    if (rs.wasNull()) Systems.out.println(“Got null value”);




Database System Concepts, 1 st Ed.              4.40   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Procedural Extensions and Stored
                                      Procedures

             s SQL provides a module language
                    q   Permits definition of procedures in SQL, with if-then-else statements,
                        for and while loops, etc.
                    q   more in Chapter 9
             s Stored Procedures
                    q   Can store procedures in the database
                    q   then execute them using the call statement
                    q   permit external applications to operate on the database without
                        knowing about internal details
             s These features are covered in Chapter 9 (Object Relational Databases)




Database System Concepts, 1 st Ed.                   4.41   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Functions and Procedures
             s SQL:1999 supports functions and procedures
                    q   Functions/procedures can be written in SQL itself, or in an external
                        programming language
                    q   Functions are particularly useful with specialized data types such as
                        images and geometric objects
                             Example: functions to check if polygons overlap, or to compare
                              images for similarity
                    q   Some database systems support table-valued functions, which
                        can return a relation as a result
             s SQL:1999 also supports a rich set of imperative constructs, including
                    q   Loops, if-then-else, assignment
             s Many databases have proprietary procedural extensions to SQL that
                  differ from SQL:1999




Database System Concepts, 1 st Ed.                    4.42   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
SQL Functions
             s Define a function that, given the name of a customer, returns the count
                  of the number of accounts owned by the customer.
                       create function account_count (customer_name
                  varchar(20))
                      returns integer
                      begin
                          declare a_count integer;
                          select count (* ) into a_count
                        from depositor
                        where depositor.customer_name = customer_name
                        return a_count;
                      end
             s Find the name and address of each customer that has more than one
                  account.
                         select customer_name, customer_street, customer_city
                         from customer
                         where account_count (customer_name ) > 1


Database System Concepts, 1 st Ed.                4.43   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Table Functions
           s SQL:2003 added functions that return a relation as a result
           s Example: Return all accounts owned by a given customer
                create function accounts_of (customer_name char(20)
                        returns table ( account_number char(10),
                                        branch_name char(15)
                                        balance numeric(12,2))
                return table
                     (select account_number, branch_name, balance
                      from account A
                      where exists (
                         select *
                         from depositor D
                         where D.customer_name = accounts_of.customer_name
                              and D.account_number = A.account_number ))




Database System Concepts, 1 st Ed.               4.44   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Table Functions (cont’d)
             s Usage
                          select *
                          from table (accounts_of (‘Smith’))




Database System Concepts, 1 st Ed.                  4.45   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
SQL Procedures

             s The author_count function could instead be written as procedure:
                  create procedure account_count_proc (in title varchar(20),
                                                   out a_count integer)
                  begin
                   select count(author) into a_count
                   from depositor
                   where depositor.customer_name =
                  account_count_proc.customer_name
                  end
             s Procedures can be invoked either from an SQL procedure or from
                  embedded SQL, using the call statement.
                           declare a_count integer;
                           call account_count_proc( ‘Smith’, a_count);
                  Procedures and functions can be invoked also from dynamic SQL
             s SQL:1999 allows more than one function/procedure of the same name
                  (called name overloading), as long as the number of
                  arguments differ, or at least the types of the arguments differ
Database System Concepts, 1 st Ed.                   4.46   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Procedural Constructs
             s Compound statement: begin … end,
                    q   May contain multiple SQL statements between begin and end.
                    q   Local variables can be declared within a compound statements
             s While and repeat statements:
                           declare n integer default 0;
                           while n < 10 do
                             set n = n + 1
                           end while

                           repeat
                             set n = n – 1
                           until n = 0
                           end repeat




Database System Concepts, 1 st Ed.                 4.47   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Procedural Constructs (Cont.)
             s For loop
                    q   Permits iteration over all results of a query
                    q   Example: find total of all balances at the Perryridge branch

                           declare n integer default 0;
                           for r as
                                 select balance from account
                                where branch_name = ‘Perryridge’
                            do
                                 set n = n + r.balance
                            end for




Database System Concepts, 1 st Ed.                    4.48   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Procedural Constructs (cont.)
             s Conditional statements (if-then-else)
                  E.g. To find sum of balances for each of three categories of accounts
                  (with balance <1000, >=1000 and <5000, >= 5000)
                           if r.balance < 1000
                               then set l = l + r.balance
                           elseif r.balance < 5000
                               then set m = m + r.balance
                           else set h = h + r.balance
                           end if
             s SQL:1999 also supports a case statement similar to C case statement
             s Signaling of exception conditions, and declaring handlers for exceptions
                           declare out_of_stock condition
                           declare exit handler for out_of_stock
                           begin
                           …
                           .. signal out-of-stock
                           end
                    q   The handler here is exit -- causes enclosing begin..end to be
                        exited
                    q   Other actions possible on exception
Database System Concepts, 1 st Ed.                  4.49   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
External Language Functions/Procedures

             s SQL:1999 permits the use of functions and procedures written in other
                  languages such as C or C++
             s Declaring external language procedures and functions


                  create procedure account_count_proc(in customer_name
                  varchar(20),
                                                      out count integer)
                  language C
                  external name ’ /usr/avi/bin/account_count_proc’

                  create function account_count(customer_name varchar(20))
                  returns integer
                  language C
                  external name ‘/usr/avi/bin/author_count’




Database System Concepts, 1 st Ed.             4.50   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
External Language Routines (Cont.)
             s Benefits of external language functions/procedures:
                    q   more efficient for many operations, and more expressive power
             s Drawbacks
                    q   Code to implement function may need to be loaded into database
                        system and executed in the database system’s address space
                             risk of accidental corruption of database structures
                             security risk, allowing users access to unauthorized data
                    q   There are alternatives, which give good security at the cost of
                        potentially worse performance
                    q   Direct execution in the database system’s space is used when
                        efficiency is more important than security




Database System Concepts, 1 st Ed.                     4.51   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Security with External Language Routines

             s To deal with security problems
                    q   Use sandbox techniques
                              that is use a safe language like Java, which cannot be used to
                              access/damage other parts of the database code
                    q   Or, run external language functions/procedures in a separate
                        process, with no access to the database process’ memory
                             Parameters and results communicated via inter-process
                              communication
             s Both have performance overheads
             s Many database systems support both above approaches as well as
                  direct executing in database system address space




Database System Concepts, 1 st Ed.                     4.52   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Recursion in SQL

              s SQL:1999 permits recursive view definition
              s Example: find all employee-manager pairs, where the employee
                   reports to the manager directly or indirectly (that is manager’s
                   manager, manager’s manager’s manager, etc.)

                       with recursive empl (employee_name, manager_name ) as (
                              select employee_name, manager_name
                              from manager
                          union
                              select manager.employee_name, empl.manager_name
                              from manager, empl
                              where manager.manager_name = empl.employe_name)
                       select *
                       from empl
                   This example view, empl, is called the transitive closure of the
                   manager relation



Database System Concepts, 1 st Ed.                  4.53   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
The Power of Recursion
              s Recursive views make it possible to write queries, such as transitive
                   closure queries, that cannot be written without recursion or iteration.
                    q    Intuition: Without recursion, a non-recursive non-iterative program
                         can perform only a fixed number of joins of manager with itself
                             This can give only a fixed number of levels of managers
                             Given a program we can construct a database with a greater
                              number of levels of managers on which the program will not work
              s Computing transitive closure
                    q    The next slide shows a manager relation
                    q    Each step of the iterative process constructs an extended version of
                         empl from its recursive definition.
                    q    The final result is called the fixed point of the recursive view
                         definition.
              s Recursive views are required to be monotonic. That is, if we add tuples
                   to manger the view contains all of the tuples it contained before, plus
                   possibly more


Database System Concepts, 1 st Ed.                     4.54   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Example of Fixed-Point Computation




Database System Concepts, 1 st Ed.   4.55   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Advanced SQL Features**
             s Create a table with the same schema as an existing table:
                  create table temp_account like account
             s SQL:2003 allows subqueries to occur anywhere a value is required
                  provided the subquery returns only one value. This applies to updates as
                  well
             s SQL:2003 allows subqueries in the from clause to access attributes of
                  other relations in the from clause using the lateral construct:
                          select C.customer_name, num_accounts
                          from customer C,
                             lateral (select count(*)
                                    from account A
                                    where A.customer_name = C.customer_name )
                                  as this_customer (num_accounts )




Database System Concepts, 1 st Ed.                 4.56   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
Advanced SQL Features (cont’d)
             s Merge construct allows batch processing of updates.
             s Example: relation funds_received (account_number, amount ) has
                  batch of deposits to be added to the proper account in the account
                  relation
                  merge into account as A
                      using (select *
                             from funds_received as F )
                      on (A.account_number = F.account_number )
                      when matched then
                            update set balance = balance + F.amount




Database System Concepts, 1 st Ed.                4.57   ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
End of Chapter




         Database System Concepts, 1 st Ed.
© VNS InfoSolutions Private Limited, Varanasi(UP), India 221002
         See www.vnsispl.com for conditions on re-use

Weitere ähnliche Inhalte

Was ist angesagt?

Java e i database: da JDBC a JPA
Java e i database: da JDBC a JPAJava e i database: da JDBC a JPA
Java e i database: da JDBC a JPAbenfante
 
Introduction to NoSQL and Couchbase
Introduction to NoSQL and CouchbaseIntroduction to NoSQL and Couchbase
Introduction to NoSQL and CouchbaseDipti Borkar
 
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012Gigaom
 
Building Scalable SQL Applications Using NoSQL Paradigms
Building Scalable SQL Applications Using NoSQL ParadigmsBuilding Scalable SQL Applications Using NoSQL Paradigms
Building Scalable SQL Applications Using NoSQL ParadigmsMichael Rys
 
Scaling with SQL Server and SQL Azure Federations
Scaling with SQL Server and SQL Azure FederationsScaling with SQL Server and SQL Azure Federations
Scaling with SQL Server and SQL Azure FederationsMichael Rys
 
Apache con 2012 taking the guesswork out of your hadoop infrastructure
Apache con 2012 taking the guesswork out of your hadoop infrastructureApache con 2012 taking the guesswork out of your hadoop infrastructure
Apache con 2012 taking the guesswork out of your hadoop infrastructureSteve Watt
 

Was ist angesagt? (7)

Java e i database: da JDBC a JPA
Java e i database: da JDBC a JPAJava e i database: da JDBC a JPA
Java e i database: da JDBC a JPA
 
Introduction to NoSQL and Couchbase
Introduction to NoSQL and CouchbaseIntroduction to NoSQL and Couchbase
Introduction to NoSQL and Couchbase
 
LDAP em VDM++
LDAP em VDM++LDAP em VDM++
LDAP em VDM++
 
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012
SUPPORTING QUERYING ON MULTI-MILLION EVENTS PER SECOND from Structure:Data 2012
 
Building Scalable SQL Applications Using NoSQL Paradigms
Building Scalable SQL Applications Using NoSQL ParadigmsBuilding Scalable SQL Applications Using NoSQL Paradigms
Building Scalable SQL Applications Using NoSQL Paradigms
 
Scaling with SQL Server and SQL Azure Federations
Scaling with SQL Server and SQL Azure FederationsScaling with SQL Server and SQL Azure Federations
Scaling with SQL Server and SQL Azure Federations
 
Apache con 2012 taking the guesswork out of your hadoop infrastructure
Apache con 2012 taking the guesswork out of your hadoop infrastructureApache con 2012 taking the guesswork out of your hadoop infrastructure
Apache con 2012 taking the guesswork out of your hadoop infrastructure
 

Ähnlich wie VNSISPL_DBMS_Concepts_ch4

Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3sriprasoon
 
VNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAVNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAsriprasoon
 
VNSISPL_DBMS_Concepts_ch2
VNSISPL_DBMS_Concepts_ch2VNSISPL_DBMS_Concepts_ch2
VNSISPL_DBMS_Concepts_ch2sriprasoon
 
VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9sriprasoon
 
Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1sriprasoon
 
VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6sriprasoon
 
VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7sriprasoon
 
VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10sriprasoon
 
VNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBVNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBsriprasoon
 
VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13sriprasoon
 
VNSISPL_DBMS_Concepts_ch20
VNSISPL_DBMS_Concepts_ch20VNSISPL_DBMS_Concepts_ch20
VNSISPL_DBMS_Concepts_ch20sriprasoon
 
VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8sriprasoon
 
VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5sriprasoon
 
VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18sriprasoon
 
VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19sriprasoon
 
VNSISPL_DBMS_Concepts_ch25
VNSISPL_DBMS_Concepts_ch25VNSISPL_DBMS_Concepts_ch25
VNSISPL_DBMS_Concepts_ch25sriprasoon
 
VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21sriprasoon
 

Ähnlich wie VNSISPL_DBMS_Concepts_ch4 (20)

Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3Vnsispl dbms concepts_ch3
Vnsispl dbms concepts_ch3
 
VNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appAVNSISPL_DBMS_Concepts_appA
VNSISPL_DBMS_Concepts_appA
 
VNSISPL_DBMS_Concepts_ch2
VNSISPL_DBMS_Concepts_ch2VNSISPL_DBMS_Concepts_ch2
VNSISPL_DBMS_Concepts_ch2
 
VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9VNSISPL_DBMS_Concepts_ch9
VNSISPL_DBMS_Concepts_ch9
 
Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1Vnsispl dbms concepts_ch1
Vnsispl dbms concepts_ch1
 
VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6VNSISPL_DBMS_Concepts_ch6
VNSISPL_DBMS_Concepts_ch6
 
VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7VNSISPL_DBMS_Concepts_ch7
VNSISPL_DBMS_Concepts_ch7
 
VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10VNSISPL_DBMS_Concepts_ch10
VNSISPL_DBMS_Concepts_ch10
 
VNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppBVNSISPL_DBMS_Concepts_AppB
VNSISPL_DBMS_Concepts_AppB
 
VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13VNSISPL_DBMS_Concepts_ch13
VNSISPL_DBMS_Concepts_ch13
 
VNSISPL_DBMS_Concepts_ch20
VNSISPL_DBMS_Concepts_ch20VNSISPL_DBMS_Concepts_ch20
VNSISPL_DBMS_Concepts_ch20
 
VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8VNSISPL_DBMS_Concepts_ch8
VNSISPL_DBMS_Concepts_ch8
 
VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5VNSISPL_DBMS_Concepts_ch5
VNSISPL_DBMS_Concepts_ch5
 
VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18VNSISPL_DBMS_Concepts_ch18
VNSISPL_DBMS_Concepts_ch18
 
Ch4
Ch4Ch4
Ch4
 
VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19VNSISPL_DBMS_Concepts_ch19
VNSISPL_DBMS_Concepts_ch19
 
Ddl
DdlDdl
Ddl
 
VNSISPL_DBMS_Concepts_ch25
VNSISPL_DBMS_Concepts_ch25VNSISPL_DBMS_Concepts_ch25
VNSISPL_DBMS_Concepts_ch25
 
VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21VNSISPL_DBMS_Concepts_ch21
VNSISPL_DBMS_Concepts_ch21
 
ch4
ch4ch4
ch4
 

Mehr von sriprasoon

VNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCVNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCsriprasoon
 
VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24sriprasoon
 
VNSISPL_DBMS_Concepts_ch23
VNSISPL_DBMS_Concepts_ch23VNSISPL_DBMS_Concepts_ch23
VNSISPL_DBMS_Concepts_ch23sriprasoon
 
VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22sriprasoon
 
VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17sriprasoon
 
VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16sriprasoon
 
VNSISPL_DBMS_Concepts_ch15
VNSISPL_DBMS_Concepts_ch15VNSISPL_DBMS_Concepts_ch15
VNSISPL_DBMS_Concepts_ch15sriprasoon
 
VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14sriprasoon
 
VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11sriprasoon
 
Inventory Management
Inventory ManagementInventory Management
Inventory Managementsriprasoon
 

Mehr von sriprasoon (10)

VNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppCVNSISPL_DBMS_Concepts_AppC
VNSISPL_DBMS_Concepts_AppC
 
VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24VNSISPL_DBMS_Concepts_ch24
VNSISPL_DBMS_Concepts_ch24
 
VNSISPL_DBMS_Concepts_ch23
VNSISPL_DBMS_Concepts_ch23VNSISPL_DBMS_Concepts_ch23
VNSISPL_DBMS_Concepts_ch23
 
VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22VNSISPL_DBMS_Concepts_ch22
VNSISPL_DBMS_Concepts_ch22
 
VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17VNSISPL_DBMS_Concepts_ch17
VNSISPL_DBMS_Concepts_ch17
 
VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16VNSISPL_DBMS_Concepts_ch16
VNSISPL_DBMS_Concepts_ch16
 
VNSISPL_DBMS_Concepts_ch15
VNSISPL_DBMS_Concepts_ch15VNSISPL_DBMS_Concepts_ch15
VNSISPL_DBMS_Concepts_ch15
 
VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14VNSISPL_DBMS_Concepts_ch14
VNSISPL_DBMS_Concepts_ch14
 
VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11VNSISPL_DBMS_Concepts_ch11
VNSISPL_DBMS_Concepts_ch11
 
Inventory Management
Inventory ManagementInventory Management
Inventory Management
 

Kürzlich hochgeladen

DBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfDBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfChristalin Nelson
 
Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfChristalin Nelson
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6Vanessa Camilleri
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQuiz Club NITW
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...Nguyen Thanh Tu Collection
 
6 ways Samsung’s Interactive Display powered by Android changes the classroom
6 ways Samsung’s Interactive Display powered by Android changes the classroom6 ways Samsung’s Interactive Display powered by Android changes the classroom
6 ways Samsung’s Interactive Display powered by Android changes the classroomSamsung Business USA
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17Celine George
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...Nguyen Thanh Tu Collection
 
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFE
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFEPART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFE
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFEMISSRITIMABIOLOGYEXP
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Association for Project Management
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineCeline George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...Nguyen Thanh Tu Collection
 
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...HetalPathak10
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 

Kürzlich hochgeladen (20)

DBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdfDBMSArchitecture_QueryProcessingandOptimization.pdf
DBMSArchitecture_QueryProcessingandOptimization.pdf
 
Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdf
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6
 
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
 
6 ways Samsung’s Interactive Display powered by Android changes the classroom
6 ways Samsung’s Interactive Display powered by Android changes the classroom6 ways Samsung’s Interactive Display powered by Android changes the classroom
6 ways Samsung’s Interactive Display powered by Android changes the classroom
 
Introduction to Research ,Need for research, Need for design of Experiments, ...
Introduction to Research ,Need for research, Need for design of Experiments, ...Introduction to Research ,Need for research, Need for design of Experiments, ...
Introduction to Research ,Need for research, Need for design of Experiments, ...
 
How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17How to Manage Buy 3 Get 1 Free in Odoo 17
How to Manage Buy 3 Get 1 Free in Odoo 17
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
 
Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,
 
Chi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical VariableChi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical Variable
 
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFE
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFEPART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFE
PART 1 - CHAPTER 1 - CELL THE FUNDAMENTAL UNIT OF LIFE
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command Line
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - I-LEARN SMART WORLD - CẢ NĂM - CÓ FILE NGHE (BẢN...
 
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 

VNSISPL_DBMS_Concepts_ch4

  • 1. Chapter 4: Advanced SQL Database System Concepts, 1 st Ed. © VNS InfoSolutions Private Limited, Varanasi(UP), India 221002 See www.vnsispl.com for conditions on re-use
  • 2. Chapter 4: Advanced SQL s SQL Data Types and Schemas s Integrity Constraints s Authorization s Embedded SQL s Dynamic SQL s Functions and Procedural Constructs** s Recursive Queries** s Advanced SQL Features** Database System Concepts, 1 st Ed. 4.2 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 3. Built-in Data Types in SQL s date: Dates, containing a (4 digit) year, month and date q Example: date ‘2005-7-27’ s time: Time of day, in hours, minutes and seconds. q Example: time ‘09:00:30’ time ‘09:00:30.75’ s timestamp: date plus time of day q Example: timestamp ‘2005-7-27 09:00:30.75’ s interval: period of time q Example: interval ‘1’ day q Subtracting a date/time/timestamp value from another gives an interval value q Interval values can be added to date/time/timestamp values Database System Concepts, 1 st Ed. 4.3 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 4. Build-in Data Types in SQL (Cont.) s Can extract values of individual fields from date/time/timestamp q Example: extract (year from r.starttime) s Can cast string types to date/time/timestamp q Example: cast <string-valued-expression> as date q Example: cast <string-valued-expression> as time Database System Concepts, 1 st Ed. 4.4 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 5. User-Defined Types s create type construct in SQL creates user-defined type create type Dollars as numeric (12,2) final s create domain construct in SQL-92 creates user-defined domain types create domain person_name char(20) not null s Types and domains are similar. Domains can have constraints, such as not null, specified on them. Database System Concepts, 1 st Ed. 4.5 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 6. Domain Constraints s Domain constraints are the most elementary form of integrity constraint. They test values inserted in the database, and test queries to ensure that the comparisons make sense. s New domains can be created from existing data types q Example: create domain Dollars numeric(12, 2) create domain Pounds numeric(12,2) s We cannot assign or compare a value of type Dollars to a value of type Pounds. q However, we can convert type as below (cast r.A as Pounds) (Should also multiply by the dollar-to-pound conversion-rate) Database System Concepts, 1 st Ed. 4.6 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 7. Large-Object Types s Large objects (photos, videos, CAD files, etc.) are stored as a large object: q 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) q clob: character large object -- object is a large collection of character data q When a query returns a large object, a pointer is returned rather than the large object itself. Database System Concepts, 1 st Ed. 4.7 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 8. Integrity Constraints s 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. q A checking account must have a balance greater than $10,000.00 q A salary of a bank employee must be at least $4.00 an hour q A customer must have a (non-null) phone number Database System Concepts, 1 st Ed. 4.8 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 9. Constraints on a Single Relation s not null s primary key s unique s check (P ), where P is a predicate Database System Concepts, 1 st Ed. 4.9 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 10. Not Null Constraint s Declare branch_name for branch is not null branch_name char(15) not null s Declare the domain Dollars to be not null create domain Dollars numeric(12,2) not null Database System Concepts, 1 st Ed. 4.10 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 11. The Unique Constraint s unique ( A , A2, …, Am) 1 s The unique specification states that the attributes A1, A2, … Am form a candidate key. s Candidate keys are permitted to be null (in contrast to primary keys). Database System Concepts, 1 st Ed. 4.11 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 12. The check clause s check (P ), where P is a predicate Example: Declare branch_name as the primary key for branch and ensure that the values of assets are non- negative. create table branch (branch_name char(15), branch_city char(30), assets integer, primary key (branch_name), check (assets >= 0)) Database System Concepts, 1 st Ed. 4.12 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 13. The check clause (Cont.) s The check clause in SQL-92 permits domains to be restricted: q Use check clause to ensure that an hourly_wage domain allows only values greater than a specified value. create domain hourly_wage numeric(5,2) constraint value_test check(value > = 4.00) q The domain has a constraint that ensures that the hourly_wage is greater than 4.00 q The clause constraint value_test is optional; useful to indicate which constraint an update violated. Database System Concepts, 1 st Ed. 4.13 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 14. Referential Integrity s 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. q Example: If “Perryridge” is a branch name appearing in one of the tuples in the account relation, then there exists a tuple in the branch relation for branch “Perryridge”. s Primary and candidate keys and foreign keys can be specified as part of the SQL create table statement: q The primary key clause lists attributes that comprise the primary key. q The unique key clause lists attributes that comprise a candidate key. q The foreign key clause lists the attributes that comprise the foreign key and the name of the relation referenced by the foreign key. By default, a foreign key references the primary key attributes of the referenced table. Database System Concepts, 1 st Ed. 4.14 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 15. Referential Integrity in SQL – Example create table customer (customer_name char(20), customer_street char(30), customer_city char(30), primary key (customer_name )) create table branch (branch_name char(15), branch_city char(30), assets numeric(12,2), primary key (branch_name )) Database System Concepts, 1 st Ed. 4.15 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 16. Referential Integrity in SQL – Example (Cont.) create table account (account_number char(10), branch_name char(15), balance integer, primary key (account_number), foreign key (branch_name) references branch ) create table depositor (customer_name char(20), account_number char(10), primary key (customer_name, account_number), foreign key (account_number ) references account, foreign key (customer_name ) references customer ) Database System Concepts, 1 st Ed. 4.16 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 17. Assertions s An assertion is a predicate expressing a condition that we wish the database always to satisfy. s An assertion in SQL takes the form create assertion <assertion-name> check <predicate> s When an assertion is made, the system tests it for validity, and tests it again on every update that may violate the assertion q This testing may introduce a significant amount of overhead; hence assertions should be used with great care. s Asserting for all X, P(X) is achieved in a round-about fashion using not exists X such that not P(X) Database System Concepts, 1 st Ed. 4.17 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 18. Assertion Example s Every loan has at least one borrower who maintains an account with a minimum balance or $1000.00 create assertion balance_constraint check (not exists ( select * from loan where not exists ( select * from borrower, depositor, account where loan.loan_number = borrower.loan_number and borrower.customer_name = depositor.customer_name and depositor.account_number = account.account_number and account.balance >= 1000))) Database System Concepts, 1 st Ed. 4.18 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 19. Assertion Example s The sum of all loan amounts for each branch must be less than the sum of all account balances at the branch. create assertion sum_constraint check (not exists (select * from branch where (select sum(amount ) from loan where loan.branch_name = branch.branch_name ) >= (select sum (amount ) from account where loan.branch_name = branch.branch_name ))) Database System Concepts, 1 st Ed. 4.19 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 20. Authorization Forms of authorization on parts of the database: s Read - allows reading, but not modification of data. s Insert - allows insertion of new data, but not modification of existing data. s Update - allows modification, but not deletion of data. s Delete - allows deletion of data. Forms of authorization to modify the database schema (covered in Chapter 8): s Index - allows creation and deletion of indices. s Resources - allows creation of new relations. s Alteration - allows addition or deletion of attributes in a relation. s Drop - allows deletion of relations. Database System Concepts, 1 st Ed. 4.20 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 21. Authorization Specification in SQL s The grant statement is used to confer authorization grant <privilege list> on <relation name or view name> to <user list> s <user list> is: q a user-id q public, which allows all valid users the privilege granted q A role (more on this in Chapter 8) s Granting a privilege on a view does not imply granting any privileges on the underlying relations. s The grantor of the privilege must already hold the privilege on the specified item (or be the database administrator). Database System Concepts, 1 st Ed. 4.21 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 22. Privileges in SQL s select: allows read access to relation,or the ability to query using the view q Example: grant users U1, U2, and U3 select authorization on the branch relation: grant select on branch to U1, U2, U3 s insert: the ability to insert tuples s update: the ability to update using the SQL update statement s delete: the ability to delete tuples. s all privileges: used as a short form for all the allowable privileges s more in Chapter 8 Database System Concepts, 1 st Ed. 4.22 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 23. Revoking Authorization in SQL s The revoke statement is used to revoke authorization. revoke <privilege list> on <relation name or view name> from <user list> s Example: revoke select on branch from U1, U2, U3 s <privilege-list> may be all to revoke all privileges the revokee may hold. s If <revokee-list> includes public, all users lose the privilege except those granted it explicitly. s If the same privilege was granted twice to the same user by different grantees, the user may retain the privilege after the revocation. s All privileges that depend on the privilege being revoked are also revoked. Database System Concepts, 1 st Ed. 4.23 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 24. Embedded SQL s The SQL standard defines embeddings of SQL in a variety of programming languages such as C, Java, and Cobol. s A language to which SQL queries are embedded is referred to as a host language, and the SQL structures permitted in the host language comprise embedded SQL. s The basic form of these languages follows that of the System R embedding of SQL into PL/I. s EXEC SQL statement is used to identify embedded SQL request to the preprocessor EXEC SQL <embedded SQL statement > END_EXEC Note: this varies by language (for example, the Java embedding uses # SQL { …. }; ) Database System Concepts, 1 st Ed. 4.24 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 25. Example Query s From within a host language, find the names and cities of customers with more than the variable amount dollars in some account. s Specify the query in SQL and declare a cursor for it EXEC SQL declare c cursor for select depositor.customer_name, customer_city from depositor, customer, account where depositor.customer_name = customer.customer_name and depositor account_number = account.account_number and account.balance > :amount END_EXEC Database System Concepts, 1 st Ed. 4.25 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 26. Embedded SQL (Cont.) s The open statement causes the query to be evaluated EXEC SQL open c END_EXEC s The fetch statement causes the values of one tuple in the query result to be placed on host language variables. EXEC SQL fetch c into :cn, :cc END_EXEC Repeated calls to fetch get successive tuples in the query result s A variable called SQLSTATE in the SQL communication area (SQLCA) gets set to ‘02000’ to indicate no more data is available s The close statement causes the database system to delete the temporary relation that holds the result of the query. EXEC SQL close c END_EXEC Note: above details vary with language. For example, the Java embedding defines Java iterators to step through result tuples. Database System Concepts, 1 st Ed. 4.26 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 27. Updates Through Cursors s Can update tuples fetched by cursor by declaring that the cursor is for update declare c cursor for select * from account where branch_name = ‘Perryridge’ for update s To update tuple at the current location of cursor c update account set balance = balance + 100 where current of c Database System Concepts, 1 st Ed. 4.27 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 28. Dynamic SQL s Allows programs to construct and submit SQL queries at run time. s Example of the use of dynamic SQL from within a C program. char * sqlprog = “ update account set balance = balance * 1.05 where account_number = ?” EXEC SQL prepare dynprog from :sqlprog; char account [10] = “A-101”; EXEC SQL execute dynprog using :account; s The dynamic SQL program contains a ?, which is a place holder for a value that is provided when the SQL program is executed. Database System Concepts, 1 st Ed. 4.28 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 29. ODBC and JDBC s API (application-program interface) for a program to interact with a database server s Application makes calls to q Connect with the database server q Send SQL commands to the database server q Fetch tuples of result one-by-one into program variables s ODBC (Open Database Connectivity) works with C, C++, C#, and Visual Basic s JDBC (Java Database Connectivity) works with Java Database System Concepts, 1 st Ed. 4.29 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 30. ODBC s Open DataBase Connectivity(ODBC) standard q standard for application program to communicate with a database server. q application program interface (API) to  open a connection with a database,  send queries and updates,  get back results. s Applications such as GUI, spreadsheets, etc. can use ODBC Database System Concepts, 1 st Ed. 4.30 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 31. ODBC (Cont.) s Each database system supporting ODBC provides a "driver" library that must be linked with the client program. s When client program makes an ODBC API call, the code in the library communicates with the server to carry out the requested action, and fetch results. s ODBC program first allocates an SQL environment, then a database connection handle. s Opens database connection using SQLConnect(). Parameters for SQLConnect: q connection handle, q the server to which to connect q the user identifier, q password s Must also specify types of arguments: q SQL_NTS denotes previous argument is a null-terminated string. Database System Concepts, 1 st Ed. 4.31 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 32. ODBC Code s int ODBCexample() { RETCODE error; HENV env; /* environment */ HDBC conn; /* database connection */ SQLAllocEnv(&env); SQLAllocConnect(env, &conn); SQLConnect(conn, "aura.bell-labs.com", SQL_NTS, "avi", SQL_NTS, "avipasswd", SQL_NTS); { …. Do actual work … } SQLDisconnect(conn); SQLFreeConnect(conn); SQLFreeEnv(env); } Database System Concepts, 1 st Ed. 4.32 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 33. ODBC Code (Cont.) s Program sends SQL commands to the database by using SQLExecDirect s Result tuples are fetched using SQLFetch() s SQLBindCol() binds C language variables to attributes of the query result q When a tuple is fetched, its attribute values are automatically stored in corresponding C variables. q Arguments to SQLBindCol()  ODBC stmt variable, attribute position in query result  The type conversion from SQL to C.  The address of the variable.  For variable-length types like character arrays, – The maximum length of the variable – Location to store actual length when a tuple is fetched. – Note: A negative value returned for the length field indicates null value s Good programming requires checking results of every function call for errors; we have omitted most checks for brevity. Database System Concepts, 1 st Ed. 4.33 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 34. ODBC Code (Cont.) s Main body of program char branchname[80]; float balance; int lenOut1, lenOut2; HSTMT stmt; SQLAllocStmt(conn, &stmt); char * sqlquery = "select branch_name, sum (balance) from account group by branch_name"; error = SQLExecDirect(stmt, sqlquery, SQL_NTS); if (error == SQL_SUCCESS) { SQLBindCol(stmt, 1, SQL_C_CHAR, branchname , 80, &lenOut1); SQLBindCol(stmt, 2, SQL_C_FLOAT, &balance, 0 , &lenOut2); while (SQLFetch(stmt) >= SQL_SUCCESS) { printf (" %s %gn", branchname, balance); } } SQLFreeStmt(stmt, SQL_DROP); Database System Concepts, 1 st Ed. 4.34 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 35. More ODBC Features s Prepared Statement q SQL statement prepared: compiled at the database q Can have placeholders: E.g. insert into account values(?,?,?) q Repeatedly executed with actual values for the placeholders s Metadata features q finding all the relations in the database and q finding the names and types of columns of a query result or a relation in the database. s By default, each SQL statement is treated as a separate transaction that is committed automatically. q Can turn off automatic commit on a connection  SQLSetConnectOption(conn, SQL_AUTOCOMMIT, 0)} q transactions must then be committed or rolled back explicitly by  SQLTransact(conn, SQL_COMMIT) or  SQLTransact(conn, SQL_ROLLBACK) Database System Concepts, 1 st Ed. 4.35 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 36. ODBC Conformance Levels s Conformance levels specify subsets of the functionality defined by the standard. q Core q Level 1 requires support for metadata querying q Level 2 requires ability to send and retrieve arrays of parameter values and more detailed catalog information. s SQL Call Level Interface (CLI) standard similar to ODBC interface, but with some minor differences. Database System Concepts, 1 st Ed. 4.36 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 37. JDBC s JDBC is a Java API for communicating with database systems supporting SQL s JDBC supports a variety of features for querying and updating data, and for retrieving query results s JDBC also supports metadata retrieval, such as querying about relations present in the database and the names and types of relation attributes s Model for communicating with the database: q Open a connection q Create a “statement” object q Execute queries using the Statement object to send queries and fetch results q Exception mechanism to handle errors Database System Concepts, 1 st Ed. 4.37 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 38. JDBC Code public static void JDBCexample(String dbid, String userid, String passwd) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); Connection conn = DriverManager.getConnection( "jdbc:oracle:thin:@ aura.bell- labs.com:2000:bankdb", userid, passwd); Statement stmt = conn.createStatement(); … Do Actual Work …. stmt.close(); conn.close(); } catch (SQLException sqle) { System.out.println("SQLException : " + sqle); } } Database System Concepts, 1 st Ed. 4.38 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 39. JDBC Code (Cont.) s Update to database try { stmt.executeUpdate( "insert into account values ('A-9732', 'Perryridge', 1200)"); } catch (SQLException sqle) { System.out.println("Could not insert tuple. " + sqle); } s Execute query and fetch and print results ResultSet rset = stmt.executeQuery( "select branch_name, avg(balance) from account group by branch_name"); while (rset.next()) { System.out.println( rset.getString("branch_name") + " " + rset.getFloat(2)); } Database System Concepts, 1 st Ed. 4.39 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 40. JDBC Code Details s Getting result fields: q rs.getString(“branchname”) and rs.getString(1) equivalent if branchname is the first argument of select result. s Dealing with Null values int a = rs.getInt(“a”); if (rs.wasNull()) Systems.out.println(“Got null value”); Database System Concepts, 1 st Ed. 4.40 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 41. Procedural Extensions and Stored Procedures s SQL provides a module language q Permits definition of procedures in SQL, with if-then-else statements, for and while loops, etc. q more in Chapter 9 s Stored Procedures q Can store procedures in the database q then execute them using the call statement q permit external applications to operate on the database without knowing about internal details s These features are covered in Chapter 9 (Object Relational Databases) Database System Concepts, 1 st Ed. 4.41 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 42. Functions and Procedures s SQL:1999 supports functions and procedures q Functions/procedures can be written in SQL itself, or in an external programming language q Functions are particularly useful with specialized data types such as images and geometric objects  Example: functions to check if polygons overlap, or to compare images for similarity q Some database systems support table-valued functions, which can return a relation as a result s SQL:1999 also supports a rich set of imperative constructs, including q Loops, if-then-else, assignment s Many databases have proprietary procedural extensions to SQL that differ from SQL:1999 Database System Concepts, 1 st Ed. 4.42 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 43. SQL Functions s Define a function that, given the name of a customer, returns the count of the number of accounts owned by the customer. create function account_count (customer_name varchar(20)) returns integer begin declare a_count integer; select count (* ) into a_count from depositor where depositor.customer_name = customer_name return a_count; end s Find the name and address of each customer that has more than one account. select customer_name, customer_street, customer_city from customer where account_count (customer_name ) > 1 Database System Concepts, 1 st Ed. 4.43 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 44. Table Functions s SQL:2003 added functions that return a relation as a result s Example: Return all accounts owned by a given customer create function accounts_of (customer_name char(20) returns table ( account_number char(10), branch_name char(15) balance numeric(12,2)) return table (select account_number, branch_name, balance from account A where exists ( select * from depositor D where D.customer_name = accounts_of.customer_name and D.account_number = A.account_number )) Database System Concepts, 1 st Ed. 4.44 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 45. Table Functions (cont’d) s Usage select * from table (accounts_of (‘Smith’)) Database System Concepts, 1 st Ed. 4.45 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 46. SQL Procedures s The author_count function could instead be written as procedure: create procedure account_count_proc (in title varchar(20), out a_count integer) begin select count(author) into a_count from depositor where depositor.customer_name = account_count_proc.customer_name end s Procedures can be invoked either from an SQL procedure or from embedded SQL, using the call statement. declare a_count integer; call account_count_proc( ‘Smith’, a_count); Procedures and functions can be invoked also from dynamic SQL s SQL:1999 allows more than one function/procedure of the same name (called name overloading), as long as the number of arguments differ, or at least the types of the arguments differ Database System Concepts, 1 st Ed. 4.46 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 47. Procedural Constructs s Compound statement: begin … end, q May contain multiple SQL statements between begin and end. q Local variables can be declared within a compound statements s While and repeat statements: declare n integer default 0; while n < 10 do set n = n + 1 end while repeat set n = n – 1 until n = 0 end repeat Database System Concepts, 1 st Ed. 4.47 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 48. Procedural Constructs (Cont.) s For loop q Permits iteration over all results of a query q Example: find total of all balances at the Perryridge branch declare n integer default 0; for r as select balance from account where branch_name = ‘Perryridge’ do set n = n + r.balance end for Database System Concepts, 1 st Ed. 4.48 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 49. Procedural Constructs (cont.) s Conditional statements (if-then-else) E.g. To find sum of balances for each of three categories of accounts (with balance <1000, >=1000 and <5000, >= 5000) if r.balance < 1000 then set l = l + r.balance elseif r.balance < 5000 then set m = m + r.balance else set h = h + r.balance end if s SQL:1999 also supports a case statement similar to C case statement s Signaling of exception conditions, and declaring handlers for exceptions declare out_of_stock condition declare exit handler for out_of_stock begin … .. signal out-of-stock end q The handler here is exit -- causes enclosing begin..end to be exited q Other actions possible on exception Database System Concepts, 1 st Ed. 4.49 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 50. External Language Functions/Procedures s SQL:1999 permits the use of functions and procedures written in other languages such as C or C++ s Declaring external language procedures and functions create procedure account_count_proc(in customer_name varchar(20), out count integer) language C external name ’ /usr/avi/bin/account_count_proc’ create function account_count(customer_name varchar(20)) returns integer language C external name ‘/usr/avi/bin/author_count’ Database System Concepts, 1 st Ed. 4.50 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 51. External Language Routines (Cont.) s Benefits of external language functions/procedures: q more efficient for many operations, and more expressive power s Drawbacks q Code to implement function may need to be loaded into database system and executed in the database system’s address space  risk of accidental corruption of database structures  security risk, allowing users access to unauthorized data q There are alternatives, which give good security at the cost of potentially worse performance q Direct execution in the database system’s space is used when efficiency is more important than security Database System Concepts, 1 st Ed. 4.51 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 52. Security with External Language Routines s To deal with security problems q Use sandbox techniques  that is use a safe language like Java, which cannot be used to access/damage other parts of the database code q Or, run external language functions/procedures in a separate process, with no access to the database process’ memory  Parameters and results communicated via inter-process communication s Both have performance overheads s Many database systems support both above approaches as well as direct executing in database system address space Database System Concepts, 1 st Ed. 4.52 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 53. Recursion in SQL s SQL:1999 permits recursive view definition s Example: find all employee-manager pairs, where the employee reports to the manager directly or indirectly (that is manager’s manager, manager’s manager’s manager, etc.) with recursive empl (employee_name, manager_name ) as ( select employee_name, manager_name from manager union select manager.employee_name, empl.manager_name from manager, empl where manager.manager_name = empl.employe_name) select * from empl This example view, empl, is called the transitive closure of the manager relation Database System Concepts, 1 st Ed. 4.53 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 54. The Power of Recursion s Recursive views make it possible to write queries, such as transitive closure queries, that cannot be written without recursion or iteration. q Intuition: Without recursion, a non-recursive non-iterative program can perform only a fixed number of joins of manager with itself  This can give only a fixed number of levels of managers  Given a program we can construct a database with a greater number of levels of managers on which the program will not work s Computing transitive closure q The next slide shows a manager relation q Each step of the iterative process constructs an extended version of empl from its recursive definition. q The final result is called the fixed point of the recursive view definition. s Recursive views are required to be monotonic. That is, if we add tuples to manger the view contains all of the tuples it contained before, plus possibly more Database System Concepts, 1 st Ed. 4.54 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 55. Example of Fixed-Point Computation Database System Concepts, 1 st Ed. 4.55 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 56. Advanced SQL Features** s Create a table with the same schema as an existing table: create table temp_account like account s SQL:2003 allows subqueries to occur anywhere a value is required provided the subquery returns only one value. This applies to updates as well s SQL:2003 allows subqueries in the from clause to access attributes of other relations in the from clause using the lateral construct: select C.customer_name, num_accounts from customer C, lateral (select count(*) from account A where A.customer_name = C.customer_name ) as this_customer (num_accounts ) Database System Concepts, 1 st Ed. 4.56 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 57. Advanced SQL Features (cont’d) s Merge construct allows batch processing of updates. s Example: relation funds_received (account_number, amount ) has batch of deposits to be added to the proper account in the account relation merge into account as A using (select * from funds_received as F ) on (A.account_number = F.account_number ) when matched then update set balance = balance + F.amount Database System Concepts, 1 st Ed. 4.57 ©VNS InfoSolutions Private Limited, Varanasi(UP), India 22100
  • 58. End of Chapter Database System Concepts, 1 st Ed. © VNS InfoSolutions Private Limited, Varanasi(UP), India 221002 See www.vnsispl.com for conditions on re-use