Method and system for incremental database maintenance

Information

  • Patent Grant
  • 6484159
  • Patent Number
    6,484,159
  • Date Filed
    Thursday, May 20, 1999
    25 years ago
  • Date Issued
    Tuesday, November 19, 2002
    22 years ago
Abstract
The present invention is a method and system for incrementally maintaining a database having at least one materialized view based on at least one table. When changes to the table are received, a change table based on the received changes is generated. The generated change table is propagated upwards to form a higher-level change table and the materialized view is updated by applying the higher-level change table to the materialized view using a refresh operation. In one aspect, the change table includes a plurality of tuples representing the changes and the materialized view includes a plurality of tuples. The refresh operation has two parameters, a join condition and an update function specification. The materialized view is updated by finding all tuples in the materialized view that match the tuple in the change table, using the join condition, for each tuple in the change table and updating each found tuple in the materialized view by performing operations indicated by the update function specification.
Description




FIELD OF THE INVENTION




The present invention relates to a method and system for incremental database maintenance, and in particular to updating materialized views in a database.




BACKGROUND OF THE INVENTION




In a data warehouse, views are computed and stored in the database to allow efficient querying and analysis of the data. These views stored at the data warehouse are known as materialized views. In order to keep the views in the data warehouse up to date, it is necessary to maintain the materialized views in response to the changes at the sources. The view can be either recomputed from scratch, or incrementally maintained by propagating the base data changes onto the view so that the view reflects the changes. Incrementally maintaining a view can be significantly cheaper than recomputing the view from scratch, especially if the size of the view is large compared to the size of the changes.




The problem of finding such changes at the views based on changes to the base relations has come to be known as the view maintenance problem and has been studied extensively. Traditional maintenance techniques propagate insertions and deletions from the base relations to the view through each of its operations. Several improved schemes have been proposed for incremental maintenance of view expressions. However, problems arise with traditional techniques and with prior improved schemes. For example, none of the previously known schemes efficiently handles the case of general view expressions involving aggregate and outerjoin operators. As another example, most of the incremental maintenance approaches compute and propagate insertions and deletions at each node in a view expression tree, which is often inefficient.




A need arises for an incremental maintenance technique which efficiently handles general view expressions involving aggregate and outerjoin operators.




SUMMARY OF THE INVENTION




The present invention is a method and system for incrementally maintaining a database having at least one materialized view based on at least one table. When changes to the table are received, a change table based on the received changes is generated. The generated change table is propagated upwards to form a higher-level change table and the materialized view is updated by applying the higher-level change table to the materialized view using a refresh operation.




In one aspect of the present invention, the change table includes a plurality of tuples representing the changes and the materialized view includes a plurality of tuples. The refresh operation has two parameters, a join condition and an update function specification. The materialized view is updated by finding all tuples in the materialized view that match the tuple in the change table, using the join condition, for each tuple in the change table and updating each found tuple in the materialized view by performing operations indicated by the update function specification.




In one embodiment of the present invention, the materialized view is an aggregated materialized view. In this embodiment, each tuple in the materialized view and in the change table includes at least one aggregated attribute and may include one or more non-aggregated attributes. Tuples in the materialized view that match the tuple in the change table are found, using the join condition, by matching the non-aggregated attribute of a tuple in the change table, if any, with the non-aggregated attribute of a tuple in the view. Each found tuple in the materialized view is updated by updating the aggregated attribute of the tuple in the view using the aggregated attribute of the tuple in the change table.




In one aspect of this embodiment, the materialized view is further updated by inserting a tuple from the change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the change table, and deleting a tuple from the materialized view, if an aggregated attribute representing a count of a number of tuples in a group represented by a the tuple becomes zero.




In another embodiment of the present invention, the materialized view is an outerjoin materialized view based on a plurality of tables. In this embodiment, there is a tuple in the materialized view corresponding to each value of at least one selected attribute in any of the plurality of tables. Each tuple in the materialized view comprises at least one selected attribute and at least one other attribute. Tuples in the materialized view that match the tuple in the change table are found, using the join by matching the at least one selected attribute of a tuple in the change table with the at least one selected attribute of a tuple in the view. Each found tuple in the materialized view is updated by updating the at least one other attribute of the tuple in the view using the at least one other attribute of the tuple in the change table.




In one aspect of this embodiment, the materialized view is further updated by inserting a tuple from the change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the change table and deleting a tuple from the materialized view, if a value of the at least one selected attribute of the tuple is no longer present in any table.











BRIEF DESCRIPTION OF THE DRAWINGS




The details of the present invention, both as to its structure and operation, can best be understood by referring to the accompanying drawings, in which like reference numbers and designations refer to like elements.





FIG. 1

is an exemplary block diagram of a database system, according to the present invention.





FIG. 2

is a data flow diagram of the present invention.





FIG. 3

is an example of the computation of change tables and the refreshing of a materialized view.





FIG. 4

is another example of the change tables and refreshing of a materialized view.





FIG. 5

is a block diagram of a general process for refreshing an aggregated materialized view, according to the present invention.





FIG. 6

is a block diagram of a general refresh operation performed in the process shown in FIG.


5


.











DETAILED DESCRIPTION OF THE INVENTION




The present invention uses a framework of change-tables and a refresh operator for incrementally maintaining general view expressions involving relational and aggregate operators. The developed framework easily extends to efficiently maintaining view expressions containing outerjoin operators. Moreover, the framework also yields an approach to allow propagation of certain kinds of deletions and updates directly in a very efficient manner.




An exemplary database system


100


, according to the present invention, is shown in FIG.


1


. System


100


includes central processing unit (CPU)


102


, which is connected to random access memory (RAM)


104


, read-only memory (ROM)


106


, input/output devices (I/O)


108


and storage device


110


. CPU


102


may comprise a microprocessor, for example, an INTEL PENTIUM processor, or CPU


102


may comprise a mini-computer or mainframe processor. RAM


104


and ROM


106


store program instructions that are executed by CPU


102


and data that is used during program execution. I/O devices


108


may include any devices used to input data to system


100


, such as a keyboard, mouse, trackpad, trackball and graphics tablet, to output data from system


100


, such as a display and a printer, and to both input and output data, such as a modem and a network adapter. Storage device


110


, which stores data that is used by the present invention, may comprise, for example, random-access memory, a magnetic disk and/or optical disk and may also comprise a magnetic tape.




Storage device


110


includes database


112


, which is typically stored as one or more files. Database


112


includes one or more tables


114


A-Z, which are compilations of information. Generally, tables are conceptualized as being organized in rows and columns, although the storage format may be different. Query definitions


116


include one or more queries


118


A-Z, which are specifications of operations that are to be performed on one or more tables


114


in database


112


or on one or more materialized views


120


. Queries are typically written using SQL. Materialized views


120


includes one or more materialized views


122


A-Z, each of which is the result of a query that has been performed. Each view is a compilation of information, similar in structure to a table. A view that has been stored is usable, like a table, as an input to a query. Such a view is termed a materialized view. A query may therefore be performed on one or more materialized views, or on a combination of materialized views and tables. SQL Engine


124


is typically a software module that performs the operations specified by the queries and generates the views.




Change tables


126


include one or more change tables


128


A-Z. A change table, according to the present invention, is a compilation of updates that are to be performed to a particular materialized view. In order to update a materialized view, the corresponding change table cannot be simply inserted or deleted from the materialized view. Rather, the change table must be applied to the materialized view using a novel update operation that is another aspect of the present invention. The performance of this update operation is indicated by use of a “refresh” operator, denoted refresh. Change update or refresh engine


130


is typically a software module that performs the refresh operation to apply a change table to its associated materialized view.




The flow of data in the present invention is shown in FIG.


2


. Materialized view


122


A is initially generated based on database


112


. Changes


127


are made to database


112


, necessitating updating of materialized view


122


A. Rather than regenerate materialized view


122


A based on database


112


, the present invention generates change table


128


A, which is a compilation of updates that are to be performed to materialized view


122


A. Change table


128


A and materialized view


122


A are input to change update engine


130


, which performs the refresh operation to apply change table


128


A to its associated materialized view


122


A. The result is updated materialized view


122


A′.




1. Notation




The present invention is described using bag semantics, that is, all the relational operators used are duplicate preserving. The notation used to describe the present invention is defined as follows:





denotes bag union,





{dot over (−)} denotes monus (bag minus),




∇E denotes deletions from a bag-algebra expression E,




ΔE denotes insertions into E,




σ


p


denotes selection on condition p,




Π


A


denotes duplicate preserving projection on a set of attributes A,




π denotes the generalized projection operator (note that slightly different symbols are used for duplicate-preserving projection (Π) and for generalized projection (π) operators),




× denotes the cross-product,





denotes natural join,






and denote, respectively, join and full outerjoin operations with the join condition J.






and denote, respectively, left and right outerjoin.





Attrs(J) denotes the set of attributes used in a predicate J or a relation J.




The only operators that may require explanation are the outerjoin and generalized projection operators. The (full) outerjoin differs from an ordinary join by including in the result any “dangling” tuple (dangling tuples are the ones that fail to join with any tuple from the other relation) of either relation after “padding” it with NULL's in those attributes that belong to the other relation. For example, R(A, B)


R.B=S.B


S(B, C) tuple (a, b, NULL, NULL), if (a, b)∈R and (b, c)∉S for any c. One variant of the outerjoin operator is a left (right) outerjoin, where the dangling tuples of only the left (right) operand relation are padded with NULL's and included in the result. Hence, the above example, (a, b, NULL, NULL) would be included in RS, but not in RS. The generalized projection operator introduced in an article by A. Gupta, V. Harinarayan, and D. Quass., entitled Generalized projections: A powerful approach to aggregation, published in


Proceedings of the


21


st




International Conference on Very Large Databases


, Zurich, Switzerland, Sep. 11-15 1995, is used to algebraically represent the group by operation of SQL. For example, the following expression could be used to define the SISales view (V


1


) of Example 1:








V




1





storeID,itemID,SumSISales=sum(price),NumSISales=count(*)





date>1/1/95


(sales))






For a set of attributes G, the notation ≡


G


is used to represent the predicate








Ë




g∈G


(


LHS.g=RHS.g


)






in a join condition, where LHS and RHS are the right and left operand relations of the join operator. For example, the expression RS, where J is (≡


G


Ëp), represents a join operation with the join condition (Ë


g∈G


(R.g.=S.g.)Ëp), for a predicate p and a set of attributes G in R and S.




