The present invention relates to database systems and, in particular, to generating execution plans for processing queries to a database system.
Relational and object-relational database management systems store information in tables of rows in a database. To retrieve data, queries that request data are submitted to a database server, which computes the queries and returns the data requested.
Queries submitted to the database server must conform to the syntactical rules of a particular query language. One popular query language, known as the Structured Query Language (SQL), provides users a variety of ways to specify information to be retrieved.
A query submitted to a database server is evaluated by a query optimizer. Based on the evaluation, the query optimizer generates an execution plan that describes operations for executing the query. The optimized execution plan may be based on a rewrite of the query.
A common type of query that is optimized is a query that contains a series of joins where a table referenced in one join is also referenced in the following join. One common technique for generating an execution plan for this type of query is to generate a left deep tree execution plan. In a left deep tree execution plan, the result of one join operation is used as the left input to the next join with another table.
Although the left deep tree execution plan is commonly supported by relational database systems and is effective for many types of serial joins, it is an inefficient technique for databases with snowstorm schema, which contains many large fact tables and many small dimension tables, where fact and dimension tables reference one another. Therefore, it is desirable to develop techniques for generating execution plans for efficiently performing serial joins that specify tables in a database with snowstorm schema.
The approaches described in this section are approaches that could be pursued, but not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated, it should not be assumed that any of the approaches described in this section qualify as prior art merely by virtue of their inclusion in this section.
The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings and in which like reference numerals refer to similar elements and in which:
In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.
Left deep trees and bushy trees are two possible execution plans generated for performing queries specifying a series of joins where a table referenced in one join is also referenced in the next join. Left deep tree execution plans, however, are inefficient for queries posed against snowstorm schema, a schema that contains several large fact tables and many dimension tables, which are all interconnected.
Bushy tree execution plans are much more efficient than left deep tree execution plans for processing queries to snowstorm schema because in a bushy tree execution plan, the large fact tables are first joined with small dimension tables to produce a set of reduced-size intermediate results.
A relational database system may not support bushy tree execution plans. Therefore, according to one technique, bushy tree execution plans are simulated on database systems supporting left deep tree execution plans by enclosing joins between large fact tables and small dimension tables inside unmergeable inline views.
One common technique for performing several joins in series is to use a left deep tree execution plan. Consider the following query Q1.
Query Q1 specifies three joins in series involving tables T1 and T2 in a first join, tables T2 and T3 in a second join, and tables T3 and T4 in a third join. A left deep tree execution plan generated for Q1 is illustrated in
As illustrated in symbol specifies a join). Next, the results from the join between T1 and T2 are joined with table T3. Finally, the results from the join between the results from the join between T1 and T2 and table T3 are joined with table T4. Although there are only four tables and three joins in the series of joins in this example, the left deep tree execution plan can be extended to apply to a query that specifies any number of joins in series.
An alternative technique for performing several joins in series is to use a bushy tree execution plan. Consider query Q1 specified above. A bushy tree execution plan generated for Q1 is illustrated in
One type of database schema is referred to as a snowstorm schema. The primary characteristic of a snowstorm schema is that it contains several large fact tables and many dimension tables, which may make references to one another. The dimension tables are much smaller than the fact tables. Furthermore, the fact tables and the dimension tables have references to one another. In other words, a large fact table may be associated with one or more small dimension tables and other fact tables. Similarly, dimension tables may reference other dimension tables.
Whether tables in a database are part of a snowstorm schema may be determined by examining the relative sizes of the tables and join references in the given query. For example, if there are several tables whose size is above a certain threshold and many tables whose size is below a certain threshold and there are one or more star- or snowflake-type joins, then it may be determined that these are fact tables and dimension tables, and therefore part of a snowstorm schema. The specific size thresholds used for detecting a snowstorm schema may vary from case to case. Detailed discussion of snowstorm schema are included in Othayoth, R. and Poess, M., “The Making of TPC-DS”, Proceedings of the 32nd International Conference on Very Large Data Bases, pp. 1049-1058, 2006.
Queries against snowstorm schema that specify a series of joins may be processed through generating a left deep tree execution plan. Consider query Q2. Q2 is very similar to query Q1 that is discussed above. Q2, however, is directed against a snowstorm schema and therefore involves fact tables and dimension tables.
Query Q2 specifies five joins: two joins between a fact table F1 and its associated dimension tables D1 and D3, one join between two fact tables F1 and F2, and two joins between fact table F2 and its associated dimension tables D2 and D4.
A left deep tree execution plan generated for Q2 is illustrated in
Joins are expensive operations for a database to perform. The larger the tables involved in a particular join, the more expensive and less efficient the particular join. The join between tables F1 and D1 in
Alternatively, a bushy tree execution plan may be used to perform the query Q2 discussed above. A bushy tree execution plan generated for Q2 is illustrated in
As
The decision to choose between left-deep and bushy tree execution plans is made on the basis of the costs of the two execution plans. Cost-based transformations may be performed on the left-deep and bushy tree execution plans before a final choice between the two plans is made. In a cost-based transformation, logical and physical optimizations are combined to generate an optimal execution plan. Detailed discussion of a cost-based transformation framework and descriptions of various types of cost-based transformations, such as subquery unnesting and join predicate pushdown, are included in Ahmed, R., et al, “Cost-Based Transformation in Oracle”, Proceedings of the 32nd International Conference on Very Large Data Bases, pp. 1026-1036, 2006.
If a relational database system only supports left deep tree execution plans and does not support bushy tree execution plans, then, according to one embodiment, a bushy tree execution plan is simulated through the use of unmergeable, inline views. An unmergeable view is a view that a query optimizer or compiler determines should or cannot be merged because certain conditions or criteria are not satisfied. Consider again query Q2 discussed above. In a database system that only supports left deep trees, an execution plan like the one in
In the example just discussed, a compiler directive /*+NO_MERGE */is used to make a view unmergeable, because we are showing manually re-written queries as an illustration. The database system will internally mark such views as unmergeable. The present invention is not limited, however, to any particular way for making a view unmergeable.
Computer system 700 may be coupled via bus 702 to a display 712, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 714, including alphanumeric and other keys, is coupled to bus 702 for communicating information and command selections to processor 704. Another type of user input device is cursor control 716, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 704 and for controlling cursor movement on display 712. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
The invention is related to the use of computer system 700 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are performed by computer system 700 in response to processor 704 executing one or more sequences of one or more instructions contained in main memory 706. Such instructions may be read into main memory 706 from another machine-readable medium, such as storage device 710. Execution of the sequences of instructions contained in main memory 706 causes processor 704 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
The term “machine-readable medium” as used herein refers to any medium that participates in providing data that causes a machine to operation in a specific fashion. In an embodiment implemented using computer system 700, various machine-readable media are involved, for example, in providing instructions to processor 704 for execution. Such a medium may take many forms, including but not limited to storage media and transmission media. Storage media includes both non-volatile media and volatile media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 710. Volatile media includes dynamic memory, such as main memory 706. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 702. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications. All such media must be tangible to enable the instructions carried by the media to be detected by a physical mechanism that reads the instructions into a machine.
Common forms of machine-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, any other optical medium, punchcards, papertape, any other physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
Various forms of machine-readable media may be involved in carrying one or more sequences of one or more instructions to processor 704 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 700 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 702. Bus 702 carries the data to main memory 706, from which processor 704 retrieves and executes the instructions. The instructions received by main memory 706 may optionally be stored on storage device 710 either before or after execution by processor 704.
Computer system 700 also includes a communication interface 718 coupled to bus 702. Communication interface 718 provides a two-way data communication coupling to a network link 720 that is connected to a local network 722. For example, communication interface 718 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 718 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 718 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
Network link 720 typically provides data communication through one or more networks to other data devices. For example, network link 720 may provide a connection through local network 722 to a host computer 724 or to data equipment operated by an Internet Service Provider (ISP) 726. ISP 726 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 728. Local network 722 and Internet 728 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 720 and through communication interface 718, which carry the digital data to and from computer system 700, are exemplary forms of carrier waves transporting the information.
Computer system 700 can send messages and receive data, including program code, through the network(s), network link 720 and communication interface 718. In the Internet example, a server 730 might transmit a requested code for an application program through Internet 728, ISP 726, local network 722 and communication interface 718.
The received code may be executed by processor 704 as it is received, and/or stored in storage device 710, or other non-volatile storage for later execution. In this manner, computer system 700 may obtain application code in the form of a carrier wave.
In the foregoing specification, embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation. Thus, the sole and exclusive indicator of what is the invention, and is intended by the applicants to be the invention, is the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction. Any definitions expressly set forth herein for terms contained in such claims shall govern the meaning of such terms as used in the claims. Hence, no limitation, element, property, feature, advantage or attribute that is not expressly recited in a claim should limit the scope of such claim in any way. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
Number | Name | Date | Kind |
---|---|---|---|
4769772 | Dwyer | Sep 1988 | A |
4829427 | Green | May 1989 | A |
5091852 | Tsuchida et al. | Feb 1992 | A |
5325525 | Shan et al. | Jun 1994 | A |
5339429 | Tanaka et al. | Aug 1994 | A |
5412804 | Krishna | May 1995 | A |
5437032 | Wolf et al. | Jul 1995 | A |
5452468 | Peterson | Sep 1995 | A |
5495419 | Rostoker et al. | Feb 1996 | A |
5495605 | Cadot | Feb 1996 | A |
5495606 | Borden et al. | Feb 1996 | A |
5537588 | Engelmann et al. | Jul 1996 | A |
5548755 | Leung et al. | Aug 1996 | A |
5551027 | Choy et al. | Aug 1996 | A |
5574900 | Huang et al. | Nov 1996 | A |
5590319 | Cohen et al. | Dec 1996 | A |
5590324 | Leung et al. | Dec 1996 | A |
5642515 | Jones et al. | Jun 1997 | A |
5675791 | Bhide et al. | Oct 1997 | A |
5680547 | Chang | Oct 1997 | A |
5694591 | Du et al. | Dec 1997 | A |
5710915 | McElhiney | Jan 1998 | A |
5787251 | Hamilton et al. | Jul 1998 | A |
5797136 | Boyer et al. | Aug 1998 | A |
5822748 | Cohen et al. | Oct 1998 | A |
5832477 | Bhargava et al. | Nov 1998 | A |
5857180 | Hallmark et al. | Jan 1999 | A |
5905981 | Lawler | May 1999 | A |
5918225 | White et al. | Jun 1999 | A |
5924088 | Jakobsson et al. | Jul 1999 | A |
5963932 | Jakobsson et al. | Oct 1999 | A |
5974408 | Cohen et al. | Oct 1999 | A |
6009265 | Huang et al. | Dec 1999 | A |
6026394 | Tsuchida et al. | Feb 2000 | A |
6044378 | Gladney | Mar 2000 | A |
6061676 | Srivastava et al. | May 2000 | A |
6289334 | Reiner et al. | Sep 2001 | B1 |
6298342 | Graefe et al. | Oct 2001 | B1 |
6339768 | Leung et al. | Jan 2002 | B1 |
6370524 | Witkowski | Apr 2002 | B1 |
6430550 | Leo et al. | Aug 2002 | B1 |
6438558 | Stegelmann | Aug 2002 | B1 |
6438562 | Gupta et al. | Aug 2002 | B1 |
6510422 | Galindo-Legaria et al. | Jan 2003 | B1 |
6529896 | Leung et al. | Mar 2003 | B1 |
6529901 | Chaudhuri et al. | Mar 2003 | B1 |
6535874 | Purcell | Mar 2003 | B2 |
6622138 | Bellamkonda et al. | Sep 2003 | B1 |
6684203 | Waddington et al. | Jan 2004 | B1 |
6694306 | Nishizawa et al. | Feb 2004 | B1 |
6792420 | Chen et al. | Sep 2004 | B2 |
6801905 | Andrei | Oct 2004 | B2 |
6901405 | McCrady et al. | May 2005 | B1 |
6934699 | Haas et al. | Aug 2005 | B1 |
6941360 | Srivastava et al. | Sep 2005 | B1 |
6954776 | Cruanes et al. | Oct 2005 | B1 |
6961729 | Toohey et al. | Nov 2005 | B1 |
6980988 | Demers et al. | Dec 2005 | B1 |
6990503 | Luo et al. | Jan 2006 | B1 |
7031956 | Lee et al. | Apr 2006 | B1 |
7072896 | Lee et al. | Jul 2006 | B2 |
7089225 | Li et al. | Aug 2006 | B2 |
7146360 | Allen et al. | Dec 2006 | B2 |
7167852 | Ahmed et al. | Jan 2007 | B1 |
7184998 | Nica | Feb 2007 | B2 |
7246108 | Ahmed | Jul 2007 | B2 |
7321888 | Day et al. | Jan 2008 | B2 |
7440935 | Day et al. | Oct 2008 | B2 |
7882100 | Andrei | Feb 2011 | B2 |
7925646 | Gao et al. | Apr 2011 | B2 |
8086598 | Lamb et al. | Dec 2011 | B1 |
20010047372 | Gorelik et al. | Nov 2001 | A1 |
20020038313 | Klein et al. | Mar 2002 | A1 |
20020138376 | Hinkle | Sep 2002 | A1 |
20030120825 | Avvari et al. | Jun 2003 | A1 |
20030167258 | Koo et al. | Sep 2003 | A1 |
20040068509 | Garden et al. | Apr 2004 | A1 |
20040068696 | Seyrat et al. | Apr 2004 | A1 |
20040143791 | Ito et al. | Jul 2004 | A1 |
20040148278 | Milo et al. | Jul 2004 | A1 |
20040167904 | Wen et al. | Aug 2004 | A1 |
20040220911 | Zuzarte et al. | Nov 2004 | A1 |
20040220923 | Nica | Nov 2004 | A1 |
20040267760 | Brundage et al. | Dec 2004 | A1 |
20040268305 | Hogg et al. | Dec 2004 | A1 |
20050033730 | Chaudhuri et al. | Feb 2005 | A1 |
20050055382 | Ferrat et al. | Mar 2005 | A1 |
20050076018 | Neidecker-Lutz | Apr 2005 | A1 |
20050149584 | Bourbonnais et al. | Jul 2005 | A1 |
20050187917 | Lawande et al. | Aug 2005 | A1 |
20050198013 | Cunningham et al. | Sep 2005 | A1 |
20050210010 | Larson et al. | Sep 2005 | A1 |
20050234965 | Rozenshtein et al. | Oct 2005 | A1 |
20050278289 | Gauweiler et al. | Dec 2005 | A1 |
20050278616 | Eller | Dec 2005 | A1 |
20050283471 | Ahmed | Dec 2005 | A1 |
20050289125 | Liu et al. | Dec 2005 | A1 |
20060026115 | Ahmed | Feb 2006 | A1 |
20060026133 | Ahmed | Feb 2006 | A1 |
20060041537 | Ahmed | Feb 2006 | A1 |
20060167865 | Andrei | Jul 2006 | A1 |
20060168513 | Coulson et al. | Jul 2006 | A1 |
20060200451 | Kosuru et al. | Sep 2006 | A1 |
20060282423 | Al-Omari et al. | Dec 2006 | A1 |
20070027880 | Dettinger et al. | Feb 2007 | A1 |
20070044012 | Suver et al. | Feb 2007 | A1 |
20070073643 | Ghosh et al. | Mar 2007 | A1 |
20070078812 | Waingold et al. | Apr 2007 | A1 |
20070179947 | Ahmed et al. | Aug 2007 | A1 |
20070219951 | Ahmed et al. | Sep 2007 | A1 |
20070219952 | Ahmed et al. | Sep 2007 | A1 |
20070219969 | Su et al. | Sep 2007 | A1 |
20070219977 | Su et al. | Sep 2007 | A1 |
20080010240 | Zait | Jan 2008 | A1 |
20080033914 | Cherniack et al. | Feb 2008 | A1 |
20080077606 | Fang et al. | Mar 2008 | A1 |
20080120351 | Khaladkar et al. | May 2008 | A1 |
20090055349 | Ahmed | Feb 2009 | A1 |
Entry |
---|
Jonathan Lewis, “Oracle Scratchpad: Left-Deep Trees”, Jan. 24, 2007, available online: http://jonathanlewis.wordpress.com/2007/01/24/left-deep-trees/. |
Simon Stemplinger, “Evaluation of the Use of Static Analysis for Improving Database Schemes”, Oct. 15, 2004. |
Jonathan Lewis, “Oracle Scratchpad: Web Presentation”, Mar. 5, 2007, Slides are appended; available online: http://jonathanlewis.wordpress.com/2007/03/05/web-presentation/. |
Lu et al, “Optimization of Multi-Way Join Queries for Parallel Execution”, 1991. |
Ioannidis et al, “Left-Deep vs. Bushy Trees: An Analysis of Strategy Spaces and Its implications for Query Optimization”, 1991, ACM, pp. 168-177. |
Oracle, “Oracle 91 Database Documentation”, Oracle, Parts A96670-01, A96674-01, A96673-02, 2002, 833 pages. |
Fitzgerald et al., “Special Edition Using Crystal Reports IO”, Que, Chapters 23, 24, 27, 35, Appendix A, Jul. 14, 2004, 170 pages. |
Rankins et al., “Microsoft SQL Server 2000 Unleashed,” Second Edition, Sams, Chapters 3, 4, 5, 6, 36, Dec. 18, 2002, 109 pages. |
Bergsten, et al., “Prototyping DBS3 a Shared-Memory Parallel Database System”, IEEE 818622954, 226-234, 1991, pp. 226-234. |
Bhide, Anupam, “An Analysis of Three Transaction Processing Architectures”, Computer Science Division, UC Berkeley, Proceeding of the 14th VLDB Conference,1998, pp. 339-350. |
Copeland, George et al., “Data Placement in Bubba,” ACM 0897912683, 1988, pp. 99-108. |
Dayal, Umeshwar, “Of Nests and Trees: A Unified Approach to Processing Queries That Contain Nested Subqueries, Aggregates and Quantifiers”, Proceedings of the 13th VLDB Conference, Brighton 1987, pp. 197-208. |
Dewitt, et al., “A Performance Analysis of the Gamma Database Machine,” Computer Sciences Department, University of Wisconsin, 1988, pp. 350-360. |
Englert, Susan et al., “A Benchmark of NonStop SQL Release 2 Demonstrating Near-Linear Speedup and Scaleup on Large Databases”, Technical Report 89.4, Tandem Part No. 27469, May 1989, pp. 1-23. |
Graefe, Goetz, “Encapsulation of Parallelism in the Volcano Query Processing System,” Mar. 1990, pp. 102-111. |
Hirano, et al., “Load Balancing Algorithm for Parallel Processing on Shared Memory Multiprocessor”, IEEE, pp. 210-217, 1991. |
Hong, et al., “Optimization of Parallel Query Execution Plans in XPRS”, Proceedings of the First International Conference on Parallel and Distributed Information Systems, IEEE, 1991, pp. 218-225. |
Leverenz et al., “Oracle 8i Concepts Release 8.1.5-A67781-01”, Oracle Corporation, Feb. 1999, located on the internet at <http://www.csee.umbc.edu/help/oracle8/server.815/a67781/toc.htm>, 122 pages. |
Pirahesh, Hamid, et al., “Extensible/Rule Base Query Rewrite Optimization in Starburst”, IBM Almaden Research Center, 1992. |
Selinger, P. Griffiths, et al., “Access Path Selection in a Relational Database Management System”, Proceedings of the 1979 ACM SIGMOD International Conference on the Management of Data, 1979, pp. 23-34. |
Stonebraker, Michael, et al. “The Design of XPRS,” Proceedings of the 14th VLDB Conference, 1988, pp. 318-330. |
Tandem, “A Benchmark of NonStop SQL on the Debit Credit Transaction”, The Tandem Performance Group, 1988, pp. 337-341. |
George Lumpkin, Hakan Jakobsson, “Query Optimization in Oracle 9i”, Oracle Corporation, Oracle White Paper, Feb. 2002, pp. 1-30. |
Umeshwar Dayal, “Of Nests and Trees: A Unified Approach to Processing Queries That Contain Nested Subqueries, Aggregates and Quantifiers”, Proceedings of the 13th VLDB Conference, Brighton 1987, pp. 197-208. |
P. Griffiths Selinger, M.M. Astrahan, D.D. Chamberlin, R.A. Lorie, T.G. Price, “Access Path Selection in a Relational Database Management System”, Proceedings of the 1979 ACM SIGMOD International Conference on the Management of Data, 1979, pp. 23-34. |
Gail Erickson, author. Microsoft TechNet. Improving Performance with SQL Server 2000 Indexed Views. Microsoft Corp. Sep. 2000. |
Cesar Galindo-Legaria & Arnon Rosenthal. Outerjoin Simplification and Reordering for Query Optimization. ACM 1997. |
Praveen Seshadri et al. Cost-Based Optimization for Magic: Algebra and Implementation. SIGMOD Jun. '96. ACM 1996. |
M. Muralikrishna. Improved Unnesting Algorithms for Join Aggregate SQL Queries. 18th VLDB Conference. Canada, 1992. |
Rafi Ahmed et al., “Cost-Based Query Transformation in Oracle,” Copyright 2006 VLDB, ACM 1595933859, pp. 1026-1036. |
Alin Deutsch et al. Minimization and Group-by Detection for Nested Xqueries. University of California, San Diego. Pub. 2003. |
Surajit Chaudhuri et al. Including Group-by in Query Optimization. Hewlett-Packard Laboratories. 20th VLDB Conference. Chile, 1994. |
Priti Mishra et al. Join Processing in Relational Databases. ACM Computing Surveys. Mar. 1992. |
Author: John Hayu. Analytic SQL Features in Oracle9i. An Oracle Technical White Paper. Dec. 2001. |
Oracle 8i Tuning Release 8.1.5 A67775-01. Optimizer Modes, Plans Stablility, and Hints. Oracle Website. Copyright 1999. |
Deutsch, Alin et al., “Minimization and Group-By Detection for Nested XQueries”, University of California, San Diego, 2003, 15 pages. |
Dehaan, David, “A Rewriting Algorithm for Multi-Block Aggregation Queries and Views using Prerequisites and Compensations”, University of Waterloo, Canada, Technical Report CS-2004-25, May 3, 2004, 39 pages. |
Chaudhuri, Surajit, “An Overview of Query Optimization in Relational Systems”, Microsoft Research, 1998, 10 pages. |
Muralikrishna, M., “Improved Unnesting Algorithms for Join Aggregate SQL Queries”, VLDB Conference, Canada, 1992, 12 pages. |
Hayu, John, “Analytic SQL Features in Oracle9i”, An Oracle Technical White Paper, Dec. 2001, 32 pages. |
Oracle, “Optimizer Modes, Plans Stability, and Hints”, Oracle8i Tuning Release 8.1.5 A67775-01, Oracle Website, 1999, 54 pages. |
Chen, et al., “View merging in the context of view selection changing”, Database Engineering and Applications Symposium 2002, Proceedings, Jul. 2002, 10 pages. |
Li, C. et al., “Minimizing View Sets without Losing Query-Answering Power” 2001, Springer, pp. 99-113. |
Mumick, I. et al., “Maintenance of Data Cubes and Summary Tables in a Warehouse”, ACM 1997, pp. 100-111. |
Rafi Ahmed, “Affidavit of Rafi Ahmed”, dated Feb. 8, 2010, 3 pages. |
Response to Office Action, U.S. Appl. No. 11/237,040, submitted Feb. 10, 2010, 20 pages. |
Number | Date | Country | |
---|---|---|---|
20090112793 A1 | Apr 2009 | US |