2. Motivating Example




EXAMPLE 1




Consider the classic example of a warehouse containing information about stores, items, and day-to-day sales. The warehouse stores the information in three base relations: stores, items, and sales defined by their schemas as follows.




stores (storeID, city, state)




items (itemID, category, cost)




sales (storeID, itemID, date, price)




For each store location, the relation stores contains the storeID, the city, and the state in which the store is located. For each item, the relation items contains its itemID, its category and its purchase price (cost). An item can belong to multiple categories, e.g. a whitening toothpaste could belong to dental care, cosmetics, and hygiene categories. The relation sales contains detailed information about sales transactions. For each item sold, the relation sales contains a tuple storing the storeID of the selling store, itemID of the item sold, date of sale, and the sale price.




Consider the following views SISales, CitySales, CategorySales, SSInfo, and SSRecentInfo defined over the base relations. The view SISales computes for each storeID and itemID the total price of items sold after Jan. 1, 1995. The view SISales is an intermediate table used to define the views CitySales and CategorySales. The view CitySales stores, for each city, the total number and dollar value of sales of all the stores in the city. The view CategorySales stores the total sale for each category of items. All the above described views consider only those sales that occur after Jan. 1, 1995. The view SSInfo stores the full outerjoin of the base relations sales and stores, retaining stores that have had no sales, for some reason, and also retaining those sales whose corresponding storeID is missing from the table stores, because, perhaps, the table stores has not been updated yet. The view SSRecentInfo retains only the recent sales information from the view SSInfo, discarding sales that occurred before Jan. 1, 1995. The views CitySales, CategorySales, and SSRecentInfo are the only views that are stored (materialized) at the data warehouse and this is represented below by the keyword “MATERIALIZED” in the SQI, definitions of the views. The keyword “MATERIALIZED” is not supported by SQL, but has been introduced as an aspect of the present invention. These materialized views are to be maintained in response to changes at the base relations.




CREATE VIEW SISales AS




SELECT storeID, itemID, sum(price) AS SumSISales, count(*) AS NumSISales




FROM sales




WHERE date >Jan. 1, 1995




GROUP BY storeID, ItemID




CREATE MATERIALIZED VIEW CitySales AS




SELECT city, sum (SumSISales) AS SumCiSales, sum(NumSISales) AS NumCiSales




FROM SISales, stores




WHERE SISales.storeID=stores.storeID




GROUP BY city




CREATE MATERIALIZED VIEW CategorySales AS




SELECT category, sum (SumSISales) AS SumCaSales, sum(NumSISales) AS




NumCaSales




FROM SISales, items




WHERE SISales.itemID=items.itemID




GROUP BY category




CREATE VIEW SSInfo AS




SELECT*




FROM sales FULL OUTERJOIN stores




WHERE sales.storeID=stores.storeID




CREATE MATERIALIZED VIEW SSRecentInfo AS




FROM SSInfo




WHERE date≧Jan. 1, 1995




Consider the database sizes shown in Table 1. Assuming that the base relation sales has one billion sales transactions, and the base relations stores and items have 1,000 and 10,000 tuples respectively. The various maintenance approaches are illustrated for the particular case when 10,000 tuples are inserted into the base relation sales. Table 1 shows the number of tuples changed in the views, as the result of the insertion of 10,000 tuples into sales. The table also shows the number of tuple accesses (reads and writes) incurred by different maintenance techniques to update the materialized views. Counting tuple accesses is a simple model and suitable for our purposes, because under uniform access the number of tuple accesses directly translate into number of disk accesses. The names V


1


, V


2


, V


3


, V


4


, and V


5


are used as follows:




V


1


=SISales,




V


2


=CitySales,




V


3


=CategorySales,




V


4


=SSInfo, and




V


5


=SSRecentInfo.




It is assumed that the relations stores and items are small enough to fit in main-memory.












TABLE 1











Benefits of propagating change tables






(Materialized views are V


2


, V


3


, and V


5


.)














Changes




Tuple Reads and Writes















Summary




Number of




(No. of




Previous




Present






Table




Tuples




Tuples)




Work




Invention


















sales




1,000,000,000




10,000








stores




1,000











items




10,000











V


1


=




1,000,000




600




    610,000




10,000






SISales






V


2


=




100




10




     1,020




 1,020






CitySales






V


3


=




1,000




1,000




     12,000




12,000






Category-






Sales






Total for V


1


,






    623,020




23,020






V


2


, V


3


,






V


4


=




1,000,000,010




10,000




2,000,000,010




11,000






SSInfo






V


5


=




100,000




100




       200




  200






SSRecent-






Info






Total for V


4








2,000,000,210




11,200






and V


5
















Rather than computing and propagating insertions and deletions beyond an aggregate node V


1


, as was done in the prior art, the present invention computes and propagates a change table for V


1


. A change table is a general form of the summary-delta tables introduced in an article by I. Mumick, D. Quass, and B. Mumick, entitled Maintenance of data cubes and summary tables in a warehouse, published in


Proceedings of the AGM SIGMOD International Conference of Management of Data


, Tucson, Ariz., June 1997.




The symbol V is used to denote the change table of a view V. It is shown that propagation of change tables yields very efficient and simple maintenance expressions for general view expressions involving aggregate and outerjoin operators. The change table cannot be simply inserted or deleted from the materialized view. Rather, the change table must be applied to the materialized view using a special “refresh” operator. In Section 4, a refresh operator that is used to refresh views using the change tables is defined. The symbol is used to denote the refresh operator, where θ and U are parameters specifying join conditions and updated functions respectively.




An example of the computation of change tables and refreshing of the CategorySales (V


3


) view


301


is shown in

FIG. 3

, when an exemplary sales table


302


is updated with insertions Δsales


304


. As seen by its SQL definition, CategorySales is an aggregate view based on another aggregate view, SISales and on the items table


305


. SISales is an aggregate view that is based on the sales table


304


and not on any other materialized views. Thus, SISales is termed a first-level materialized view, while CategorySales is a higher-level materialized view. A change table for SISales, change table V


1




306


is generated based on the insertion table Δsales


304


, as well as any deletion tables ∇sales (not shown). Since table V


1




306


is associated with first-level materialized view, it is termed a first-level change table. In order to update CategorySales (V


3


) view


301


, which is a higher-level view, a change table for CategorySales (V


3


) view


301


must be generated. This is done by propagating change table V


1




306


upward to form a higher-level change table for the CategorySales (V


3


) view, V


3




308


. Change table V


3




308


is applied to view V


3


using the refresh operator to form refreshed view V


3




312


.




The example starts with computing the change table V


1




306


that summarizes the net changes to V


1


. For this first level of aggregates, the expression that computes V


1




306


is similar to that derived in the article by Mumick, Quass and Mumick.








V




1





storeID,itemID,SumSISales=sum(price),NumSISales=sum(













count)





storeID,itemID,price,













count=1





p


(Δsales))









Π



storeID,itemID,price=−price,


_count=−1 (σ


p


(∇sales))), where


p


is (date>Jan. 1, 1995).







FIG. 3

presents an instance of the base relation sales


302


and the table Δsales


304


, which is the set of insertions into sales. For the given tables,

FIG. 3

also shows the computed change table V


1




306


. Next the change table V


1




306


is propagated upwards to derive expressions for the change tables V


2


(not shown) and V


3




308










V




3





category,SumCaSales=sum(SumSISales),NumCaSales=sum(NumSISales)


(


V




1



items)








FIG. 3

shows how the change table V


3




308


is computed and the CategorySales (V


3


) view is refreshed. The change table V


2


can be similarly computed. The new propagated change tables are then used to refresh their respective materialized views V


2


and V


3


using the refresh equations below (disregard θ and U for now). The details of the refresh equations are given in Example 3. Note that V


1


does not need to be refreshed.








V




2




=V




2





V





2


, and


V




3




=V




3





V





2


.






The refresh operation is illustrated by showing how the CategorySales view (V


3


) is refreshed.

FIG. 3

shows the materialized table V


3


=CategorySales for the given instance of base tables.




Going back to computing the number of tuple accesses in Table 1, note that most of the computation is done in computing V


1


, which requires 10,000 tuple accesses to read Δsales. Given the small sizes of V


1


, items, and stores, the rest of the computation can be done in main memory and hence, the total number of tuples accesses is 10,000(to read Δsales)+11,000(to read items and sales)+2,020(to refresh V


2


and V


3


)=23,020, showing that our technique is very efficient in comparison to previous approaches.




A block diagram of a general process


500


for refreshing an aggregated materialized view is shown in FIG.


5


. In step


502


, change tables are computed for the first-level aggregates on which the higher-level materialized view being refreshed is based. In step


504


, the first-level change tables are propagated upwards and the higher-level change table is computed. In step


506


, the higher-level materialized view is refreshed by applying the higher-level change table to the higher-level materialized view with the refresh operation.




A block diagram of a general refresh operation, as performed in step


506


, is shown in FIG.


6


. The refresh operation is represented by the notation V=VV Thus, an updated view V is generated by applying the change table V to the unupdated view V using the refresh operation. The refresh operation take two parameters. The parameter denoted θ specifies the join conditions, which are used to match the tuples in V, which are to be updated, to the tuples in V that contain the updates. The parameter denoted U is a list of update function specifications, that is, a list of which tuple attributes are to be updated and the operations that are to be performed in order to update each attribute.




In step


602


, for each tuple in the change table V, a tuple in the view V is found using the join conditions specified by parameter θ. In the example of

FIG. 3

, the join condition θ


3


specifies matching a non-aggregated attribute of tuples in the view and change table, and the update function U


3


specifies updating of at least some of the aggregated attributes of the tuples in the view. Thus, for each tuple v


3


in V


3


, a match in V


3


using the join condition V


3


category=V


3


category (specified in θ


3


) is sought. The tuple v


3


=<C1, 170,3> in V


3


matches with the tuple v


3


=<C1,690,4> of V


3


.




If a new tuple is inserted into the underlying table E, then no tuples will be found in the materialized view V that match a tuple in the change table V. The tuple in the change table will be inserted into the view. If there are a plurality of such tuples to be inserted, all such insertions will be converted to aggregated insertions or updates into by the refresh equation. The deletions from E need not necessarily result in any deletions from V. A tuple is deleted from V only if an aggregated attribute representing a count of a number of tuples in a group represented by a the tuple becomes zero, which is independent of the deletions of the deriving tuples from E.




In step


604


, the found tuples are updated by updating the specified attributes. The tuple <C1,170,3> in V


3


means that three more sales totaling $170 have occurred for C1 category. The total sales for C1 are now 7 for a total amount of $860. To reflect the change, the tuple V is updated to <C1,860,7> by adding together the corresponding aggregated attributes (specified by the U


3


parameter of the refresh operator).




Outerjoins




The change-table technique can also be used for maintenance of view expressions involving outerjoin operators. Outerjoin views are supported by SQL and are commonly used in practice, such as for data integration. The technique for maintaining outerjoin views by deriving maintenance expressions for outerjoin views V


4


and V


5


is illustrated. The net changes to V


4


, in response to insertions Δsales into sales, can be succinctly summarized in a change table V


4


. The change table V


4


is computed and then propagated up as follows:








V




4


=Δsales


sales,storeID=stores,storeID


stores










V




5





(date≧1/1/95)


(


V




4


)










V




5




=V




5





V





5









FIG. 4

shows the materialized view V


5




402


,the change tables V


4


and V


5




404


for the database instance of

FIG. 3

, and the refreshed view V


5




406


.




The process for refreshing an outerjoin view is similar to the process for refreshing an aggregate view. First-level change tables are computed, in the example of

FIG. 4

, using the equation V


4


=Δsales


sales,storeID=stores,storeID


stores. The first-level change tables are propagated upwards and the higher-level change table is computed, in the example of

FIG. 4

, using the equation V


5





(date≧1/1/95)


(V


4


). The higher-level materialized view is refreshed by applying the higher-level change table to the higher-level materialized view with the refresh operation, in the example of

FIG. 4

, using the equation V


5


=V


5



V



5


.




The major difference is in the specification of the refresh operation. For example, the refresh of V


5


proceeds as follows. When an outerjoin is performed, two or more tables are merged to form a new table or view. The new table or view has a tuple corresponding to each value of a selected attribute or attributes present in any original table. Since it is not required that there be tuples corresponding to each value of the selected attribute in all original tables, the values of some attributes in the new table or view may be undefined. This is represented in

FIG. 4

as NULL. Insertions into an original table may result in tuples being inserted into the new table or view, if no tuples in the view match the tuple in the change table, or they may result in undefined attributes being defined. Likewise, deletion from an original table may result in tuples being deleted from the new table or view, if the value of the selected attribute in that tuple is no longer present in any original table, or they may result in defined attributes becoming undefined.




For example, each tuple in V


5


is matched with tuples in V5 that have the same stores attributes, but have all NULL's in the attributes of sales. This join condition used for matching is specified in θ


5


. In the example of

FIG. 4

, the only matching pair is (v5, v5), where v5=<NY3,13,1/1/92,100,NY3,Buffalo,NY>∈V


5


and v


5


=<NULL,NULL,NULL,NULL,NY3,Buffalo,NY>∈V


5


. The match results in an update of v5 to v5, according to the update specifications in U


5


. The remaining unmatched tuples in V


5


are inserted into the view V


5


. The refreshed view V


5


is also shown in FIG.


4


.




Given the small sizes of stores, ∇sales, and V


4


, the number of tuple accesses required to compute the change tables and refresh V


5


is 10,000(to read Δsales)+1,000(to read stores)+200(to refresh V


5


).




The present invention includes a novel technique to maintain general view expressions involving outerjoin operators. Previous work, for example, the article by A. Gupta, H. V. Jagadish, and I. S. Mumick, entitled Maintenance and self-maintenance of outerjoin views published in


Proceedings of the NGITS


, Tel Aviv, Israel, June 1997, only considers views that have outerjoin as the last operator. To apply the technique of that article to our example, it would be necessary to compute the intermediate view SSInfo, thereby incurring more than a billion tuple accesses.




3. The Change-Table Technique for View Maintenance




This section explains the framework developed in the article by Xiaolei Qian and Gio Wiederhold entitled Incremental recomputation of active relational expressions. Published in


IEEE Transactions on Knowledge and Data Engineering


, pages 337-341, 1991, and the article by T. Griffin and L. Libkin entitled Incremental maintenance of views with duplicates published in


Proceedings of the ACM SIGMOD International Conference on Management of Data


, pages 328-339, San Jose, Calif., May 1995, for deriving incremental view maintenance expressions and relate it to the change-table technique of the present invention.




Let a database contain a set of relations R={R


1


, R


2


, . . . , R


n


}. A change transaction t is defined to contain for each relation R


i


the expression R


i


←(R


i


{dot over (−)}∇R


i


)ΔR


i


, where ∇R


i


is the set of tuples to be deleted from R


i


, and ΔR


i


is the set of tuples to be inserted into R


i


.




Let V be a bag-algebra expression defined on a subset of the relations in R. The refreshed-expression New(V, t) is used to compute the new value of R. In the article by Griffin and Libkin (which uses the notation pre(t, V) instead) the expression New(V, t) is defined to be:






New(


V, t


)=(


V


{dot over (−)}∇(


V, t


))Δ(


V, t


).






So, the goal in deriving view maintenance expressions for a view V is to derive two functions ∇(V, t) and Δ(V, t) such that for any transaction t, the view V can be maintained by evaluating (V{dot over (−)}∇(V, t))Δ(V, t). In order to derive ∇(V, t) and Δ(V, t), the article by Griffin and Libkin gives change propagation equations that show how deletions and insertions are propagated up through each of the relational operators. The work of Griffin and Libkin was extended to include aggregate operators by D. Quass,


Materialized Views in Data Warehouses


, Ph.D. thesis, Stanford University, Department of Computer Science, 1997, Chapter 4.




The change-table technique of the present invention can be thought of as introducing a novel definition for New(V, t). The expression New(V, t) for view expressions involving aggregates and outerjoin is redefined as






New(


V, t


)=(


V



(



V, t


)),






where (V, t) is called the change table, is the refresh operator used to apply the net changes in a change table to its view, and (θ, U) are the parameters of the refresh operator. The parameter θ specifies the join conditions on the basis of which the tuples from the change table and the view are matched. The parameter U specifies the functions that are used to update the matched tuples in V.




The new definition of New(V, t) is motivated from the following observation. In the case of general view expressions involving aggregate operators, it is usually more efficient to propagate the change tables beyond an aggregate operator, instead of first computing and then propagating insertions and deletions. Propagation of the change table is particularly efficient when the change table depends only on the changes to the base relation, while the insertions and deletions depend on the old value of the view. As shown in the motivating example, if the aggregate node is not materialized, the computation of insertions and deletions could be very expensive.




The new definition of New(V, t) means that it is necessary to define a general refresh operator, and derive change propagation equations for propagating change tables through various relational, aggregate and outerjoin operators, to obtain a complete technique for efficient incremental maintenance of general view expressions. In the following section, a formal definition of the refresh operator is presented. In later sections, change propagation equations for general view expressions involving aggregate and outerjoin operators is derived.




4. The refresh Operator




In this section, a formal treatment of the refresh operator is given. Given a materialized table V and its change table V, the refresh is used to apply the changes represented in a change table. The binary refresh operator is a generalization of the refresh algorithm used in the article by Mumick, Quass and Mumick.




The refresh operator is denoted by , where θ is a pair of two mutually exclusive join conditions and U is a list of update function specifications. The refresh operator takes two operands, a view V to be updated and a corresponding change table (denoted by V).




Let V and V be views with the same attribute names A


1


, A


2


. . . , A


n


. The subscript θ associated with the operator is a pair of join conditions ℑ


1


and ℑ


2


. The superscript U is a list specifying the attributes that may be changed by the change operator, along with the update functions that specify the exact nature of the change to each attribute being changed. More precisely, U=<(A


i






1




, ƒ


1


), (A


i






2




, ƒ


2


), . . . , (A


i






k




, ƒ


k


)>, where A


i






j




, . . . , A


i






k




are attributes of V and ƒ


1


, . . . , ƒ


k


are functions. Unless otherwise specified, it is assumed that the functions in U are binary functions. In an expression VV, each tuple v of V is checked for possible matches (due to ℑ


1


or ℑ


2


) with tuples in V. If a match is found due to the join condition ℑ


1


, then the corresponding matching tuple v of V is updated as described in the next paragraph (using the specifications in the update list U). If the match is due to ℑ


2


, the tuple v of V is deleted. The unmatched tuples in V are inserted into V. The matching done is one-to-one in the sense that a tuple v∈V matches with at most one tuple in V and vice-versa. If v finds more than one match in V, then an arbitrary matching tuple from V is picked.




Update of a tuple v of V matching with the tuple v of V is done based on the update functions in U. For each pair (A


i






j




, ƒ


j


) in U, the A


i






j




attribute of v is changed to ƒ


j


(v(A


i






j




), vA


i






j




)) where v(X) and v(X) denote the values of the X attribute of v and v respectively. Each pair in U is used to change the matching U is used to change the matching tuple V.




EXAMPLE 2




Consider the view V


3


=Categorysales defined in Example 1 earlier. The CategorySales table as defined in Example 1 computes the total sales for each category. In this example, the refresh operation is illustrated by applying the changes summarized in a change table CategorySales to its view CategorySales using the refresh operator.




For this example, consider the instance of the base table shown in FIG.


3


.

FIG. 3

also shows the materialized table Categorysales for the given instance. In response to the insertion of the table Δsales into the base table sales, the change table CategorySales can be computed and is shown in the FIG.


3


. The view CategorySales is refreshed using the expression CategorySales CategorySales, where the parameters, θ


3


=(ℑ


1


, ℑ


2


) and U


3


, of the refresh operator are defined as follows.







1


is (≡


category



((CategorySales.NumCaSales+(CategorySales) .NumCaSales)≠0))





œ


2


is (≡


category



((CategorySales.NumCaSales+(CategorySales) .NumCaSales)=0))





U


3


=<(SumCaSales, ƒ),(NumCaSales, ƒ)>, where ƒ(x, y)=x+y for any x, y.




Note that ≡


category


represents the predicate (CategorySales.category=(CategorySales).category) here. Now, the refresh operation is attempted to be run on the change table CategorySales and the view CategorySales of FIG.


3


.




The first tuple v


3


=<C1,170,3> of CategorySales matches with the tuple v


3


=<C1,690,4> in CategorySales using the join condition ℑ


1


. The match results in update of the tuple <C1,690,4> in CategorySales according to the specifications in the update list U


3


. The attribute SumCaSales of the tuple v


3


is changed to v


3


.SumCaSales+v


3


.SumCaSales=170+690=860 and the attribute NumCaSales is changed to 4+3=7. Similarly, the tuple <C2,210,2>∈V


3


matches with the tuple <C2,120,2>∈V


3


and is updated to <C2,330,4>. The tuple <C3,480,2>∈V


3


is also updated to <C3,530,3> accordingly.




To illustrate deletion from the view Categorysales, let us assume that the change table Categorysales contains a tuple b=<C2,−210,−2> as a result of a deletion of a couple of tuples from the sales table. The tuple b will match with the tuple v=<C2,210,2>∈V


3


using the join condition ℑ


2


and the match will result in deletion of the tuple v from V


3


.




Implementation of the Refresh Operator




One simple way to implement the refresh operator is using a nested loop algorithm, with the change table as the outer table, and the materialized view table as the inner table, as shown in Appendix A. The nested loop algorithm is just one possible way to implement the refresh operator. Quass and Mumick have developed a more efficient implementation of the refresh operation that uses existing outerjoin methods inside the DBMS. They defined a modify operator using a pair of join conditions and a series of condition-action lists. The modify operator can be easily implemented in a DBMS through slight modifications of existing physical query operators for outerjoins, such as hash outerjoin, sort-merge outerjoin, and nested-loop outerjoin. Cost-based optimization can be used to select the method most suitable for a given evaluation. Implementing the refresh operation of the present invention using the modify operator is significantly faster than iterative algorithms.




5. Propagating Change Tables Generated at Aggregates




In this section, the derivation is given for the algebraic equations to (1) generate change tables at an aggregation node in a view expression, and (2) propagate these change tables through the relational, aggregate and outerjoin operators in a general view expression.




DEFINITION 1 (Aggregate-change Table)




A change table for a view expression involving aggregates is defined as an aggregate-change table if the change table either originated at an aggregate operator or is a result of propagation of a change table that originated at an aggregate node, using the propagation equations presented in Table 3.




For example, the change tables, V


1


, V


2


, and V


3


, computed for the views V


1


, V


2


, and V


3


respectively in Example 1 are aggregate-change tables.




Note that the notions of aggregate-change table and outerjoin-change table have been defined only for simplifying the presentation of the material in this article. The present invention contemplates a general change table that encompasses aggregate-change tables, outerjoin-change tables and any other specific type of change table.




DEFINITION 2 (Distributive Functions)




An aggregate function is defined as distributive if it can be computed by partitioning the input parameters into disjoint sets of parameters, aggregating each set individually, then further aggregating the (partial) results from each set into the final result.




DEFINITION 3 (Self-maintainable Aggregates)




An aggregate function is defined to be self-maintamnable if the new value of the function can be computed solely from the old value of the function and the changes (insertions or deletions) to the base data.




It will be shown that a special case of the general refresh operator is sufficient to apply the changes summarized in an aggregate-change table to its view. The special form yields very simple change propagation equations for propagation of aggregate-change tables through relational, aggregate and outerjoin operators.




The notation Attrs(X) is used to represent the set of attributes referenced in X. Thus, Attrs(U) refers to the set of attributes specified in the update list U and Attrs(θ) represents Attrs(ℑ


1


)U Attrs(ℑ


2


), where ℑ


1


and ℑ


2


are the join conditions in θ=(ℑ


1


, ℑ


2


).




5.1 Generating the Aggregate-Change Table




Consider a view V defined as an aggregation over a select-project-join (SPJ) expression. In this section, a brief description is given of how an aggregate-change table is generated at V in response to the insertions and deletions at the base tables. The method is similar to that of generating “summary-delta tables” for a “summary table” as described in the article by Mumick, Quass and Mumick.




For the case when a view V is defined as an aggregation over an SPJ expression, the insertions and deletions to the base tables can be propagated to V as a single aggregate-change table, which is denoted by V. Without loss of generality, let us assume V to be π


G,B=ƒ(A)


(R), where R is the SPJ subview, G is the set of group-by attributes, f is an aggregate function, and A is an attribute of R. In the case of distributive aggregate functions, the aggregate-change table V can be computed from the insertions and deletions into R by using the same generalized projection as the used for defining the view V. More precisely, V can be computed as








V=π




G,ƒ(A),Count=sum(













count)





G,A,













count=1





R


)Π


G,A=N(A),













count=−1


(∇


R


)),






where the function N is suitably defined depending on the aggregate function ƒ as shown in Table 2. For example, in the case of a sum aggregate the function N negates the attribute value passed. Once the aggregate-change table has been computed, the net changes, now in the aggregate-change table, are then applied to the view using the refresh operator.




If the aggregate function ƒ is a self-maintainable aggregate function, then the special form of refresh operator defined in the next subsection is sufficient to apply the change table V to the view V. For the case of aggregate functions that are not self-maintainable, more complex functions are needed in the update list U of the refresh operator. For example, to handle deletions from a subview of a simple MIN/MAX aggregate view, the update function needs to compute the new MIN/MAX value, if needed, by accessing the base relations (see the article by Mumick, Quass and Mumick for details). The change propagation equations and other formalism presented in this article are independent of the complexity and input parameters of update functions used in the update list U of refresh.












TABLE 2











Table used to change the aggregate attributes in deletions














Aggregate




Change due to N











COUNT(*)




−1







SUM(expr)




−expr







MIN(expr)




expr







MAX(expr)




expr















5.2 Refresh Operator for Applying Aggregate-Change Tables




For the case of applying net changes computed in an aggregate-change table to its view, the refresh operator required is a special case of the generic operator defined earlier in Section 4. The special characteristics of the refresh operator are used to derive simpler change propagation equations.




Recall that the expression used to refresh a view V using its change table V is V=VV, where θ=(ℑ


1


, ℑ


2


) and U is the update list. In the case of the refresh operator used to apply aggregate-change tables, ℑ


1


is (≡


G




p) and ℑ



2


is (≡


G



p), for some predicate p and a set of attributes G common to both V and V. As defined before, the notation ≡



G


here represents the predicate


g∈G


(V.


g


=V.


g


), as V and V are the left and right operands of the join operator. Also, the set of attributes G is disjoint from the set of attributes, Attrs(U), that are being updated. The predicate p specifies when the matching tuple in V is to be deleted, i.e., when the value of the attribute that stores the number of deriving base tuples becomes zero.




An aggregate-refresh operator is derived that is a special form of the refresh operator (as described above) used to apply an aggregate-change table to its view. The characteristics of the aggregate-refresh operator are used to derive simple change propagation equations for propagating aggregate-change tables.




DEFINITION 4 (Aggregate-refresh Operator)




A refresh operator is said to be an aggregate-refresh operator if:




θ=(ℑ


1


, ℑ


2


) and the join condition ℑ


1


is (≡


G



p



1


), and the join condition ℑ


2


is (≡


G



p



2


), for some predicates p


1


, p


2


and a set of attributes G common to both the view and its aggregate-change table.




p


1


=p


2


.




G∩Attrs(U)=φ.




5.3 Change Propagation Equations




Table 3 gives the change propagation equations for propagating aggregate-change tables through relational, aggregate and outerjoin operators. Below, is a brief explanation of each row of Table 3. In this table, it is assumed that an aggregate-change table has been generated at the first aggregate operator in a view expression, in response to insertions and/or deletions from the view's subview. The above base case has not been shown in the table. In Theorem 1, the correctness of the refresh equations of Table 3 is proven.












TABLE 3











Change propagation equations for propagating aggregate-change and outerjoin-change






tables
















No.




V




New V




Refresh Equation




V




Conditions











θ = ℑ


1


, ℑ


2


)














1


is ≡


G




p



1













2


is ≡


G



p



1








1




σ


p


(E


1


)




σ


p


(E


1



E



1


)




Vσ


p


(E


1


)




σ


p


(E


1


)




Attrs(p)





G






2




Π


A


(E


1


)




Π


A


(E


1



E



1


)




VΠ


A


(E


1


)




Π


A


(E


1


)




Attrs(θ)





A






3




E


1


× E


2






(E


1



E



1


) × E


2






V (E


1


× E


2


)




E


1


× E


2











θ


1


= (ℑ


1






r


, ℑ


2






r


)









τ = Attrs(E


2


)






4




E


1



E



2






(E


1



E



1


) E


2






V(E


1



E



2


)




E


1



E



2






Attrs(J)





G









θ


1


= (ℑ


1






r


, ℑ


2






r


)









τ = Attrs(E


2


)






5




E


1



E



2






(E


1



E



1


) E


2






((V{dot over (−)}E


2



E



1


) E


2






E


1








6




π


G′,F


(E)




π


G′,F


(E E)




Vπ


G′,f(A)


(E)




π


G′,F


(E)




A


i


∈ Attrs(U), G′







F = f


1


(A


1


),





θ


3


= (≡


G′




p



3


, ≡


G′



p



3


)










G, f


i


's are







. . . , f


k


(A


k


).





p


3


is (V.Cnt + V.Cnt) ≠





distributive, and









0





the function in U









U


3


= <(A


1


, f


1


), . . . , (A


k


, f


k


)>





for A


i


is f


i


.






7




E


1



E



2






(E


1



E



1


) E


2






V(E


1



E



2


)




(E


1









Attrs(J)





G









θ


1


= (ℑ


1






r


, ℑ


2






r


)




E


2


)









τ = Attrs(E


1


)














Each row in the table considers propagation of an aggregate-change table through a relational, aggregate or outerjoin operator. The first column gives the equation number used for later reference in examples. The second column in the table gives the definition of V. The third column expresses the new expression for V due to a change occurring at one of the subexpressions E


1


of V. In each row, possibly due to changes at base table, the subexpression E


1


changes to E


1



E



1


where E


1


is an aggregate-change table and is an aggregate-change operator. It is assumed that θ is (ℑ


1


, ℑ


2


), where ℑ


1


is ≡


G




p1 and ℑ



2


is ≡


G



p



1


, for some predicate p


1


and a set of attributes G in E


1


. The fourth column gives the refresh equation which is used to refresh the view V and also yields the value of the propagated aggregate-change table. In Theorem 1 it is proven that the refresh equation given in the fourth column is equivalent to the expression in the third column for each row of Table 3. Theorem 1 also proves that the refresh operator used in the refresh equations of fourth column is an aggregate-refresh operator. The fifth column gives the expression for the propagated aggregate-change table V. Finally, the last column of the table mentions the conditions under which the equivalence of the fourth column and third column expressions hold, i.e., conditions under which the change propagation can be done. If the condition is not satisfied, then the refresh equation cannot be used to propagate the aggregate-change table. Later, it will be shown how to handle changes at such an operator node, when the condition of Table 3 is not satisfied.




The first row of the table depicts the case of a selection view V=σ


p


(E), where E is a subexpression. In this case, as depicted in the third column, the subexpression E changes to EE, where E is an aggregate-change table and is an aggregate-change operator. The expression for the propagated aggregate-change table V=σ


p


(E) is given in the fifth column. For the case of the selection view, the condition required for the change propagation is Attrs(p)⊂G. In other words, an aggregate-change table can be propagated through a selection operator if the selection operator if the selection condition is defined over the G attributes, which are the attributes that are not being updated.




The second row depicts the case of projection on a set of attributes A. The condition implies that an aggregate change table can be propagated through a duplicate-preserving projection only if all the attributes used in the join conditions of θ are included in the projection list A.




The third row considers the case of a cross product operation. In this case, the parameter θ of the refresh operator is changed to also include the condition ≡


Attrs(E






2






)


in the join conditions ℑ


1


, and ℑ


2


. No conditions are specified in the fifth column meaning that any aggregate-change table can be propagated through a cross product operator.




The fourth row depicting the case of a join operation follows from the combination of previous cases of selection and cross product.




The fifth row considers propagation of an aggregate-change table through the bag union operator. The expression for V in the fifth column gives only the change table (V=E


1


). As the refresh equation in the fourth column shows, the refresh in this case is more complex than simply applying the change table. It is necessary to apply a set of deletions (∇V=E


2


) into the view V. One can derive a very efficient refresh equation for the case of bag union operator, if the tuples in V are “tagged” L/R depending on whether they come from the left operand E


1


or the right, operand E


2


.




The sixth row depicts the case of propagation through a generalized projection (aggregate) operator. For the purposes of aggregate-change tables, it is assumed that any subexpression involving an aggregate operator stores with each tuple a count of the number of deriving base tuples. This count is stored in a general attribute which is called the count attribute. For example, NumCiSales and NumCaSales are count attributes in the views V


2


and V


3


of Example 1. After propagation through the aggregate operator, the join conditions and the update specifications of the refresh operator change as shown in the fourth column. The attribute named Cnt used in p


3


is the count attribute of V. The condition in the fifth column says that each aggregate function ƒ


i


is distributive, the set of group-by attributes G′ is a subset of G, and the update list U used to change E contains (A


i


, ƒ


i


) for all 1≦i≦k. Note that the duplicate-elimination operation is a special case of generalized projection, and is covered by the sixth row.




The seventh row gives the refresh equation for the case of propagating an aggregate-change table through a full outerjoin operation. In this case, the refresh operator specifications change as in the case of cross product. The outerjoin propagation equation in the seventh row is simplified a little (as discussed in Appendix C).




Note that no change propagation equation is given for the case of monus because an aggregate-change table cannot be propagated through the minus operator (See the paragraph on singularity points below). Also, the refresh operator used in each of the derived refresh equations of column 4 is an aggregate-refresh operator.




Singularity Points




The operator nodes in a view expression tree, where none of the refresh equations in Table 3 apply, are called singularity points. Consider a view V and a singularity point V


1


, which is a subexpression of V, in the expression tree of V. As propagation of the change table V


1


is not possible, it is necessary to compute insertions (ΔV


1


) and deletions (∇V


1


) into V


1


and propagate the insertions and deletions upwards. The tables ΔV


1


and ∇V


1


can be computed from V


1


by applying the refresh algorithm (Algorithm 1). If V


1


is not materialized, the base relations are used to compute (relevant parts of) V


1


whenever required by the refresh algorithm. The insertions (ΔV


1


) and deletions (∇V


1


) to V


1


are then propagated through the singularity point using the change propagation equations described in the article by Griffin and Libkin, and in the article by Quass. The propagation insertions and deletions at a singularity point can now be propagated upwards using techniques presented in this article (as they may result in change tables further on) or the techniques of Griffin and Libkin for propagating insertions and deletions through relational operators.




THEOREM 1




Assume that the refresh operator used in the expression of the third column in Table 3 is an aggregate-refresh operator. Then, the change propagation equations given in Table 3 for propagation of aggregate-change tables are correct, i.e., for each row, the expression in the third column is equivalent to the refresh equation in the fourth column. Also, the refresh operator derived in the refresh equation (column 4) is an aggregate-refresh operator as well.




EXAMPLE 3




In this example, the techniques developed in this section are illustrated as applied to the views of the motivating Example 1. Recall from Example 1 the definitions of V


1


(SISales), V


2


(CitySales), and V


3


(CategorySales). Thus:








V




1


′=π


storeID,itemID,SumSISales=sum(price), NumSISales=count(*)


(sales)










V




1





date>1/1/95


(


V




1


′)










V




2




′=V




1



stores











V




2





city,itemID,SumSISales=sum(price),NumSISales=count(*)


(


V




2


′)










V




3




′=V




1



items











V




3





category,SumCaSales=sum(SumSISales),NumCaSales=sum(NumSISales)


(


V




3


′)






where the (virtual) views V


1


′, V


2


′ V


3


′ have been added for better illustration of how the aggregate-change tables propagation. The change propagation equations of Table 3 are used to derive the maintenance expressions for V


2


and V


3


in response to changes in sales, as follows.








V




1


′=π


storeID,itemID,SumSISales=sum(price),NumSISales=sum(













count)





storeID,price,













count=1


(Δsales)









Π



storeID,price=−price,













count=−1


(∇Sales))  [From Section 5.1]










V




1





date>1/1/95


(


V




1


′)  [From (1) in Table 3]










V




1




=V




1



(



V




1


), where θ


1


=(≡


{storeID,itemID}








p, ≡




{storeID,itemID}





p



)










V




2




′=V




1



stores











V




2




′=V




2





V





2


′,  [From (4) in Table 3]








where θ


12


is (≡


{storeID,itemID}∪Attrs(stores)






p, ≡





{storeID,itemID}∪Attrs(stores)





p)













V




2





city,SumSISales=sum(SumSISales),NumCiSales=sum(NumSISales)


(


V




2


′)  [From (6) in Table 3]










V




3




′=V




1



items











V




3




′=V




3




V




3


′,  [From (4) in Table 3]








where θ


13


is (≡


{storeID,itemID}∪Attrs(items)






p, ≡





{storeID,itemID}∪Attrs(items)





p



)










V




3





category,SumCaSales=sum(SumSISales),NumCaSales=sum(NumSISales)


(


V




3


′)










V




3




=V




3





V





3


, where θ


3


is (≡


category






p, ≡





category





p



)  [From (6) in Table 3]






In all the above equations, U is of the form <(SUM, ƒ)(COUNT, ƒ)> and p is of the form (LHS.COUNT+RHS.COUNT)=0), where SUM is the aggregated attribute (SumSISales, SumCiSales, or SumCaSales) in the corresponding view, COUNT is the count attribute (NumSISales, NumCiSales, or NumCaSales) depending on the view, and ƒ(x, y)=x+y for all x, y. (Recall that LHS and RHS refer to the left and right operands of the join operation where p occurs.)




As described in Example 1, the above derived maintenance expressions for V


2


and V


3


are very efficient compared to the expressions derived by previous approaches.




6. Maintaining Outerjoin Views Efficiently




In this section, it is shown how our change-table techniques can be used to derive efficient and simple algebraic expressions for maintenance of view expressions involving outerjoin operators. Outerjoin is supported in SQL. Further, outerjoins have recently gained importance because data from multiple distributed databases can be integrated by means of outerjoin views. Outerjoins are also extensively used in object-related relational systems.




DEFINITION 5 (Outerjoin-change Table)




A change table for a view involving outerjoin operations is defined as an outerjoin-change table if the change table was either generated at an outerjoin operator or is a result of propagation of an outerjoin-change table, using the propagation equations that will be derived for propagating outerjoin-change tables.




For example, the change tables, V


4


and V


5


, computed for the views V


4


and V


5


in Example 1 are outerjoin-change tables.




First, it is shown how the insertions and deletions into an outerjoin view (RS), in response to insertions into the base table R, can be summarized into an outerjoin-change table. The next changes represented by the outerjoin-change table are then applied to the outerjoin view using the refresh operator. Computation of an outerjoin-change table at an outerjoin view in response to deletions from a base table requires a more general refresh operator, as discussed in Appendix C.




6.1 Generating Outerjoin-Change Table At An Outerjoin Node




Given tables R(A


1


, A


2


, . . . , A


n


) and S(B


1


, B


2


, . . . , B


m


), consider an outerjoin view V(A


1


, . . . A


n


, B


1


, . . . , B


m


)=RS, where J is an equi-join condition. Insertions into R, ΔR, result in some insertions and deletions into V. These set of insertions and deletions to V can be summarized into an outerjoin-change table V defined as V=ΔRS. Note that the tables V and V have the same schema and attribute names. It is shown that with the following specification of the refresh operator, the net changes in the outerjoin-change table V can be applied to the view V to obtain the correctly refreshed V. The specifications θ=(ℑ


1


, ℑ


2


) and U, of the refresh operator used to apply V to V are defined as follows.







1


is (≡


G



p) where G=Attrs(S) and p=(Ë



1≦j≦n


(V.A


j


=NULL)).







2


is FALSE.




The update list U of update function is <(A


1


, ƒ), (A


2


, ƒ), . . . , (A


n


, ƒ)>, where ƒ(x, y)=y for all x, y.




THEOREM 2




Consider the view V=RS defined as above. For the above definition of V and the refresh operator specifications of θ=(ℑ


1


, ℑ


2


) and U, the following holds:






(


RΔR


)


S


=(


RS


)(


V


)






6.2 Propagating Outerjoin-Change Tables




Only a special form of the generic refresh operator, which is called an outerjoin-refresh operator, is required to refresh a view using its outerjoin-change table.




DEFINITION 6 (Outerjoin-refresh Operator)




Let {A


1


, A


2


, . . . , A


n


, B


1


, B


2


, . . . , B


m


} be the set of attributes in V and its outerjoin-change table V. A refresh operator used to apply the outerjoin-change table V to its view V is said to be an outerjoin-refresh operator if:




The join condition ℑ


1


is (≡


G



p), where G={B



1


, B


2


, . . . , B


m


} and p is a predicate on the attributes (LHS.A


1


, LHS.A


2


, . . . , LHS.A


n


). The join condition ℑ


2


is FALSE.




U is <(A


1


, ƒ), (A


2


, ƒ), . . . , (A


n


, ƒ)>, where ƒ(x, y)=y for all x, y. Note that Attrs(U)∩G=φ and Attrs(U)∩G=Attrs(V).




The refresh equations given in Table 3 correctly propagate an outerjoin-change table as well, except for the case of propagation through the outerjoin operator, for which a different equation is derived, as follows: Consider a view V=E


1



E



2


where E


1


and E


2


are general view expressions. Suppose that the expression E


1


is refreshed to E


1



E



1


using its outerjoin-change table E


1


where the refresh operator is an outerjoin-refresh operator. Let θ=(≡


G



p, FALSE), for some predicate p and a set of attributes G common to E



1


and E


1


. The following equation shows how to propagate the outerjoin-change table E


1


to V under the condition Attrs(J)⊂G.








V


=(


E




1





E





2


)










V


=((


E




1





E





1


)


E




2


)=


E




1





E





2


)(


V


)








where θ


1


=(≡


Attrs(E






2






)



((



p




G


)(


Ë




e






1






∈Attrs(E






1






)




LHS.e




1


=NULL)),FALSE),









U




1


=<(


A




1


, ƒ),(


A




2


, ƒ), . . . ,(


A




k


, ƒ)>, and {


A




1




, A




2




, . . . , A




k


}=Attrs(


E




1


).




The function ƒ is such that ƒ(x, y)=y for all x, y. Note that the refresh operator used in the equation (7b) to refresh V using V is an outerjoin-refresh as well.




THEOREM 3




Assume that the refresh operator used in the expression of the third column in Table 3 is an outerjoin-refresh operator. Then, the change propagation equations given in Table 3, with the following two changes, correctly propagate outerjoin-change tables.




The refresh equation for selection view is correct even without the condition given in column 6.




The above equation (7b) is used for propagation through an outerjoin operator.




Also, the refresh operator derived in each of the refresh equations (column 4) is also an outerjoin-refresh operator.




EXAMPLE 4




Consider a view V=π


A,B,F=sum(D),H=sum(E),Num=Count(*)


((σ


A<5


((R


C=D


S)T)), where R(A, B, C), S(D, E), and T(A, B, L) are base relations, and is the natural join operation, i.e., a join with the join condition (≡


{A,B}


). Recall that for the purposes of calculating the SUM aggregates, the attribute value of NULL is taken as 0, provided at least one tuple has a non-NULL value.




For clarity of presentation, let us assume V


1


=R


C=D


S, V


2


=V


1



T, V



3





A>5


(V


2


). Let us define a predicate p as ((LHS.D=NULL) (LHS.E=NULL)), a predicate q as ((LHS.Num+RHS.Num)=0), an update list U


1


as <(F, ƒ),(H, ƒ)>, and U as <(D, g),(E, g),(Num, g)>. Here, ƒ(x, y)=y for all x, y and g(x, y)=x+y for all x, y≠NULL and g(NULL, y)=y. The techniques of maintaining views involving outerjoin operators by deriving maintenance expressions for V in response to insertions, ∇S, into S, are illustrated.








V




1


=(


R∇S


)










V




1




=V




1





V





1


, where θ


1


is (≡


Attrs(R)





p



FALSE)  [From Theorem 2]










V




2




=V




1





T













V




2




=V




2





V





2


, where θ


2


is (≡


Attrs(R)





Attrs(T)





p



, FALSE)  [From (4) in Table 3]










V




3


σ


A>5


(


V




2


)










V




3




=V




3





V





3


  [From (1) in Table 3]










V=π




A,B,F=Sum(D),H=Sum(E),Num=Count(*)


(


V




3


)










V=VV


, where θ is (≡


{A,B}






q, ≡





{A,B}





q



)  [From (4) in Table 3]






APPENDIX A: REFRESH ALGORITHM




Algorithm 1: Refresh Algorithm




Input




Table V(A


1


, A


2


, . . . , A


n


).




Change Table V(A


1


, A


2


, . . . , A


n


).




θ=(ℑ


1


, ℑ


2


), U=<(A


i






1




, ƒ


1


), (A


i






2




, ƒ


2


), . . . , (A


i






k




, ƒ


k


)>




Output




Refreshed table V, i.e., VV.




Method




DECLARE cursor box_CURSOR FOR




SELECT A


1


, A


2


, . . . , A


n


FROM V;




OPEN cursor_box;




LOOP




FETCH cursor_box INTO :a


1


, :a


2


, . . . , :a


n


,;




UNTIL not-found




DECLARE cursor_view CURSOR FOR




SELECT A


1


, A


2


, . . . , A


n


FROM V




WHERE (ℑ


1


(A


1


, A


2


, . . . , A


n


, : a


1


, : a


2


, . . . , : a


n


) OR ℑ


2


(A


1


, . . . , A


n


,




:a


1


, . . . , : a


n


)) AND (NOT changed);




OPEN cursor_view;




LOOP




FETCH cursor_view INTO :a


1


:a


2


, . . . , : a


n


;




UNTIL not-found




IF not-found




INSERT INTO VVALUES (:a


1


, :a


2


, . . . , :a


n


);




ELSE-IF ℑ


2


(:a


1


, :a


2


, . . . , :a


n


,:a


1


, :a


2


, . . . , :a


n


)




DELETE FROM V WHERE CURRENT OF cursor_view;




break;




ELSE




UPDATE V SET update attributes=function of update attributes from cursor_view as changed.




break;




ENDIF




ENDLOOP




CLOSE cursor_view;




ENDLOOP




CLOSE cursor_box;




APPENDIX B: PROOF OF THEOREMS




C.1 Proof of Theorem 1




Proof:




Selection: V=σ


p


(E). First, it is shown that if e∈E affects a tuple v∈σ


p


(E)⊂E by updating or deleting v from R, then e∈σ


p


(E). As e results in an update or deletion of v, the pair (es, e) satisfies the join condition (≡


G


). Now, as Attrs(p)⊂G. if es satisfies p then e satisfies p too. Thus, all tuples in E that can update or delete a tuple in V=σ


p


(E) are in σ


p


(E)=V. Therefore, all the required updates or deletions to V are captured by the refresh equation.




Let I be the set of tuples in E that do not find a match in E.I is the set of tuples inserted into E and thus, σ


p


(I) should be inserted into V. As σ


p


(I)⊂σ


p


(E)=V, and as no tuple in σ


p


(I) will find a match in V⊂E, σ


p


(I) will be inserted into V using the refresh equation of V. Therefore, refresh equation doesn't miss any legitimate insertions into V.




Also, a tuple v∈σ


p


(E) cannot find a mach in σ


{overscore (p)}


E


1


because Attrs(p)⊂G. Therefore, if v doesn't find a match in V=σ


p


(E), then v does not find a match in E. Hence, all insertions into V due to the refresh equation are legitimate.




Projection: V=II


A


(E). If Attrs(θ)⊂A, then the information needed to decide the effect of a tuple e∈E on a tuple e∈E, if any, is available in II


A


(s). Hence, E can be directly applied to V=II


A


(E) after the same projection step. Note that the resulting refresh operator is also an aggregate-refresh operator.




Cross Product: V=E


1


×E


2


. Suppose a tuple e


1


∈E


1


matches with a tuple e


1


∈E


1


. Consider the set E


1




[]e






1




=(e


1


×E


2


)⊂V. It is easy to see that each tuple (e


1


, e


2


)∈E


2




[]e






1




will result in a match with a tuple (e


1


, e


2


)∈(e


1


×E


2


) due to the join conditions in θ


1


. The matches will result in appropriate updates and deletions.




Also any unmatched tuple e


1


∈E


1


will also result in the unmatched tuples in (e


1


×E


2


)⊂V.




Join: V=E


1



E



2


. Follows from the previous cases, but stated in the table for convenience.




Union: V=E


1



E



2


. As ((E


1



E



2


){dot over (−)}E


2


)=E


1


, the equivalence of the expression is obvious.




Aggregation: V=π


G′,ƒ(A)


(E). Without loss of generality, this case is proven when k=1. Let ƒ


1


=ƒ and A


1


=A. It is assumed that (G′⊂G)A⊂Attrs(U), U=<(A


1


, ƒ), (A


2


, ƒ), . . . , (A


k


, ƒ)> and ƒ is a distributive function. Let us assume that the tuples e


1


, e


2


, . . . e


k


∈E have the same G′ values and their aggregated attribute A values are a


1


, a


2


, . . . , a


k


. Also, assume that the tuple e


i


matches with a tuple e


i


∈E due to ℑ


1


and that the aggregated attribute A value of e


i


is a


1


. Note that e


i


's have the same G′ values too. The attribute value a


i


of e


i


is updated to ƒ(a


i


, a


i


) due to U. Thus the aggregated value in V derived from e


i


, . . . , e


k


should change from ƒ(a


1


, a


2


, . . . , a


n


) to ƒ(ƒ(a


1


, a


1


), ƒ(a


2


, a


2


), . . . , ƒ(a


n


, a


n


)). Now, by the definition of V, the tuples e


1


, . . . , e


k


∈E will be grouped to yield the aggregate attribute value ƒ(a


1


, . . . , a


n


). The refresh equation of V correctly changes the aggregated value of the grouped value of e


i


s from ƒ(a


1


, a


2


, . . . a


n


) to ƒ(ƒ(a


1


, a


2


, . . . a


n


), ƒ(a


1


, . . . , a


n


). As ƒ is a distributive function, ƒ(ƒ(a


1


, a


1


), ƒ(a


2


, a


2


), . . . ƒ(a


n


, a


n


))=ƒ(ƒ(a


1


, a


2


, . . . , a


n


), ƒ(a


1


, . . . , a


n


)), hence the refresh equation of V correctly updates the aggregated attribute values in V.




All insertions into E due to E will be converted to aggregated insertions or updates into V by the refresh equation. The deletions from E need not necessarily result in any deletions from V. A tuple is deleted from V only if its aggregated attributes become zero, which is independent of the deletions of the deriving tuples from E.




Outerjoin: V=EE


2


. Suppose E


1


induces a set of insertions I into the relation E


1


. Each tuple i∈I results in a set of tuples E


2




i


=iE


2


in V. No tuple e


2




i


∈E


2




i


finds a match in V due to the predicate (≡


G






τ


), because if it did, i would have found a match in E


1


due to ≡


G


. Therefore, the refresh equation results in E


2




i


being inserted into V for each i∈I.




Let us assume that M(⊂E


1


) is a set of tuples that find a match in E


1


due to ≡


G


and hence, result in either deletion or update of a tuple in E


1


. Each tuple m∈M results in a set of tuples E


2




m


=mE


2


in V. If m matched with a tuple e


2


∈E


2


due to both having the same G attributes, then each tuple (r,m)∈E


1




m


would match the corresponding tuple (r,s)∈E


1




s


=E


1



S. The tuple (r,s) exists in E



1



s because (r,m)∈E



1




m


and Attrs(J)⊂G. Also, note that E


2




s


⊂V. Thus the refresh equation of V affects the updates and deletions correctly.




This completes the proof.




C.2 Proof of Theorem 2




Proof: Due to insertion of ΔR into R, the view V should change as follows. The set of tuples ΔRS should be inserted into V but the tuples of the kind (NULL, . . . , NULL, s


1


, s


2


, . . . , s


m


)∈V should be deleted from V if a corresponding tuple (r


1


, r


2


, . . . r


n


, s


1


, s


2


, . . . , s


m


) is being inserted into V from V.




The above effect an be achieved by changing a tuple v=(NULL, . . . , NULL, s


1


, s


2


, s


m


) in V to v=(r


1


, r


2


, . . . , r


n


, s


1


, s


2


, . . . , s


m


) if such a tuple v exists in V. The refresh of V would be complete if the tuples v in V for which no such match occurs are inserted into V. By the definition of the refresh operator and its specification, one can see that is exactly what is achieved by the expression VV.




C.3 Proof of Theorem 3




Proof. The proof is the same as in Theorem 1 except for the cases of selection and outerjoin, which uses a different equation.




V=σ


p


(E). The second characteristic of the outerjoin-refresh operator is used to show that σ


p


(EE=σ


p


(E).




Using the same arguments as in Theorem 1, the refresh equation of V doesn't miss any legitimate insertions into V affected by the refresh operation EE.




Now it is shown that all insertions into V using the refresh equation are legitimate. The refresh equation may induce an insertion of the tuple v∈V into V if v doesn't find a match in V. If v∈I, where I is the set of tuples in E that don't find a match in E, then the insertion is obviously legitimate. Suppose, v∉I. That implies that v∈E found a match with a tuple e∈E. Because of the second characteristic of an outerjoin-refresh operator and its specification, any match results in the tuple in E being updated to the matching tuple in E. Thus, the effect of the refresh operation EE is that the tuple e is updated to v. As v∈V, it satisfies the selection condition p and hence, v is included in V. Thus, the insertion of v into V by the refresh equation is correct.




In the refresh equation, if a tuple v∈V is updated due to a tuple v∈V=σ


p


(E), then v∈E would have been updated by v too in the refresh operation of E. As v is updated to v which satisfied the predicate p, the updated tuple v is correctly retained in V by the refresh equation. This shows that the updates to V in the refresh equation are legitimate.




The only updates the refresh equation might miss are of the kind where a tuple e∈E matches with a tuple e′∈τ


{overscore (p)}


(E). In such a case, the tuple e′ is updated to e. If e∈σ


p


(E), then the updated tuple e should be included in V. This happens in the refresh equation too, as e doesn't find a match in V and hence is inserted into V.




Outerjoin: V=E


1



E



2


. The correctness of the refresh equation is proven. Let M(⊂E


1


) be the set of tuples in E


1


that find a match in E


1


due to ℑ


1


=≡


G



p. Note that G is a set of attributes in E



1


and p is a predicate over the rest of the attributes in E


1


. Consider m∈M and that m finds a match e


1


∈E


1


due to ℑ


1


. Each m results in the set of tuples E


2




m


=mE


2


in V=EE


2


. Each tuple e


2




m


=<m, e


2


>∈E


2




m


will find a corresponding match in v=<e


1


, e


2


>∈V due to the join condition ≡


Attrs(E2)∪G



p. Note that as Attrs(J)⊂G. the existence of tuple <m, e



2


> in E


2




m


implies the existence of v in V. The tuple <e


1


, e


2


> gets updated to <m, e


2


> due to the list U


1


in the refresh equation of V. This update affected by the refresh equation is correct because m changes e


1


to m too, as Attrs(G)∪Attrs(U)=Attrs(E


1


) and m and e


1


have the same G attributes. Thus, all the updates into E


1


are correctly propagated to V.




The refresh equation of V results in more updates in V. Let I⊂E


1


be the set of tuples in E


1


that are inserted into E


1


(because they didn't find a ℑ


1


in E


1


). Consider i∈I. Each i results in the set of tuples E


2




i


=iE


2


in V. Tuple <i, e


2


>∈E


2




i


could only find a match v∈V due to the join condition ≡


Attrs(E






2






)






e∈Attrs(E






1






)


LHS.e=NULL), in which case the tuple v is correctly updated to <i, e


2


>. All the unmatched tuples in V are correctly inserted into V.




APPENDIX C: PROPAGATION OF DELETIONS THROUGH OUTERJOIN OPERATORS




The changes in V=RS due to deletions from a base relation R cannot be summarized in an outerjoin-change table within our restricted definition of refresh operator. In this section, it is shown that deletions can be propagated from a base table through a outerjoin operator by keeping a count of duplicate tuples in one of the base relations and using an extended version of the refresh operator.




Let S


set


denote the expression π


Attrs(S),Num=Count(*)


(S). In response to deletions ∇R from R, V, called an OJdeletion-change table, is defined as ∇RS


set


. The view V is refreshed using the same refresh equation VV, where θ=(≡


Attrs(V)


, ≡


Attrs(S)


) and U=<(A


1


, ƒ), . . . , (A


n


, ƒ)>, where ƒ(x, y)=NULL for all x, y and {A


1


, . . . , A


k


}=Attrs(R). The refresh algorithm used to refresh the view Vusing its OJdeletion-change table is shown in Algorithm 2. The propagation equations of Table 3 for propagating aggregate-change tables through an outerjoin operator can be extended by introducing counts, in the manner described above.




Algorithm 2: Refresh Algorithm to Apply an OJdeletion-Change Table to its View




Input




View V(A


1


, . . . , A


n


, B


1


, . . . , B


m


)




Change Table V(A


1


, . . . , A


n


, B


1


, . . . , B


m


, Num)




θ=(ℑ


1


, ℑ


2


), U=<(A


1


, ƒ


1


), (A


2


, ƒ


2


), . . . , (A


k


, ƒ


n


)>




Output




Refresh table V, i.e., VV.




Procedure




BEGIN




for each tuple v=(r, s, l) in V




Let {v


1


, . . . , V


t


} be the tuples in V that match




v due to the join condition ℑ


1


.




if there is a tuple v′∈V such that v′∉{v


1


, . . . , v


1


} and




v′ matches with v due to the join condition ℑ


2






then




Delete tuples v


1


, v


2


, . . . , v


1


from V;




else




Update each tuple v


1


, v


2


, . . . , v


I


in V using the




specifications in U;




endif




endfor




RETURN V




END




Note that the refresh operator doesn't need to query the sources and hence, can be executed very efficiently. Change propagation equations required for propagating an OJdeletion-change table through rational and aggregate operations can be appropriately defined.




Although specific embodiments of the present invention have been described, it will be understood by those of skill in the art that there are other embodiments that are equivalent to the described embodiments. Accordingly, it is to be understood that the invention is not to be limited by the specific illustrated embodiments, but only by the scope of the appended claims.



Claims
  • 1. A method of incrementally maintaining a database consisting of at least one materialized view in a general view expression tree involving: selection, projection, join, aggregate and outerjoin operators in an arbitrary manner at various levels in the tree based on at least one base table, comprising the steps of:receiving changes to the base table; generating a first level change table at a first complex operator including at least one of aggregate or outerjoin in the expression tree based on the received changes; propagating the generated first level change table through various operators including at least one of selection, projection, join, aggregate or outerjoin to sequentially compute higher-level change tables in the expression tree resulting in a change table at the highest level in the expression tree for the materialized view; and updating the materialized view by applying the change table at the highest level for the materialized view using a refresh operation.
  • 2. The method of claim 1, wherein the change table at the highest level for the materialized view comprises a plurality of tuples representing the changes, the materialized view comprises a plurality of tuples, the refresh operation has three parameters, two join conditions and an update function specification, and the step of updating the materialized view comprises the steps of:for each tuple in the change table, finding all tuples in the materialized view that match the tuple in the change table, using the join condition; and updating each found tuple in the materialized view by performing operations indicated by the update function specification, if the match is due to the first join condition; and deleting each found tuple in the materialized view if the match is due to the second join condition.
  • 3. The method of claim 2, wherein if the first-level change table is computed at an aggregate operator, then the step of finding all tuples in the materialized view at level that match the tuple in the change table, comprises the step of:matching “join” attributes of a tuple in the change table with the same attributes of a tuple in the view; and updating some attributes other than the “join” attributes of the tuple in the view using the same attributes of the tuple in the change table.
  • 4. The method of claim 3, wherein the step of updating the materialized view further comprises the steps of:inserting a tuple from the change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the change table; and deleting a tuple from the materialized view, if an aggregated attribute representing a count of the number of tuples in a group represented by the tuple becomes zero.
  • 5. The method of claim 2, wherein the materialized view, based on at least one table is such that the first-level change table was computed at an outerjoin operator, there is a tuple in the materialized view corresponding to each value of at least one selected attribute in any of the plurality of tables, each tuple in the materialized view comprises the at least one selected attribute and at least one other attribute, the step of finding all tuples in the materialized view that match the tuple in the change table, using the join condition, comprises the step of:matching the at least one selected attribute of a tuple in the change table with the at least one selected attribute of a tuple in the materialized view; and the step of updating each found tuple in the materialized view comprises the steps of: updating the at least one other attribute of the tuple in the view using the at least one other attribute of the tuple in the highest-level change table.
  • 6. The method of claim 5, wherein the step of updating the materialized view further comprises the step of:inserting a tuple from the change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the change table.
  • 7. A system for incrementally maintaining a database consisting of at least one materialized view in a general view expression tree involving: selection, projection, join, aggregate and outerjoin operators in an arbitrary manner at various levels in the tree, based on at least one base table, comprising:means for receiving changes to the base table; means for generating a first level change table at a first complex operator including one of aggregate or outerjoin in the expression tree based on the received changes; means for propagating the generated first level change table through various operators including at least one of selection, projection, join, aggregate or outerjoin to sequentially compute higher-level change tables in the expression tree resulting in a change table at the highest level in the expression tree for the materialized view; and means for updating the materialized view by applying the highest-level change table for the materialized view using a refresh operation.
  • 8. The system of claim 7, wherein the highest-level change table comprises a plurality of tuples representing the changes, the materialized view comprises a plurality of tuples, the refresh operation has two parameters, a join condition and an update function specification, and the means for updating the materialized view comprises the steps of:means for finding all tuples in the materialized view that match the tuple in the highest-level change table, using the join condition, for each tuple in the highest-level change table; and means for updating each found tuple in the materialized view by performing operations indicated by the update function specification.
  • 9. The system of claim 8, wherein if the first-level change table is computed at an aggregate operator, then the step of finding all tuples in the materialized view at level that match the tuple in the change table, comprises the step of:matching “join” attributes of a tuple in the change table with the same attributes of a tuple in the view; and updating some attributes other than the “join” attributes of the tuple in the view using the same attributes of the tuple in the change table.
  • 10. The system of claim 9, wherein the means for updating the materialized view further comprises:means for inserting a tuple from the highest-level change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the highest-level change table; and means for deleting a tuple from the materialized view, if an aggregated attribute representing a count of a number of tuples in a group represented by the tuple becomes zero.
  • 11. The system of claim 8, wherein the materialized view based on at least one table is such that the first-level change table was computed at an outerjoin operator, there is a tuple in the materialized view corresponding to each value of at least one selected attribute in any of the plurality of tables, each tuple in the materialized view comprises the at least one selected attribute and at least one other attribute, the means for finding all tuples in the materialized view that match the tuple in the highest-level change table, using the join condition, comprises:means for matching the at least one selected attribute of a tuple in the highest-level change table with the at least one selected attribute of a tuple in the materialized view; and the means for updating each found tuple in the materialized view comprises: means for updating the at least one other attribute of the tuple in the view using the at least one other attribute of the tuple in the highest-level change table.
  • 12. The system of claim 11, wherein the means for updating the materialized view further comprises:means for inserting a tuple from the highest-level change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the highest-level change table; and means for deleting a tuple from the materialized view, if a value of the at least one selected attribute of the tuple is no longer present in any table.
  • 13. A database system comprising:a processor; a storage device including a database consisting of at least one materialized view, in a general view expression tree involving complex operators including at least one of selection, projection, join, aggregate or outerjoin in an arbitrary manner at various levels in the tree based on at least one base table; and a refresh engine performing the steps of: receiving changes to the base table; generating a first level change table at a first complex operator including at least one of aggregate, or outerjoin in the expression tree based on the received changes; propagating the generated first level change table through various complex operators including at least one of selection, projection, join, aggregate or outerjoin to sequentially compute higher-level change tables in the expression tree resulting in a change table at the highest-level in the expression tree for the materialized view; and updating the materialized view by applying the highest-level change table for the materialized view using a refresh operation.
  • 14. The system of claim 13, wherein the highest-level change table comprises a plurality of tuples representing the changes, the materialized view comprises a plurality of tuples, the refresh operation has two parameters, a join condition and an update function specification, and the step of updating the materialized view comprises the steps of:for each tuple in the highest-level change table, finding all tuples in the materialized view that match the tuple in the highest-level change table, using the join condition; and updating each found tuple in the materialized view by performing operations indicated by the update function specification.
  • 15. The system of claim 14, wherein the materialized view is an aggregated materialized view, each tuple in the materialized view and in the highest-level change table includes at least one non-aggregated attribute and at least one aggregated attribute, the step of finding all tuples in the materialized view that match the tuple in the highest-level change table, using the join condition, comprises the step of:matching the non-aggregated attribute of a tuple in the highest-level change table with the non-aggregated attribute of a tuple in the view and; and the step of updating each found tuple in the materialized view comprises the steps of: updating the aggregated attribute of the tuple in the view using the aggregated attribute of the tuple in the highest-level change table.
  • 16. The system of claim 15, wherein the step of updating the materialized view further comprises the steps of:inserting a tuple from the highest-level change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the highest-level change table; and deleting a tuple from the materialized view, if an aggregated attribute representing a count of a number of tuples in a group represented by a tuple becomes zero.
  • 17. The system of claim 14, wherein the materialized view is an outerjoin materialized view based on a plurality of tables, there is a tuple in the materialized view corresponding to each value of at least one selected attribute in any of the plurality of tables, each tuple in the materialized view comprises the at least one selected attribute and at least one other attribute, the step of finding all tuples in the materialized view that match the tuple in the highest-level change table, using the join condition, comprises the step of:matching the at least one selected attribute of a tuple in the highest-level change table with the at least one selected attribute of a tuple in the view and; and the step of updating each found tuple in the materialized view comprises the steps of: updating the at least one other attribute of the tuple in the view using the at least one other attribute of the tuple in the highest-level change table.
  • 18. The system of claim 17, wherein the step of updating the materialized view further comprises the steps of:inserting a tuple from the highest- level change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the highest-level change table; and deleting a tuple from the materialized view, if a value of the at least one selected attribute of the tuple is no longer present in any table.
  • 19. A medium, executable in a computer system, for incrementally maintaining a consisting of at least one materialized view in a general view expression tree involving complex operators including at least one of selection, projection, join, aggregate or outerjoin in an arbitrary manner at various levels in the tree based on at least one base table, the medium comprising:program instruction receiving changes to the base table; program instructions generating a first level change table at a first complex operator including at least one aggregate or outerjoin in the expression tree based on the received changes; program instructions propagating the generated first level change table through various complex operators including at least one of selection, projection, join, aggregate or outerjoin to sequentially compute higher-level change tables in the expression tree resulting in a change table at the highest level in the expression tree for the materialized view; and program instructions updating the materialized view by applying the change table at the highest level for the materialized view using a refresh operation.
  • 20. The medium of claim 19, wherein the change table at the highest level for the materialized view comprises a plurality of tuples representing the changes, the materialized view comprises a plurality of tuples, the refresh operation has three parameters, two join condition and an update function specification, and the step of updating the materialized view for each tuple in the change table, the medium comprises:for each tuple in the change table, program instructions finding all tuples in the materialized view that match the tuple in the change table, using the join condition; and program instructions updating each found tuple in the materialized view by performing operations indicated by the update function specification, if the match is due to the first join condition; and deleting each found tuple in the materialized view if the match is due to the second join condition.
  • 21. The medium of claim 20, wherein the materialized view if the first-level change table is computed at an aggregate operator, then the step of finding all tuples in the materialized view at level that match the tuple in the change table, comprises:program instructions matching “join” attributes of a tuple in the change table with the same attributes of a tuple in the view; and program instructions updating some attributes other than the “join” of the tuple in the view using the same attributes of the tuple in the change table.
  • 22. The medium of claim 21, wherein the program instructions updating the materialized view further comprises:if the first-level change table is computed at an aggregate operator, then the step of finding all tuples in the materialized view at level that match the tuple in the change table, comprises: program instructions matching “join” attributes of a tuple in the change table with the same attributes of a tuple in the view; and program instructions updating some attributes other than the “join” attributes of the tuple in the view using the same attributes of the tuple in the change table.
  • 23. The medium of claim 20, wherein the materialized view, based on at least one table is such that the first-level change table was computed at an outerjoin operator, there is a tuple in the materialized view corresponding to each value of at least one selected attribute in any of the plurality of tables, each tuple in the materialized view comprises:the at least one selected attribute and at least one other attribute, program instructions finding all tuples in the materialized view that match the tuple in the change table, using the join condition, comprises: program instructions matching the at least one selected attribute of a tuple in the change table with the at least one selected attribute of a tuple in the materialized view; and program instructions updating each found tuple in the materialized view comprises: program instructions updating the at least one other attribute of the tuple in the view using the at least one other attribute of the tuple in the highest-level change table.
  • 24. The medium of claim 23, wherein the program instructions updating the materialized view further comprises:program instructions inserting a tuple from the change table into the materialized view, if no tuples are found in the materialized view that match the tuple from the change table.
US Referenced Citations (7)
Number Name Date Kind
5897632 Dar et al. Apr 1999 A
5991754 Raitto et al. Nov 1999 A
6006216 Griffin et al. Dec 1999 A
6026390 Ross et al. Feb 2000 A
6058391 Gardner May 2000 A
6058401 Stamos et al. May 2000 A
6125360 Witkowski et al. Sep 2000 A
Non-Patent Literature Citations (7)
Entry
Segev et al. “Updating Distributed Materialized Views” IEEE Transaction on Knowledge and Data Engineering. vol. 1, No. 2 Jun. 1989, pp. 173-184.*
Quass et al. “Making Views Self-Maintainable for Data Warehousing” Parallel and Distributed Information Systems, 1996., Fourth International Conference on, 1996 pp.: 158-169.*
Mumick et al. “Maintenance of Data Cubes and Summary Tables in a Warehouse”, SIGMOD, vol. 26, Issue 2, Jun. 1997, pp. 100-111.
Qian et al. “Incremental Recomputation of Active Relational Expressions”, IEEE Transactions on Knowledge and Engineering, Sep. 1991, pp. 337-341.
Griffin et al. “Incremental Maintenance of Views with Duplications”, SIGMOD, vol. 24, Issue 2, May 1995, pp. 328-339.
Quass “Materialized Views in Data Warehouse” Dissertation, Aug. 1997, pp. 1-215.
Zhuge “View Maintenance in a Warehousing Environment” SIGMOD, vol. 24, Issue 2, May 1995, pp. 316-327.