US20040039729A1 - Metadata manager for database query optimizer - Google Patents

Metadata manager for database query optimizer Download PDF

Info

Publication number
US20040039729A1
US20040039729A1 US10/224,135 US22413502A US2004039729A1 US 20040039729 A1 US20040039729 A1 US 20040039729A1 US 22413502 A US22413502 A US 22413502A US 2004039729 A1 US2004039729 A1 US 2004039729A1
Authority
US
United States
Prior art keywords
metadata
optimizer
data source
database
refined
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US10/224,135
Other versions
US6996556B2 (en
Inventor
Curtis Boger
John Edwards
Randy Egan
Michael Faunce
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Alibaba Group Holding Ltd
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US10/224,135 priority Critical patent/US6996556B2/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: EDWARDS, JOHN FRANCIS, BOGER, CURTIS NEAL, EGAN, RANDY LYNN, FAUNCE, MICHAEL S.
Publication of US20040039729A1 publication Critical patent/US20040039729A1/en
Application granted granted Critical
Publication of US6996556B2 publication Critical patent/US6996556B2/en
Assigned to ALIBABA GROUP HOLDING LIMITED reassignment ALIBABA GROUP HOLDING LIMITED ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: INTERNATIONAL BUSINESS MACHINES CORPORATION
Assigned to ALIBABA GROUP HOLDING LIMITED reassignment ALIBABA GROUP HOLDING LIMITED ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: INTERNATIONAL BUSINESS MACHINES CORPORATION
Assigned to ALIBABA GROUP HOLDING LIMITED reassignment ALIBABA GROUP HOLDING LIMITED ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: INTERNATIONAL BUSINESS MACHINES CORPORATION
Adjusted expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2455Query execution
    • G06F16/24552Database cache management
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2453Query optimisation
    • G06F16/24534Query rewriting; Transformation
    • G06F16/24542Plan optimisation
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99933Query processing, i.e. searching

Definitions

  • the invention relates to database management systems, and in particular, to database query optimizers utilized in such systems.
  • Databases are used to store information for an innumerable number of applications, including various commercial, industrial, technical, scientific and educational applications. As the reliance on information increases, both the volume of information stored in most databases, as well as the number of users wishing to access that information, likewise increases. Moreover, as the volume of information in a database, and the number of users wishing to access the database, increases, the amount of computing resources required to manage such a database increases as well.
  • Database management systems which are the computer programs that are used to access the information stored in databases, therefore often require tremendous resources to handle the heavy workloads placed on such systems. As such, significant resources have been devoted to increasing the performance of database management systems with respect to processing searches, or queries, to databases.
  • Improvements to both computer hardware and software have improved the capacities of conventional database management systems. For example, in the hardware realm, increases in microprocessor performance, coupled with improved memory management systems, have improved the number of queries that a particular microprocessor can perform in a given unit of time. Furthermore, the use of multiple microprocessors and/or multiple networked computers has further increased the capacities of many database management systems.
  • relational databases which organize information into formally-defined tables consisting of rows and columns, and which are typically accessed using a standardized language such as Structured Query Language (SQL), has substantially improved processing efficiency, as well as substantially simplified the creation, organization, and extension of information within a database.
  • SQL Structured Query Language
  • significant development efforts have been directed toward query “optimization,” whereby the execution of particular searches, or queries, is optimized in an automated manner to minimize the amount of resources required to execute each query.
  • An optimizer's job is often necessary and difficult because of the enormous number (i.e., “countably infinite” number) of possible query forms that can be generated in a database management system, e.g., due to factors such as the use of SQL queries with any number of relational tables made up of countless data columns of various types, the theoretically infinite number of methods of accessing the actual data records from each table referenced (e.g., using an index, a hash table, etc.), the possible combinations of those methods of access among all the tables referenced, etc.
  • An optimizer is often permitted to rewrite a query (or portion of it) into any equivalent form, and since for any given query there are typically many equivalent forms, an optimizer has a countably infinite universe of extremely diverse possible solutions (plans) to consider.
  • an optimizer is often required to use minimal system resources given the desirability for high throughput. As such, an optimizer often has only a limited amount of time to pare the search space of possible execution plans down to an optimal plan for a particular query.
  • a typical optimization process often involves numerous mathematical calculations in order to estimate the amount of processing resources required to execute a query using a particular access plan, often referred to as the “cost” of the access plan.
  • a cost is usually expressed in some unit of time, and an optimizer typically works by calculating the cost for each plan, then comparing each plan to the other available options and choosing the best (or most efficient) plan, a process often referred to as “costing.”
  • the statistical information about the values in columns of tables is referred to as metadata, which can be used to help an optimizer find answers to an innumerable number of questions, including but not limited to questions such as:
  • One problem associated with incorporating metadata handling functionality in an optimizer is due to the lack of flexibility in optimally processing metadata during costing operations.
  • collecting and refining metadata can be performed in a number of different manners, and new algorithms for performing such operations are continuously being developed.
  • an optimizer is hard coded with specific algorithms for collecting and refining metadata.
  • the introduction of a new algorithm into an optimizer would typically require extensive changes to the optimizer, so it is unlikely that a particular optimizer design will use the most efficient and up-to-date algorithms to handle metadata.
  • a filter factor used to do estimates of how many records part of query will return, a process that is often critical in deciding, for example, in what order to join multiple files.
  • filter factors There are many ways for such filter factors to be determined based on raw statistics and other data; for the purposes of optimization, however, those methods should be irrelevant.
  • the optimizer simply wants to know what to use for a filter factor; it should not have to be concerned with how to construct one. Nonetheless, conventional optimizer designs are often limited to one particular method of calculating a filter factor.
  • the optimization of a single query may be a long-running process, during which the contents and other characteristics of the involved database files may change.
  • each optimizer instance desirably would use consistent values for its metadata, no matter how many times the same columns and combinations are used in cost estimation.
  • some optimizers attempt to keep track of these values themselves, which adds unnecessary complexity to their logic.
  • Other optimizers ignore the problem altogether, often resulting in inexplicable and unreproducible cost estimate differences.
  • the invention addresses these and other problems associated with the prior art by providing an apparatus, program product and method in which a “metadata manager” is used to collect metadata associated with a database, and to supply such metadata to multiple optimizer instances that generate execution plans for associated queries.
  • a “metadata manager” is used to collect metadata associated with a database, and to supply such metadata to multiple optimizer instances that generate execution plans for associated queries.
  • operations such as collecting, refining, retrieving and/or maintaining of metadata can be off-loaded from the optimizer instances, often accelerating individual cost estimation calculations by optimizer instances, facilitating reuse of metadata calculations and refinements among the various optimizer instances, and improving metadata consistency between multiple related cost estimates.
  • FIG. 1 is a block diagram of a networked computer system incorporating a database management system incorporating metadata management consistent with the invention.
  • FIG. 2 is a block diagram illustrating the principal components and flow of information therebetween in the database management system of FIG. 1.
  • FIG. 3 is a block diagram illustrating the principal components in the optimizer and metadata manager referenced in FIG. 2.
  • FIG. 4 is a block diagram illustrating the principal components in each data source cache referenced in FIG. 3.
  • FIG. 5 is a block diagram illustrating an exemplary expression of the type capable of being constructed by an optimizer instance in the data source cache of FIG. 4.
  • FIG. 6 is a flowchart illustrating the interaction between an optimizer instance and a metadata context from the metadata manager of FIG. 2 during optimization of a query in a manner consistent with the invention.
  • FIG. 7 is a flowchart illustrating the program flow of the get DAD's routine executed by a metadata context and referenced in FIG. 6.
  • FIG. 8 is a flowchart illustrating the program flow of the get metadata routine executed by a metadata context and referenced in FIG. 6.
  • FIG. 9 is a flowchart illustrating the program flow of the get metadata for expression routine executed by a metadata context and referenced in FIG. 8.
  • FIG. 10 is a block diagram illustrating the handling of a set of exemplary queries using the metadata manager of FIG. 2.
  • a metadata manager may be configured to handle the tasks of collecting, refining, retrieving and/or maintaining metadata for one or more databases, thus off-loading responsibility for such tasks from individual optimizers or optimizer instances that make use of that metadata.
  • the overhead associated with generating cost estimates for each individual query optimization is often reduced.
  • metadata consistency and reuse is substantially improved.
  • improvements to metadata collection, refinement and maintenance algorithms may be implemented within a metadata manager without requiring modification of optimizer program code.
  • Metadata with respect to a database, may be considered to include practically any information that characterizes the data within a database, e.g., information about the database structure, as well as the specific values, distributions of values, and sizes for the various columns and rows in the tables, files or other data structures within a database.
  • a metadata manager consistent with the invention may be used in connection with a wide variety of database architectures, including relational databases, object-oriented databases, etc.
  • an “instance” of an optimizer may refer to any number of programming constructs, including separate optimizer programs, or threads within a single optimizer program, capable of accessing the same database.
  • multiple instances or optimizers need not be identically configured to one another, and indeed, an instance of an optimizer may refer to the operation of the same optimizer program code in processing multiple queries, either in parallel or serially.
  • multiple optimizer instances may refer to the sequential processing of multiple queries by the same optimizer program. The invention is therefore not limited to the specific implementations discussed herein.
  • FIG. 1 illustrates an exemplary hardware and software environment for an apparatus 10 suitable for implementing a database management system incorporating metadata management consistent with the invention.
  • apparatus 10 may represent practically any type of computer, computer system or other programmable electronic device, including a client computer, a server computer, a portable computer, a handheld computer, an embedded controller, etc.
  • apparatus 10 may be implemented using one or more networked computers, e.g., in a cluster or other distributed computing system.
  • Apparatus 10 will hereinafter also be referred to as a “computer,” although it should be appreciated the term “apparatus” may also include other suitable programmable electronic devices consistent with the invention.
  • Computer 10 typically includes a central processing unit (CPU) 12 including one or more microprocessors coupled to a memory 14 , which may represent the random access memory (RAM) devices comprising the main storage of computer 10 , as well as any supplemental levels of memory, e.g., cache memories, non-volatile or backup memories (e.g., programmable or flash memories), read-only memories, etc.
  • memory 14 may be considered to include memory storage physically located elsewhere in computer 10 , e.g., any cache memory in a processor in CPU 12 , as well as any storage capacity used as a virtual memory, e.g., as stored on a mass storage device 16 or on another computer coupled to computer 10 .
  • Computer 10 also typically receives a number of inputs and outputs for communicating information externally.
  • computer 10 typically includes a user interface 18 incorporating one or more user input devices (e.g., a keyboard, a mouse, a trackball, a joystick, a touchpad, and/or a microphone, among others) and a display (e.g., a CRT monitor, an LCD display panel, and/or a speaker, among others).
  • user input may be received via another computer or terminal, e.g., via a client or single-user computer 20 coupled to computer 10 over a network 22 .
  • This latter implementation may be desirable where computer 10 is implemented as a server or other form of multi-user computer.
  • computer 10 may also be implemented as a standalone workstation, desktop, or other single-user computer in some embodiments.
  • computer 10 typically includes one or more mass storage devices 16 , e.g., a floppy or other removable disk drive, a hard disk drive, a direct access storage device (DASD), an optical drive (e.g., a CD drive, a DVD drive, etc.), and/or a tape drive, among others.
  • mass storage devices 16 e.g., a floppy or other removable disk drive, a hard disk drive, a direct access storage device (DASD), an optical drive (e.g., a CD drive, a DVD drive, etc.), and/or a tape drive, among others.
  • computer 10 may also include an interface 24 with one or more networks 22 (e.g., a LAN, a WAN, a wireless network, and/or the Internet, among others) to permit the communication of information with other computers and electronic devices.
  • networks 22 e.g., a LAN, a WAN, a wireless network, and/or the Internet, among others
  • computer 10 typically includes suitable analog and/or
  • Computer 10 operates under the control of an operating system 26 , and executes or otherwise relies upon various computer software applications, components, programs, objects, modules, data structures, etc. (e.g., a database management system (DBMS) 28 shown resident in memory 14 , and database 30 shown resident in mass storage 16 , among others).
  • DBMS database management system
  • various applications, components, programs, objects, modules, etc. may also execute on one or more processors in another computer coupled to computer 10 via a network, e.g., in a distributed or client-server computing environment, whereby the processing required to implement the functions of a computer program may be allocated to multiple computers over a network.
  • routines executed to implement the embodiments of the invention will be referred to herein as “computer program code,” or simply “program code.”
  • Program code typically comprises one or more instructions that are resident at various times in various memory and storage devices in a computer, and that, when read and executed by one or more processors in a computer, cause that computer to perform the steps necessary to execute steps or elements embodying the various aspects of the invention.
  • signal bearing media include but are not limited to recordable type media such as volatile and non-volatile memory devices, floppy and other removable disks, hard disk drives, magnetic tape, optical disks (e.g., CD-ROMs, DVDs, etc.), among others, and transmission type media such as digital and analog communication links.
  • FIG. 1 Those skilled in the art will recognize that the exemplary environment illustrated in FIG. 1 is not intended to limit the present invention. Indeed, those skilled in the art will recognize that other alternative hardware and/or software environments may be used without departing from the scope of the invention.
  • embodiments consistent with the invention incorporate metadata management functionality into a database management system to facilitate the collection, refinement, retrieval and maintenance of the metadata utilized by an optimizer in optimizing database queries.
  • database management system 28 As shown in FIG. 2, for example, an exemplary implementation of database management system 28 is shown.
  • the principal components of database management system 28 that are generally relevant to query optimization are an SQL parser 40 , optimizer 42 and database engine 44 .
  • SQL parser 40 receives from a user a database query 46 , which in the illustrated embodiment, is provided in the form of an SQL statement. SQL parser 40 then generates a parsed statement 48 therefrom, which is passed to optimizer 42 for query optimization.
  • an execution or access plan 50 is generated. Once generated, the execution plan is forwarded to database engine 44 for execution of the database query on the information in database 30 .
  • the result of the execution of the database query is typically stored in a result set, as represented at block 52 .
  • Metadata management in the embodiment of FIG. 2 is centralized within a metadata manager subsystem 54 in the database management system.
  • metadata is collected from database 30 by metadata manager 54 and provided upon request to optimizer 42 in connection with the optimization of database queries.
  • additional metadata may be directly accessed from database 30 by optimizer 42 during optimization of a database query in some circumstances, e.g., where there is no anticipation that the metadata has any use in connection with any other optimizations currently or thereafter being performed by the optimizer.
  • FIG. 3 illustrates the primary components in metadata manager 54 for implementing the herein-described metadata management functionality.
  • metadata manager 54 has two principal functions, that of managing the collection, refinement, etc., of metadata from database 30 (as represented at block 56 ), and that of servicing requests for the metadata from the optimizer (as represented at block 58 ).
  • the servicing of requests may also be considered to be a form of client access management, as the optimizer and its instances are analogous in many respects to clients for metadata, while the metadata manager is analogous to a server for metadata.
  • Metadata manager 54 includes a metadata collector component 60 , and an optional metadata repository 62 that is configured to store refined and/or unrefined metadata for use by the metadata manager in supplying metadata to the optimizer. Metadata is generally collected by the metadata collector via requests issued to the database 30 , which generally results in the retrieval of “unrefined” metadata, that is, raw statistical information from the database.
  • Metadata contexts 64 individually provide interfaces for specific optimizer instances 68 resident in optimizer 42 .
  • metadata contexts are dedicated or bound to individual optimizer instances. It is thus through interaction between an optimizer instance and its associated metadata context that metadata is supplied to the optimizer instance by the metadata manager.
  • the multiple metadata contexts 64 are used to establish relationships between the optimizer instances 68 and a plurality of data source caches 66 .
  • Each data source cache 66 is configured to temporarily store metadata associated with a particular data source, e.g., a particular table or file in the database.
  • data source caches 66 are accessible by multiple metadata contexts, thus permitting multiple optimizer instances to access the metadata stored in a particular data source cache.
  • a data source cache 66 in the illustrated embodiment typically includes one or more data access descriptors (DAD's) 70 and one or more expressions 72 .
  • Data access descriptors are used to provide an optimizer with the necessary metadata information regarding a particular path to some data in the data source.
  • Expressions are used to specify particular questions to be evaluated during costing by an optimizer.
  • At least a portion of the metadata needed by an optimizer in performing cost estimates cannot be obtained directly from a database, but must be processed, or refined, to some extent prior to use by an optimizer.
  • Such metadata may be referred to as “refined” metadata. It is important to note, however, that typically the collection, refinement and source of origin for refined metadata is irrelevant to an optimizer, and as such, the separation of these operations from individual optimizer instances enables the optimizer to request metadata in the abstract, without having to deal specifically with how to obtain such metadata.
  • Filter Factor represents, for a given expression from the optimizer, the percentage of total records that would be selected by applying the expression (and its children) to the current contents of the tables described by a particular access method.
  • Distinct Row Count represents, for a given expression, the number of distinct records that would result from applying the expression to a set of possible rows from a data source. In the simplest form, where the expression is a simple column operand, the distinct row could is just the cardinality of that column.
  • Access characteristics are packages of metrics (measurements) that can be associated with an expression as satisfied by particular access paths assigned to a data source. Possible components include, for example, the total keys probed, the number of ranges, the number of keys selected, the number of access path random I/Os, the number of access path sequential I/Os, the number of dataspace random I/Os, the number of sequential dataspace I/Os, etc.
  • optimizer metadata may also include attributes such as an “aging” stamp, or a value representing the theoretical degree of error in the numeric values.
  • a data access descriptor may be used to represent in an abstract form, all and only such information required by the optimizer about a particular path to some data (such as index).
  • This approach has several advantages over conventional optimizers.
  • the optimizer need not be concerned with what kind of access a DAD represents, be it an index, a temporary data set, etc.
  • the cost estimate generation process may be simpler from the optimizer's perspective.
  • the optimizer can use the DAD general abstraction during costing operations rather than being concerned with specific access path types.
  • a DAD is simply an abstract representation of a path or data access method
  • the access path (index or other) does not even have to exist in some implementations, and the optimizer can be oblivious to this fact as well. Doing so permits an optimizer to do “what-if” scenarios, where the optimizer can cost plans that would potentially use that path if it did exist, which can allow one to see the effects of creating an index, for example, without actually having to create it.
  • a DAD may represent any number of access methods, including relational tables, subsets of the columns of tables, indexes over tables, hash tables, etc.
  • a DAD may include various attributes depending upon the type of access method being represented, including but not limited to: ordered record information (keys, ascending or descending sort, columns involved, etc.), number of rows, average I/O cost for row access, list of dependent DAD's, etc.
  • a data source is an abstraction that represents to the optimizer a potential stream of database records (tuples) at run time.
  • the metadata manager constructs and maintains data source cache (DSC) instances as temporary holding places for metadata specific to a snapshot in time for that data source.
  • DSC data source cache
  • each DSC has two principal roles.
  • a DSC acts as a system wide “fast access” holding place for DAD's and expressions as built from optimizer requests, complete with their corresponding optimizer metadata.
  • a DSC provides a consistent image of the metadata that originated from a particular data source.
  • a DSC typically includes descriptive information for the data source (file or other object), along with representations of all access paths (indexes) that exist for that data source (at the point in time that the cache was constructed), which provides consistency and reproducibility for cost calculations.
  • Data source caches may be configured to ensure that this information remains unchanged while an instance of the DSC is in existence, even if the underlying information from the data source changes during the process of optimization of a query.
  • each DAD instance is associated with exactly one data source cache, so a) together they may provide a consistent quantitative view of the data sources throughout optimization, and b) their optimizer metadata can be used by multiple optimizer instances in order to take advantage of calculations already done.
  • a DSC therefore provides a common anchor point for all requests about the underlying data in any file being queried, since it returns the same answer in cases where the same request is made repeatedly. The decisions made when comparing different access plans will be made from “snapshots” of the underlying data, and the optimizer will have a consistent basis for making comparisons.
  • the instance may be marked obsolete, which will cause the instance to acquire no new users (i.e., contexts).
  • the metadata manager e.g., via a process similar to garbage collection.
  • a metadata context is used to maintain a relationship between an optimizer instance and the data source caches for which the optimizer wants metadata.
  • the term “context” is appropriate because this mechanism typically defines the “domain” or “environment” that the optimizer instance will run in with respect to the metadata it requires.
  • a context Once a particular context has been established by an optimizer instance, its primary role is to construct and manage DSC's as required to provide a “pool” of consistent answers to the specific metadata requests made by that optimizer instance—even as the underlying information might be changing.
  • Each DAD constructed via a context ties that DAD to a particular DSC.
  • a context may be tied to multiple DSC's (as multiple files may be referenced in a query), but for any data source, a context typically uses one and only one DSC to retrieve information from which to compute and return optimizer metadata.
  • DSC's are scoped globally, and not to a particular context, so that multiple optimizer instances may be tied to the same DSC.
  • Each context can add new expressions to the DSC, and/or reuse expression that have already been built by itself or by others.
  • the corresponding optimizer metadata is stored with these expressions, making it quickly available to subsequent requesters.
  • the first interface type allows a client (optimizer instance) to identify the sources of data in which it is interested, returning data access descriptions (DAD's) for each, so the client will be able to glean access characteristics about the data sources.
  • DAD's data access descriptions
  • the second interface type allows a client to build expressions that embody questions about specified data sources.
  • these expression building methods manufacture and assemble individual elements into a tree-like relationship. After asking the context to assemble an expression, the client can then use methods on that expression to find how it affects access to its data source.
  • the metadata manager may also define expressions to be used on requests for certain optimizer metadata (such as Filter Factor and Access Characteristics).
  • expressions represent the database entities (fields, literals, tables, etc.) and their relationships to each other as specified in part of a query.
  • the metadata manager is typically responsible for evaluating a given expression in light of the questions being asked, which may occur in different ways based on what request was made of the metadata.
  • metadata results of an expression are cached with the expression once calculated on behalf of an optimizer instance, so that later attempts to evaluate an expression by the same or a different optimizer instance may simply result in the previously-calculated metadata results being returned to the requesting client.
  • expressions include two subspecies, operands and operators, which are arranged by the optimizer into a tree or graph of parent-child relationships.
  • An expression is said to “provide a value.” If it has no operators, the expression is the value. Otherwise, the value is the result of applying the operator to its operands—which are themselves expressions.
  • a predicate is defined as a conditional operator which when applied to other expressions can be evaluated as either true or false. The top expression in a tree is typically always a predicate (i.e., returns true or false).
  • expressions may be used to represent portions of the WHERE and HAVING predicates from a query, since the optimizer has a need to find out how selective these predicates are in order to do things like change the order of files being joined.
  • Column Represents a database column (field). Column expressions indicate to which DAD they belong. Note that the column does not have to exist in a real file, it might be from a temporary result set or a hypothetical table.
  • Relational Operator Operators that return true or false (e.g., various comparisons).
  • Logical Operator Binary logical connective operators such as AND and OR whose result is true or false. Their operand(s) typically must be of type Boolean.
  • the WHERE qualifier of this query may be represented as an expression and evaluated by the metadata manager in response to an optimizer instance request so as to provide metadata to the optimizer instance that is reflective of how many rows will likely match the query.
  • One suitable implementation of such an expression as a tree structure 72 is shown in FIG. 5.
  • a pair of AND logical expressions 74 , 76 , a set of “greater than” relational expressions 78 , 80 and 82 , a set of column expressions 84 , 86 and 88 , and a set of literal expressions 90 , 92 and 94 may be used. Expressions may therefore be constructed of other expressions.
  • Expressions are typically constructed by optimizer instances, then passed to metadata contexts for evaluation.
  • the metadata for an expression that is returned to an optimizer instance by a metadata context may be attached to the original expression object, or may be represented in a separate data structure.
  • the metadata may be associated with a time stamp for use in identifying the “freshness” of the metadata.
  • FIG. 6 next illustrates the program flow occurring during optimization of a query in database management system 28 , additionally illustrating the interaction between an optimizer instance and a metadata context in a metadata manager during such processing.
  • an optimizer instance in response to a request to optimize a query, an optimizer instance will be instantiated in the optimizer to process the query, the query typically taking the form of a parsed statement as described above in connection with FIG. 2.
  • the optimizer instance initially examines the parsed statement, in a manner generally known in the art.
  • the optimizer instance requests a metadata context from the metadata manager.
  • a metadata context object which is initialized in block 108 to bind the metadata context to the optimizer instance.
  • the instantiated metadata context serves as the interface for the optimizer instance with the metadata manager.
  • the optimizer instance then builds a list of tables in the database about which metadata is required, as shown in block 110 .
  • the list of tables represents the data sources that will be accessed during execution of the query.
  • the optimizer instance requests from the metadata manager a list of data access descriptors (DAD's) for the tables, or data sources, from which metadata is required by the optimizer instance.
  • DAD's data access descriptors
  • the request for the data sources is made upon the metadata context object, which executes a get DAD's routine 114 and returns a list of relevant DAD's to the optimizer instance.
  • block 116 the optimizer instance formulates and builds any required expressions necessary for formulating the execution plan. For example, block 116 may determine whether any WHERE, ORDER BY or other qualifiers are present in a query, and if so, construct expressions that query the database for metadata that is indicative of how such qualifiers will affect the execution of a query. Additional expressions may also be formulated at this time to request other types of metadata, including metadata such as cardinality of columns, numbers of columns and/or rows, etc.
  • the optimizer instance then proceeds to retrieve its required metadata from the metadata manager via the formulated expressions, as shown in block 118 .
  • Requests are issued to the metadata context by the optimizer instance, and are processed by a get metadata routine 120 resident in the metadata manager, resulting in the requested metadata being returned to the optimizer instance via the bound metadata context.
  • the expressions themselves are passed from the optimizer instance to the metadata context for evaluation, and metadata is returned to the optimizer instance by passing the expression back to the optimizer instance with the metadata attached.
  • Other manners of communicating expressions and metadata between an optimizer instance and a metadata context may be used in the alternative.
  • the optimizer instance formulates the execution plan as shown in block 122 , in much the same manner as a conventional optimizer, with the exception that the metadata has been obtained from the metadata manager, rather than being collected and refined directly by the optimizer instance.
  • Formulation of an execution plan is typically an iterative process, including comparisons between competing execution plans to arrive at a most efficient plan.
  • block 124 represents the interactive nature of the plan formulation process, whereby any time additional metadata is required during plan formulation, or any time additional plans need to be formulated for comparison purposes, control is returned to block 116 to formulate any additional required expressions as necessary.
  • block 124 passes control to block 126 to output the formulated execution plan to the database engine, for execution thereby in a manner known in the art.
  • FIG. 7 illustrates one implementation of get DAD's routine 114 in greater detail.
  • Routine 114 is executed by the metadata context, and begins in block 130 by looking for a data source cache with one or more existing DAD's for the next unprocessed data source referenced in the request from the optimizer instance. If an existing DSC and DAD are found, block 132 passes control to block 134 to add any existing DAD's to a return list, whereby control then passes to block 136 to determine whether any unprocessed data sources remain in the request. If so, control returns to block 130 . Otherwise, control passes to block 138 to terminate the routine and return the list of DAD's to the calling optimizer instance.
  • a new data source cache is required, i.e., whether an active data source cache exists for the data source. If a data source cache exists, control passes to block 142 to dynamically construct, or build, one or more new DAD's for the data source (e.g., more than one DAD if multiple indexes or other
  • FIG. 8 illustrates one implementation of get metadata routine 120 in greater detail.
  • Routine 120 is executed by the metadata context, and begins in block 150 by looking for a data source cache with existing metadata for the next unprocessed expression object referenced in the request from the optimizer instance. If existing metadata is found, block 152 passes control to block 154 to store the metadata in the expression object (e.g., by attaching the metadata to the object) for return to the optimizer instance. Control then passes to block 156 to determine whether any unprocessed expression objects remain in the request. If so, control returns to block 150 . Otherwise, control passes to block 158 to terminate the routine and return the expression objects with the metadata requested by the optimizer instance attached thereto.
  • block 160 passes control to block 166 to build a new data source cache, prior to passing control to block 162 .
  • FIG. 9 illustrates one implementation of get metadata for expression routine 162 in greater detail.
  • Routine 162 is executed by the metadata context, and begins in block 170 by checking for existing statistics relevant to the expression being processed. If some or all the necessary statistics are not present and/or if any of the necessary statistics are stale (e.g., have a timestamp earlier than a particular time frame), block 172 passes control to block 174 to trigger the metadata collector to collect and process the necessary or stale statistics in a background process.
  • block 176 determines whether the metadata context should wait for the statistics to be returned by the metadata collector, and if so, passes control to block 178 to wait for the statistics to be returned.
  • an optimizer instance may control whether a metadata context waits for unavailable statistics to be returned, e.g., by setting an attribute in a request. In some instances, it may be desirable for an optimizer instance to simply prime the metadata manager to begin collecting statistics so that the statistics will be available for future optimization instances.
  • blocks 176 and 178 pass control to block 180 to initiate a check for other sources of useful metadata for the particular expression.
  • control is passed directly to block 180 to initiate the check.
  • block 182 combines the collected and pre-existing information (metadata and/or raw statistics) from all of the sources and refines the information into the appropriate metadata for the expression. Control then passes to block 184 to return the refined metadata and terminate routine 162 .
  • the metadata manager is capable of calculating refined metadata from refined and/or unrefined metadata collected from the database by the metadata manager. Moreover, the metadata manager is capable of caching such refined metadata such that subsequent requests to the metadata manager for the same refined metadata (e.g., in response to requests that pass the same or a related expressions thereto) will be processed by returning the cached refined metadata, rather than recalculating the refined metadata.
  • Metadata collector typically operates using one or more background processes to collect statistics, and optionally refine such statistics into refined metadata. Any algorithms conventionally utilized in query optimizers may be used in the metadata collector to retrieve and/or refine metadata used in the manner described herein.
  • FIG. 10 illustrates an exemplary database environment 200 consistent with the invention, subsequent to optimization of three queries 202 , 204 and 206 by a plurality of associated optimizer instances 208 , 210 and 212 .
  • a metadata manager 214 is interposed between the optimizer instances and a database 216 .
  • Metadata manager 214 is illustrated as having a metadata collector object 218 that is utilized to collect and refine metadata in the manner described herein.
  • database 216 is illustrated including a plurality of tables 220 , as well as a plurality of indexes 222 have been created by the database, in a manner known in the art.
  • an optimizer instance 208 is initially executed to generate an execution plan for query 202
  • the optimizer instance would instantiate a metadata context 224 to interface the optimizer with the metadata manager.
  • context 224 would determine whether data source caches existed for either of tables T 1 and T 2 , which are accessed by query 202 . If either data source cache 226 , 228 is not currently active, such a data source cache is dynamically instantiated in the metadata manager by context 224 (see routine 114 of FIG. 7).
  • context 224 may construct a number of data access descriptors 230 , 232 and 234 , as well as a number of expressions such as expressions 236 , 238 .
  • DAD's 240 , 242 and 244 , and expressions 246 and 248 may be constructed within the data source cache, either in connection with processing query 202 , during prior optimizations, or even after processing either of queries 204 , 206 .
  • the data source cache may initially contain no DAD's or expressions, and may need to be dynamically populated with DAD's and expressions as described above. Moreover, it will be appreciated that DAD's will typically be generated for the data source itself, as well as any access paths into the data source, including each available index for the data source.
  • the optimizer instance will generate expressions, e.g., expressions 236 , 238 , 246 and/or 248 as appropriate to access query 202 .
  • optimization of query 204 is handled by optimizer instance 210 , which results in the instantiation of context 250 to provide an interface between the optimizer instance and the metadata manager.
  • query 204 relies on the same data sources as query 202 , and as a result, context 250 may not be required to instantiate new data source caches, but may rely on the existing data source caches 226 and 228 relied upon and used by context 224 .
  • regeneration of metadata specifically required by optimizer instance 210 may not be required, and existing metadata resident in the data source caches 226 , 228 may be returned with reduced processing overhead.
  • the metadata determined may be returned directly to optimizer instance 210 when optimizing query 204 to further reduce the overhead associated with optimizing the query.
  • optimizer instance 212 is illustrated as interfacing with a context 252 , which is associated with both an existing data source cache 228 , as well as a newly-instantiated data source cache 254 that is used solely by context 252 .
  • DAD's 256 , 258 and 260 representing the available access methods to the data source, as well as any expressions 262 , 264 are maintained in data source cache 254 , either as a result of previous optimizations and requests for metadata in association with the data source cache, or as populated into the data source cache by context 252 during optimization of query 206 .

Abstract

A metadata manager is used in a database management system to collect and maintain metadata associated with a database. Multiple optimizer instances are permitted to access the metadata maintained by the metadata manager, often eliminating the need for individual optimizer instances to retrieve and process metadata directly from the database. As such, the overhead associated with operations such as collecting, refining, retrieving and/or maintaining of metadata can be off-loaded from the optimizer instances, often accelerating individual cost estimation calculations by optimizer instances, facilitating reuse of metadata calculations and refinements, and improving metadata consistency between multiple related cost estimates.

Description

    FIELD OF THE INVENTION
  • The invention relates to database management systems, and in particular, to database query optimizers utilized in such systems. [0001]
  • BACKGROUND OF THE INVENTION
  • Databases are used to store information for an innumerable number of applications, including various commercial, industrial, technical, scientific and educational applications. As the reliance on information increases, both the volume of information stored in most databases, as well as the number of users wishing to access that information, likewise increases. Moreover, as the volume of information in a database, and the number of users wishing to access the database, increases, the amount of computing resources required to manage such a database increases as well. [0002]
  • Database management systems (DBMS's), which are the computer programs that are used to access the information stored in databases, therefore often require tremendous resources to handle the heavy workloads placed on such systems. As such, significant resources have been devoted to increasing the performance of database management systems with respect to processing searches, or queries, to databases. [0003]
  • Improvements to both computer hardware and software have improved the capacities of conventional database management systems. For example, in the hardware realm, increases in microprocessor performance, coupled with improved memory management systems, have improved the number of queries that a particular microprocessor can perform in a given unit of time. Furthermore, the use of multiple microprocessors and/or multiple networked computers has further increased the capacities of many database management systems. [0004]
  • From a software standpoint, the use of relational databases, which organize information into formally-defined tables consisting of rows and columns, and which are typically accessed using a standardized language such as Structured Query Language (SQL), has substantially improved processing efficiency, as well as substantially simplified the creation, organization, and extension of information within a database. Furthermore, significant development efforts have been directed toward query “optimization,” whereby the execution of particular searches, or queries, is optimized in an automated manner to minimize the amount of resources required to execute each query. [0005]
  • Through the incorporation of various hardware and software improvements, many high performance database management systems are able to handle hundreds or even thousands of queries each second, even on databases containing millions or billions of records. However, further increases in information volume and workload are inevitable, so continued advancements in database management systems are still required. [0006]
  • One area that has been a fertile area for academic and corporate research is that of improving the designs of the “query optimizers” utilized in many conventional database management systems. The primary task of a query optimizer is to choose the most efficient way to execute each database query, or request, passed to the database management system by a user. The output of an optimization process is typically referred to as an “execution plan,” “access plan,” or just “plan.” Such a plan typically incorporates (often in a proprietary form unique to each optimizer/DBMS) low-level information telling the database engine that ultimately handles a query precisely what steps to take (and in what order) to execute the query. Also typically associated with each generated plan is an optimizer's estimate of how long it will take to run the query using that plan. [0007]
  • An optimizer's job is often necessary and difficult because of the enormous number (i.e., “countably infinite” number) of possible query forms that can be generated in a database management system, e.g., due to factors such as the use of SQL queries with any number of relational tables made up of countless data columns of various types, the theoretically infinite number of methods of accessing the actual data records from each table referenced (e.g., using an index, a hash table, etc.), the possible combinations of those methods of access among all the tables referenced, etc. An optimizer is often permitted to rewrite a query (or portion of it) into any equivalent form, and since for any given query there are typically many equivalent forms, an optimizer has a countably infinite universe of extremely diverse possible solutions (plans) to consider. On the other hand, an optimizer is often required to use minimal system resources given the desirability for high throughput. As such, an optimizer often has only a limited amount of time to pare the search space of possible execution plans down to an optimal plan for a particular query. [0008]
  • A typical optimization process often involves numerous mathematical calculations in order to estimate the amount of processing resources required to execute a query using a particular access plan, often referred to as the “cost” of the access plan. A cost is usually expressed in some unit of time, and an optimizer typically works by calculating the cost for each plan, then comparing each plan to the other available options and choosing the best (or most efficient) plan, a process often referred to as “costing.”[0009]
  • Nearly all computations involved in a costing process are based on statistical information about the values in particular columns of data in the files (or tables) referenced in a query, and as such a costing process is necessarily probabilistic in nature since the only way to know such information with 100% certainty is to run the query. Doing so would be foolish, since a) there are countless possible plans to try, and b) the whole purpose of the optimizer is to generate the best way to run the query a priori. [0010]
  • The statistical information about the values in columns of tables is referred to as metadata, which can be used to help an optimizer find answers to an innumerable number of questions, including but not limited to questions such as: [0011]
  • How many rows will be selected by a given WHERE clause (without regard to which access path or plan is chosen)?[0012]
  • How many random I/O and/or sequential I/Os will occur if a given access path is used to evaluate a given row selection?[0013]
  • How many groups will be produced for a given grouping expression?[0014]
  • How many distinct values will be found in the result set defined with a given select list expression, group by expression, and selection expression?[0015]
  • Conventional optimizers typically contain all aspects of such metadata, including their source (statistics collection, index statistics, etc.), type of data collection (e.g., random sample-based histogram), and the complexity of manipulating this raw information into metadata that can be directly used by the optimizer in its costing work. [0016]
  • One problem associated with incorporating metadata handling functionality in an optimizer is due to the lack of flexibility in optimally processing metadata during costing operations. In particular, collecting and refining metadata can be performed in a number of different manners, and new algorithms for performing such operations are continuously being developed. However, typically an optimizer is hard coded with specific algorithms for collecting and refining metadata. The introduction of a new algorithm into an optimizer would typically require extensive changes to the optimizer, so it is unlikely that a particular optimizer design will use the most efficient and up-to-date algorithms to handle metadata. [0017]
  • As an example, some optimizers use a type of metadata referred to as a “filter factor” to do estimates of how many records part of query will return, a process that is often critical in deciding, for example, in what order to join multiple files. There are many ways for such filter factors to be determined based on raw statistics and other data; for the purposes of optimization, however, those methods should be irrelevant. The optimizer simply wants to know what to use for a filter factor; it should not have to be concerned with how to construct one. Nonetheless, conventional optimizer designs are often limited to one particular method of calculating a filter factor. [0018]
  • In addition, the optimization of a single query (referred to herein as an optimizer instance) may be a long-running process, during which the contents and other characteristics of the involved database files may change. To ensure consistent costing results, each optimizer instance desirably would use consistent values for its metadata, no matter how many times the same columns and combinations are used in cost estimation. To address this concern, some optimizers attempt to keep track of these values themselves, which adds unnecessary complexity to their logic. Other optimizers ignore the problem altogether, often resulting in inexplicable and unreproducible cost estimate differences. [0019]
  • Furthermore, conventional optimizer implementations typically retrieve raw statistical data and other information about the values in a table directly from the table itself. This means that for similar queries involving the same columns in different processes and/or in different but similar combinations (a very common occurrence in most environments), the same calculations and analysis must be repeated in each optimization process that takes place on the system in order to do cost estimation for columns from those tables. Often, this is a waste of time and system resources, since if the values in the file do not change for a given period of time, neither will any of the metadata or the values derived from them during that period. [0020]
  • Therefore, a significant need exists in the art for a manner of facilitating the management of metadata in association with generating cost estimates during optimization of database queries in a database management system. [0021]
  • SUMMARY OF THE INVENTION
  • The invention addresses these and other problems associated with the prior art by providing an apparatus, program product and method in which a “metadata manager” is used to collect metadata associated with a database, and to supply such metadata to multiple optimizer instances that generate execution plans for associated queries. By doing so, often operations such as collecting, refining, retrieving and/or maintaining of metadata can be off-loaded from the optimizer instances, often accelerating individual cost estimation calculations by optimizer instances, facilitating reuse of metadata calculations and refinements among the various optimizer instances, and improving metadata consistency between multiple related cost estimates. [0022]
  • These and other advantages and features, which characterize the invention, are set forth in the claims annexed hereto and forming a further part hereof. However, for a better understanding of the invention, and of the advantages and objectives attained through its use, reference should be made to the Drawings, and to the accompanying descriptive matter, in which there is described exemplary embodiments of the invention. [0023]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a block diagram of a networked computer system incorporating a database management system incorporating metadata management consistent with the invention. [0024]
  • FIG. 2 is a block diagram illustrating the principal components and flow of information therebetween in the database management system of FIG. 1. [0025]
  • FIG. 3 is a block diagram illustrating the principal components in the optimizer and metadata manager referenced in FIG. 2. [0026]
  • FIG. 4 is a block diagram illustrating the principal components in each data source cache referenced in FIG. 3. [0027]
  • FIG. 5 is a block diagram illustrating an exemplary expression of the type capable of being constructed by an optimizer instance in the data source cache of FIG. 4. [0028]
  • FIG. 6 is a flowchart illustrating the interaction between an optimizer instance and a metadata context from the metadata manager of FIG. 2 during optimization of a query in a manner consistent with the invention. [0029]
  • FIG. 7 is a flowchart illustrating the program flow of the get DAD's routine executed by a metadata context and referenced in FIG. 6. [0030]
  • FIG. 8 is a flowchart illustrating the program flow of the get metadata routine executed by a metadata context and referenced in FIG. 6. [0031]
  • FIG. 9 is a flowchart illustrating the program flow of the get metadata for expression routine executed by a metadata context and referenced in FIG. 8. [0032]
  • FIG. 10 is a block diagram illustrating the handling of a set of exemplary queries using the metadata manager of FIG. 2. [0033]
  • DETAILED DESCRIPTION
  • The embodiments discussed hereinafter utilize a metadata manager to facilitate the collection of metadata from a database, and to supply such metadata to a plurality of optimizer instances in connection with the optimization of database queries. As discussed hereinafter, a metadata manager may be configured to handle the tasks of collecting, refining, retrieving and/or maintaining metadata for one or more databases, thus off-loading responsibility for such tasks from individual optimizers or optimizer instances that make use of that metadata. As a result, the overhead associated with generating cost estimates for each individual query optimization is often reduced. Moreover, by centralizing metadata and making the metadata available to multiple instances of an optimizer, metadata consistency and reuse is substantially improved. As an additional matter, by implementing metadata handling functionality outside of optimizer instances, improvements to metadata collection, refinement and maintenance algorithms may be implemented within a metadata manager without requiring modification of optimizer program code. [0034]
  • It will be appreciated that metadata, with respect to a database, may be considered to include practically any information that characterizes the data within a database, e.g., information about the database structure, as well as the specific values, distributions of values, and sizes for the various columns and rows in the tables, files or other data structures within a database. [0035]
  • It will also be appreciated that a metadata manager consistent with the invention may be used in connection with a wide variety of database architectures, including relational databases, object-oriented databases, etc. Moreover, it will be appreciated that an “instance” of an optimizer may refer to any number of programming constructs, including separate optimizer programs, or threads within a single optimizer program, capable of accessing the same database. Moreover, multiple instances or optimizers need not be identically configured to one another, and indeed, an instance of an optimizer may refer to the operation of the same optimizer program code in processing multiple queries, either in parallel or serially. For example, multiple optimizer instances may refer to the sequential processing of multiple queries by the same optimizer program. The invention is therefore not limited to the specific implementations discussed herein. [0036]
  • Hardware/Software Environment [0037]
  • Turning now to the Drawings, wherein like numbers denote like parts throughout the several views, FIG. 1 illustrates an exemplary hardware and software environment for an [0038] apparatus 10 suitable for implementing a database management system incorporating metadata management consistent with the invention. For the purposes of the invention, apparatus 10 may represent practically any type of computer, computer system or other programmable electronic device, including a client computer, a server computer, a portable computer, a handheld computer, an embedded controller, etc. Moreover, apparatus 10 may be implemented using one or more networked computers, e.g., in a cluster or other distributed computing system. Apparatus 10 will hereinafter also be referred to as a “computer,” although it should be appreciated the term “apparatus” may also include other suitable programmable electronic devices consistent with the invention.
  • [0039] Computer 10 typically includes a central processing unit (CPU) 12 including one or more microprocessors coupled to a memory 14, which may represent the random access memory (RAM) devices comprising the main storage of computer 10, as well as any supplemental levels of memory, e.g., cache memories, non-volatile or backup memories (e.g., programmable or flash memories), read-only memories, etc. In addition, memory 14 may be considered to include memory storage physically located elsewhere in computer 10, e.g., any cache memory in a processor in CPU 12, as well as any storage capacity used as a virtual memory, e.g., as stored on a mass storage device 16 or on another computer coupled to computer 10.
  • [0040] Computer 10 also typically receives a number of inputs and outputs for communicating information externally. For interface with a user or operator, computer 10 typically includes a user interface 18 incorporating one or more user input devices (e.g., a keyboard, a mouse, a trackball, a joystick, a touchpad, and/or a microphone, among others) and a display (e.g., a CRT monitor, an LCD display panel, and/or a speaker, among others). Otherwise, user input may be received via another computer or terminal, e.g., via a client or single-user computer 20 coupled to computer 10 over a network 22. This latter implementation may be desirable where computer 10 is implemented as a server or other form of multi-user computer. However, it should be appreciated that computer 10 may also be implemented as a standalone workstation, desktop, or other single-user computer in some embodiments.
  • For non-volatile storage, [0041] computer 10 typically includes one or more mass storage devices 16, e.g., a floppy or other removable disk drive, a hard disk drive, a direct access storage device (DASD), an optical drive (e.g., a CD drive, a DVD drive, etc.), and/or a tape drive, among others. Furthermore, computer 10 may also include an interface 24 with one or more networks 22 (e.g., a LAN, a WAN, a wireless network, and/or the Internet, among others) to permit the communication of information with other computers and electronic devices. It should be appreciated that computer 10 typically includes suitable analog and/or digital interfaces between CPU 12 and each of components 14, 16, 18, and 24 as is well known in the art.
  • [0042] Computer 10 operates under the control of an operating system 26, and executes or otherwise relies upon various computer software applications, components, programs, objects, modules, data structures, etc. (e.g., a database management system (DBMS) 28 shown resident in memory 14, and database 30 shown resident in mass storage 16, among others). Moreover, various applications, components, programs, objects, modules, etc. may also execute on one or more processors in another computer coupled to computer 10 via a network, e.g., in a distributed or client-server computing environment, whereby the processing required to implement the functions of a computer program may be allocated to multiple computers over a network.
  • In general, the routines executed to implement the embodiments of the invention, whether implemented as part of an operating system or a specific application, component, program, object, module or sequence of instructions, or even a subset thereof, will be referred to herein as “computer program code,” or simply “program code.” Program code typically comprises one or more instructions that are resident at various times in various memory and storage devices in a computer, and that, when read and executed by one or more processors in a computer, cause that computer to perform the steps necessary to execute steps or elements embodying the various aspects of the invention. Moreover, while the invention has and hereinafter will be described in the context of fully functioning computers and computer systems, those skilled in the art will appreciate that the various embodiments of the invention are capable of being distributed as a program product in a variety of forms, and that the invention applies equally regardless of the particular type of signal bearing media used to actually carry out the distribution. Examples of signal bearing media include but are not limited to recordable type media such as volatile and non-volatile memory devices, floppy and other removable disks, hard disk drives, magnetic tape, optical disks (e.g., CD-ROMs, DVDs, etc.), among others, and transmission type media such as digital and analog communication links. [0043]
  • In addition, various program code described hereinafter may be identified based upon the application within which it is implemented in a specific embodiment of the invention. However, it should be appreciated that any particular program nomenclature that follows is used merely for convenience, and thus the invention should not be limited to use solely in any specific application identified and/or implied by such nomenclature. Furthermore, given the typically endless number of manners in which computer programs may be organized into routines, procedures, methods, modules, objects, and the like, as well as the various manners in which program functionality may be allocated among various software layers that are resident within a typical computer (e.g., operating systems, libraries, API's, applications, applets, etc.), it should be appreciated that the invention is not limited to the specific organization and allocation of program functionality described herein. [0044]
  • Those skilled in the art will recognize that the exemplary environment illustrated in FIG. 1 is not intended to limit the present invention. Indeed, those skilled in the art will recognize that other alternative hardware and/or software environments may be used without departing from the scope of the invention. [0045]
  • Metadata Management Architecture [0046]
  • As discussed above, embodiments consistent with the invention incorporate metadata management functionality into a database management system to facilitate the collection, refinement, retrieval and maintenance of the metadata utilized by an optimizer in optimizing database queries. As shown in FIG. 2, for example, an exemplary implementation of [0047] database management system 28 is shown. The principal components of database management system 28 that are generally relevant to query optimization are an SQL parser 40, optimizer 42 and database engine 44. SQL parser 40 receives from a user a database query 46, which in the illustrated embodiment, is provided in the form of an SQL statement. SQL parser 40 then generates a parsed statement 48 therefrom, which is passed to optimizer 42 for query optimization. As a result of query optimization, an execution or access plan 50 is generated. Once generated, the execution plan is forwarded to database engine 44 for execution of the database query on the information in database 30. The result of the execution of the database query is typically stored in a result set, as represented at block 52.
  • Metadata management in the embodiment of FIG. 2 is centralized within a [0048] metadata manager subsystem 54 in the database management system. As will become more apparent below, metadata is collected from database 30 by metadata manager 54 and provided upon request to optimizer 42 in connection with the optimization of database queries. As shown in FIG. 2, however, it will be appreciated that additional metadata may be directly accessed from database 30 by optimizer 42 during optimization of a database query in some circumstances, e.g., where there is no anticipation that the metadata has any use in connection with any other optimizations currently or thereafter being performed by the optimizer.
  • FIG. 3 illustrates the primary components in [0049] metadata manager 54 for implementing the herein-described metadata management functionality. In general, metadata manager 54 has two principal functions, that of managing the collection, refinement, etc., of metadata from database 30 (as represented at block 56), and that of servicing requests for the metadata from the optimizer (as represented at block 58). The servicing of requests may also be considered to be a form of client access management, as the optimizer and its instances are analogous in many respects to clients for metadata, while the metadata manager is analogous to a server for metadata.
  • From the standpoint of managing the metadata, [0050] metadata manager 54 includes a metadata collector component 60, and an optional metadata repository 62 that is configured to store refined and/or unrefined metadata for use by the metadata manager in supplying metadata to the optimizer. Metadata is generally collected by the metadata collector via requests issued to the database 30, which generally results in the retrieval of “unrefined” metadata, that is, raw statistical information from the database.
  • From the standpoint of servicing optimizer requests, [0051] metadata manager 54 includes a plurality of metadata contexts 64 and a plurality of data source caches 66. Metadata contexts 64 individually provide interfaces for specific optimizer instances 68 resident in optimizer 42. Put another way, in the illustrated embodiment, metadata contexts are dedicated or bound to individual optimizer instances. It is thus through interaction between an optimizer instance and its associated metadata context that metadata is supplied to the optimizer instance by the metadata manager.
  • The [0052] multiple metadata contexts 64 are used to establish relationships between the optimizer instances 68 and a plurality of data source caches 66. Each data source cache 66 is configured to temporarily store metadata associated with a particular data source, e.g., a particular table or file in the database. Moreover, as will become more apparent below, data source caches 66 are accessible by multiple metadata contexts, thus permitting multiple optimizer instances to access the metadata stored in a particular data source cache.
  • As shown in FIG. 4, a [0053] data source cache 66 in the illustrated embodiment typically includes one or more data access descriptors (DAD's) 70 and one or more expressions 72. Data access descriptors are used to provide an optimizer with the necessary metadata information regarding a particular path to some data in the data source. Expressions are used to specify particular questions to be evaluated during costing by an optimizer.
  • A more detailed discussion of the concept of “metadata,” and of each of the aforementioned components, in described in greater detail below. However, it should be appreciated that the specific architecture of the metadata manager, optimizer, and other components in [0054] database management system 28 are not exclusive. In particular, other components may be incorporated into database management system 28, as may other suitable database management architectures. Other database programming and organizational architectures may also be used consistent with the invention. Therefore, the invention is not limited to the particular implementation discussed herein.
  • Optimizer Metadata [0055]
  • At least a portion of the metadata needed by an optimizer in performing cost estimates cannot be obtained directly from a database, but must be processed, or refined, to some extent prior to use by an optimizer. Such metadata may be referred to as “refined” metadata. It is important to note, however, that typically the collection, refinement and source of origin for refined metadata is irrelevant to an optimizer, and as such, the separation of these operations from individual optimizer instances enables the optimizer to request metadata in the abstract, without having to deal specifically with how to obtain such metadata. [0056]
  • A wide variety of refinements may be performed to produce useful metadata for an optimizer, and indeed a number of different types of metadata, refined conventionally by an optimizer directly after retrieving raw statistical data from a database, may be used in the illustrated embodiment. In fact, practically any metadata that may be calculated or refined by an optimizer may instead be calculated or refined by a metadata manager consistent with the invention. [0057]
  • Without limiting the invention to these specific metadata types, the following are a few examples of refined metadata within the context of the invention: [0058]
  • Filter Factor: A filter factor represents, for a given expression from the optimizer, the percentage of total records that would be selected by applying the expression (and its children) to the current contents of the tables described by a particular access method. [0059]
  • Distinct Row Count: A distinct row count represents, for a given expression, the number of distinct records that would result from applying the expression to a set of possible rows from a data source. In the simplest form, where the expression is a simple column operand, the distinct row could is just the cardinality of that column. [0060]
  • Access Characteristics: Access characteristics are packages of metrics (measurements) that can be associated with an expression as satisfied by particular access paths assigned to a data source. Possible components include, for example, the total keys probed, the number of ranges, the number of keys selected, the number of access path random I/Os, the number of access path sequential I/Os, the number of dataspace random I/Os, the number of sequential dataspace I/Os, etc. [0061]
  • In addition, besides any numerical values themselves, optimizer metadata may also include attributes such as an “aging” stamp, or a value representing the theoretical degree of error in the numeric values. [0062]
  • Data Access Descriptors [0063]
  • As mentioned above, an optimizer must often choose from a large domain of access methods to construct a plan for executing a query. In making such decisions, the optimizer is often interested in certain quantitative and qualitative measurements for those access methods as applied to parts of a specific query. A data access descriptor (DAD) may be used to represent in an abstract form, all and only such information required by the optimizer about a particular path to some data (such as index). [0064]
  • This approach has several advantages over conventional optimizers. First, since the optimizer need not be concerned with what kind of access a DAD represents, be it an index, a temporary data set, etc., the cost estimate generation process may be simpler from the optimizer's perspective. The optimizer can use the DAD general abstraction during costing operations rather than being concerned with specific access path types. Second, since a DAD is simply an abstract representation of a path or data access method, the access path (index or other) does not even have to exist in some implementations, and the optimizer can be oblivious to this fact as well. Doing so permits an optimizer to do “what-if” scenarios, where the optimizer can cost plans that would potentially use that path if it did exist, which can allow one to see the effects of creating an index, for example, without actually having to create it. [0065]
  • A DAD may represent any number of access methods, including relational tables, subsets of the columns of tables, indexes over tables, hash tables, etc. A DAD may include various attributes depending upon the type of access method being represented, including but not limited to: ordered record information (keys, ascending or descending sort, columns involved, etc.), number of rows, average I/O cost for row access, list of dependent DAD's, etc. [0066]
  • Data Sources & Data Source Caches [0067]
  • A data source is an abstraction that represents to the optimizer a potential stream of database records (tuples) at run time. The metadata manager constructs and maintains data source cache (DSC) instances as temporary holding places for metadata specific to a snapshot in time for that data source. [0068]
  • In the illustrated embodiment, each DSC has two principal roles. [0069]
  • First, a DSC acts as a system wide “fast access” holding place for DAD's and expressions as built from optimizer requests, complete with their corresponding optimizer metadata. When used in a multithreaded system, this means that multiple optimizer instances on a system can simultaneously have access to any previously calculated (and now cached) vales for a data source. [0070]
  • Second a DSC provides a consistent image of the metadata that originated from a particular data source. A DSC typically includes descriptive information for the data source (file or other object), along with representations of all access paths (indexes) that exist for that data source (at the point in time that the cache was constructed), which provides consistency and reproducibility for cost calculations. Data source caches may be configured to ensure that this information remains unchanged while an instance of the DSC is in existence, even if the underlying information from the data source changes during the process of optimization of a query. [0071]
  • In the illustrated embodiment, each DAD instance is associated with exactly one data source cache, so a) together they may provide a consistent quantitative view of the data sources throughout optimization, and b) their optimizer metadata can be used by multiple optimizer instances in order to take advantage of calculations already done. A DSC therefore provides a common anchor point for all requests about the underlying data in any file being queried, since it returns the same answer in cases where the same request is made repeatedly. The decisions made when comparing different access plans will be made from “snapshots” of the underlying data, and the optimizer will have a consistent basis for making comparisons. [0072]
  • In some embodiments of the invention, if the information in a DSC instance grows out of date (e.g., by tracking what contexts are still using the DSC, by comparing timestamps, etc.), the instance may be marked obsolete, which will cause the instance to acquire no new users (i.e., contexts). When there are no more active optimizer instances connected to an obsolete DSC, it may be deleted by the metadata manager, e.g., via a process similar to garbage collection. [0073]
  • Metadata Contexts [0074]
  • A metadata context is used to maintain a relationship between an optimizer instance and the data source caches for which the optimizer wants metadata. The term “context” is appropriate because this mechanism typically defines the “domain” or “environment” that the optimizer instance will run in with respect to the metadata it requires. [0075]
  • Once a particular context has been established by an optimizer instance, its primary role is to construct and manage DSC's as required to provide a “pool” of consistent answers to the specific metadata requests made by that optimizer instance—even as the underlying information might be changing. Each DAD constructed via a context ties that DAD to a particular DSC. A context may be tied to multiple DSC's (as multiple files may be referenced in a query), but for any data source, a context typically uses one and only one DSC to retrieve information from which to compute and return optimizer metadata. [0076]
  • In the illustrated embodiment, DSC's are scoped globally, and not to a particular context, so that multiple optimizer instances may be tied to the same DSC. Each context can add new expressions to the DSC, and/or reuse expression that have already been built by itself or by others. The corresponding optimizer metadata is stored with these expressions, making it quickly available to subsequent requesters. [0077]
  • In the illustrated embodiment, there are two types of interfaces to a metadata context. The first interface type allows a client (optimizer instance) to identify the sources of data in which it is interested, returning data access descriptions (DAD's) for each, so the client will be able to glean access characteristics about the data sources. [0078]
  • The second interface type allows a client to build expressions that embody questions about specified data sources. In the illustrated embodiment, these expression building methods manufacture and assemble individual elements into a tree-like relationship. After asking the context to assemble an expression, the client can then use methods on that expression to find how it affects access to its data source. [0079]
  • Expressions [0080]
  • The metadata manager may also define expressions to be used on requests for certain optimizer metadata (such as Filter Factor and Access Characteristics). In general, expressions represent the database entities (fields, literals, tables, etc.) and their relationships to each other as specified in part of a query. The metadata manager is typically responsible for evaluating a given expression in light of the questions being asked, which may occur in different ways based on what request was made of the metadata. Moreover, typically the metadata results of an expression are cached with the expression once calculated on behalf of an optimizer instance, so that later attempts to evaluate an expression by the same or a different optimizer instance may simply result in the previously-calculated metadata results being returned to the requesting client. [0081]
  • In the illustrated embodiment, expressions include two subspecies, operands and operators, which are arranged by the optimizer into a tree or graph of parent-child relationships. [0082]
  • An expression is said to “provide a value.” If it has no operators, the expression is the value. Otherwise, the value is the result of applying the operator to its operands—which are themselves expressions. Furthermore, a predicate is defined as a conditional operator which when applied to other expressions can be evaluated as either true or false. The top expression in a tree is typically always a predicate (i.e., returns true or false). [0083]
  • For example, expressions may be used to represent portions of the WHERE and HAVING predicates from a query, since the optimizer has a need to find out how selective these predicates are in order to do things like change the order of files being joined. The more selective the predicates, the fewer records will pass the tests; the optimizer naturally wants to position the most selective operations first, to avoid unnecessary processing of records that will not be returned eventually anyway. [0084]
  • In the illustrated embodiment, some of the kinds of expressions that may be supported include but are not limited to: [0085]
  • Column: Represents a database column (field). Column expressions indicate to which DAD they belong. Note that the column does not have to exist in a real file, it might be from a temporary result set or a hypothetical table. [0086]
  • Literal: Represents a value expressed literally in the query. The value typically cannot be changed once the literal expression has been created. [0087]
  • Relational Operator: Operators that return true or false (e.g., various comparisons). [0088]
  • Logical Operator: Binary logical connective operators such as AND and OR whose result is true or false. Their operand(s) typically must be of type Boolean. [0089]
  • As a further illustration of the manner in which an expression may be implemented, consider the following exemplary SQL query: [0090]
  • SELECT*FROM FILE-2 [0091]
  • WHERE COL[0092] 1>1
  • AND [0093] COL 2>2
  • AND [0094] COL 3>3
  • The WHERE qualifier of this query may be represented as an expression and evaluated by the metadata manager in response to an optimizer instance request so as to provide metadata to the optimizer instance that is reflective of how many rows will likely match the query. One suitable implementation of such an expression as a [0095] tree structure 72 is shown in FIG. 5. To represent the aforementioned WHERE qualifier in an expression, a pair of AND logical expressions 74, 76, a set of “greater than” relational expressions 78, 80 and 82, a set of column expressions 84, 86 and 88, and a set of literal expressions 90, 92 and 94 may be used. Expressions may therefore be constructed of other expressions.
  • Expressions are typically constructed by optimizer instances, then passed to metadata contexts for evaluation. The metadata for an expression that is returned to an optimizer instance by a metadata context may be attached to the original expression object, or may be represented in a separate data structure. In addition, the metadata may be associated with a time stamp for use in identifying the “freshness” of the metadata. [0096]
  • Other data may also be incorporated into an expression, such as descriptive information about the types and other constraints on an expression's operands. It will also be appreciated that other types of expression operands and operators may be supported by a metadata manager consistent with the invention. Moreover, other manners of representing expressions or tests in software may be used in the alternative, including hard codes tests. Other data structures may also be used to represent an expression. The invention is thus not limited to the particular expression architecture discussed herein. [0097]
  • Optimization of Database Queries Using Metadata Manager [0098]
  • FIG. 6 next illustrates the program flow occurring during optimization of a query in [0099] database management system 28, additionally illustrating the interaction between an optimizer instance and a metadata context in a metadata manager during such processing. Specifically, as shown beginning at block 100, in response to a request to optimize a query, an optimizer instance will be instantiated in the optimizer to process the query, the query typically taking the form of a parsed statement as described above in connection with FIG. 2.
  • As shown in [0100] block 102, the optimizer instance initially examines the parsed statement, in a manner generally known in the art. Next, in block 104, the optimizer instance requests a metadata context from the metadata manager. As shown at block 106, such a request results in dynamic construction or instantiation of a metadata context object, which is initialized in block 108 to bind the metadata context to the optimizer instance. As a result, the instantiated metadata context serves as the interface for the optimizer instance with the metadata manager.
  • Once a metadata context is requested by the optimizer instance, the optimizer instance then builds a list of tables in the database about which metadata is required, as shown in [0101] block 110. The list of tables represents the data sources that will be accessed during execution of the query. Next, in block 112, the optimizer instance requests from the metadata manager a list of data access descriptors (DAD's) for the tables, or data sources, from which metadata is required by the optimizer instance. The request for the data sources is made upon the metadata context object, which executes a get DAD's routine 114 and returns a list of relevant DAD's to the optimizer instance.
  • Next, in [0102] block 116, the optimizer instance formulates and builds any required expressions necessary for formulating the execution plan. For example, block 116 may determine whether any WHERE, ORDER BY or other qualifiers are present in a query, and if so, construct expressions that query the database for metadata that is indicative of how such qualifiers will affect the execution of a query. Additional expressions may also be formulated at this time to request other types of metadata, including metadata such as cardinality of columns, numbers of columns and/or rows, etc.
  • Once all required expressions have been formulated by the optimizer instance, the optimizer instance then proceeds to retrieve its required metadata from the metadata manager via the formulated expressions, as shown in [0103] block 118. Requests are issued to the metadata context by the optimizer instance, and are processed by a get metadata routine 120 resident in the metadata manager, resulting in the requested metadata being returned to the optimizer instance via the bound metadata context. Typically, the expressions themselves are passed from the optimizer instance to the metadata context for evaluation, and metadata is returned to the optimizer instance by passing the expression back to the optimizer instance with the metadata attached. Other manners of communicating expressions and metadata between an optimizer instance and a metadata context may be used in the alternative.
  • Next, the optimizer instance formulates the execution plan as shown in [0104] block 122, in much the same manner as a conventional optimizer, with the exception that the metadata has been obtained from the metadata manager, rather than being collected and refined directly by the optimizer instance.
  • Formulation of an execution plan is typically an iterative process, including comparisons between competing execution plans to arrive at a most efficient plan. As such, block [0105] 124 represents the interactive nature of the plan formulation process, whereby any time additional metadata is required during plan formulation, or any time additional plans need to be formulated for comparison purposes, control is returned to block 116 to formulate any additional required expressions as necessary. Once an optimal execution plan is generated, block 124 then passes control to block 126 to output the formulated execution plan to the database engine, for execution thereby in a manner known in the art.
  • FIG. 7 illustrates one implementation of get DAD's routine [0106] 114 in greater detail. Routine 114 is executed by the metadata context, and begins in block 130 by looking for a data source cache with one or more existing DAD's for the next unprocessed data source referenced in the request from the optimizer instance. If an existing DSC and DAD are found, block 132 passes control to block 134 to add any existing DAD's to a return list, whereby control then passes to block 136 to determine whether any unprocessed data sources remain in the request. If so, control returns to block 130. Otherwise, control passes to block 138 to terminate the routine and return the list of DAD's to the calling optimizer instance.
  • Returning to block [0107] 132, if no existing DAD is found for a data source, control passes to block 140 to determine whether a new data source cache is required, i.e., whether an active data source cache exists for the data source. If a data source cache exists, control passes to block 142 to dynamically construct, or build, one or more new DAD's for the data source (e.g., more than one DAD if multiple indexes or other access paths exist for the data source), and then add the new DAD(s) to the data source cache. Control then passes to block 134 to add the new DAD(s) to the return list. If no data source cache exists, block 140 passes control to block 144 to dynamically construct, or build, a new data source cache, prior to passing control to block 142.
  • FIG. 8 illustrates one implementation of [0108] get metadata routine 120 in greater detail. Routine 120 is executed by the metadata context, and begins in block 150 by looking for a data source cache with existing metadata for the next unprocessed expression object referenced in the request from the optimizer instance. If existing metadata is found, block 152 passes control to block 154 to store the metadata in the expression object (e.g., by attaching the metadata to the object) for return to the optimizer instance. Control then passes to block 156 to determine whether any unprocessed expression objects remain in the request. If so, control returns to block 150. Otherwise, control passes to block 158 to terminate the routine and return the expression objects with the metadata requested by the optimizer instance attached thereto.
  • Returning to block [0109] 152, if no existing metadata is found for the expression object, control passes to block 160 to determine whether a new data source cache is required, i.e., whether an active data source cache exists for the data source for which an expression is requested. If a data source cache exists, control passes to block 162 to call a get metadata for expression routine that retrieves raw statistical data from the database as necessary and calculates the requested metadata therefrom using the expression. Next, in block 164, the calculated metadata is stored in the data source cache along with a cached version of the expression, thus effectively caching the metadata and expression. Control then passes to block 154 to also store the metadata in the expression object originally passed to the metadata context for return to the optimizer instance.
  • Returning to block [0110] 160, if no data source cache exists, block 160 passes control to block 166 to build a new data source cache, prior to passing control to block 162.
  • FIG. 9 illustrates one implementation of get metadata for [0111] expression routine 162 in greater detail. Routine 162 is executed by the metadata context, and begins in block 170 by checking for existing statistics relevant to the expression being processed. If some or all the necessary statistics are not present and/or if any of the necessary statistics are stale (e.g., have a timestamp earlier than a particular time frame), block 172 passes control to block 174 to trigger the metadata collector to collect and process the necessary or stale statistics in a background process.
  • Next, block [0112] 176 determines whether the metadata context should wait for the statistics to be returned by the metadata collector, and if so, passes control to block 178 to wait for the statistics to be returned. In the illustrated embodiment, an optimizer instance may control whether a metadata context waits for unavailable statistics to be returned, e.g., by setting an attribute in a request. In some instances, it may be desirable for an optimizer instance to simply prime the metadata manager to begin collecting statistics so that the statistics will be available for future optimization instances.
  • Once the statistics are returned, or if it is not desirable to wait in the first place, blocks [0113] 176 and 178 pass control to block 180 to initiate a check for other sources of useful metadata for the particular expression. In addition, returning to block 172, if it is determined that all relevant statistics are present and not stale, control is passed directly to block 180 to initiate the check.
  • Next, block [0114] 182 combines the collected and pre-existing information (metadata and/or raw statistics) from all of the sources and refines the information into the appropriate metadata for the expression. Control then passes to block 184 to return the refined metadata and terminate routine 162.
  • As such, it will be appreciated that, through processing expressions in the manner described herein, the metadata manager is capable of calculating refined metadata from refined and/or unrefined metadata collected from the database by the metadata manager. Moreover, the metadata manager is capable of caching such refined metadata such that subsequent requests to the metadata manager for the same refined metadata (e.g., in response to requests that pass the same or a related expressions thereto) will be processed by returning the cached refined metadata, rather than recalculating the refined metadata. [0115]
  • As mentioned above, metadata collector typically operates using one or more background processes to collect statistics, and optionally refine such statistics into refined metadata. Any algorithms conventionally utilized in query optimizers may be used in the metadata collector to retrieve and/or refine metadata used in the manner described herein. [0116]
  • It will be appreciated that a wide variety of alternate algorithms and data structures may be utilized to implement a metadata manager consistent with the invention, and as such, the invention is not limited to this particular implementation. Moreover, it will be appreciated that implementation of the aforementioned algorithms and data structures in a database management system would be well within the abilities of one of ordinary skill in the art having the benefit of the instant disclosure. [0117]
  • Illustrative Example [0118]
  • FIG. 10 illustrates an [0119] exemplary database environment 200 consistent with the invention, subsequent to optimization of three queries 202, 204 and 206 by a plurality of associated optimizer instances 208, 210 and 212. A metadata manager 214 is interposed between the optimizer instances and a database 216. Metadata manager 214 is illustrated as having a metadata collector object 218 that is utilized to collect and refine metadata in the manner described herein. Moreover, database 216 is illustrated including a plurality of tables 220, as well as a plurality of indexes 222 have been created by the database, in a manner known in the art.
  • Assuming for the purposes of the example that an [0120] optimizer instance 208 is initially executed to generate an execution plan for query 202, the optimizer instance would instantiate a metadata context 224 to interface the optimizer with the metadata manager. In response to a request for data access descriptors by the optimizer instance, context 224 would determine whether data source caches existed for either of tables T1 and T2, which are accessed by query 202. If either data source cache 226, 228 is not currently active, such a data source cache is dynamically instantiated in the metadata manager by context 224 (see routine 114 of FIG. 7).
  • For [0121] data source cache 226, context 224 may construct a number of data access descriptors 230, 232 and 234, as well as a number of expressions such as expressions 236, 238. Likewise, for data source cache 228, DAD's 240, 242 and 244, and expressions 246 and 248 may be constructed within the data source cache, either in connection with processing query 202, during prior optimizations, or even after processing either of queries 204, 206.
  • In the event that a data source cache is constructed by a context, it will be appreciated that the data source cache may initially contain no DAD's or expressions, and may need to be dynamically populated with DAD's and expressions as described above. Moreover, it will be appreciated that DAD's will typically be generated for the data source itself, as well as any access paths into the data source, including each available index for the data source. [0122]
  • Once the available DAD's are returned by [0123] context 224 to optimizer instance 208, the optimizer instance will generate expressions, e.g., expressions 236, 238, 246 and/or 248 as appropriate to access query 202.
  • Consider next the optimization of [0124] query 204, which may occur in parallel with or sometime after optimization of query 202. Optimization of query 204 is handled by optimizer instance 210, which results in the instantiation of context 250 to provide an interface between the optimizer instance and the metadata manager. In this instance, query 204 relies on the same data sources as query 202, and as a result, context 250 may not be required to instantiate new data source caches, but may rely on the existing data source caches 226 and 228 relied upon and used by context 224. As such, regeneration of metadata specifically required by optimizer instance 210 may not be required, and existing metadata resident in the data source caches 226, 228 may be returned with reduced processing overhead. Moreover, where expressions have been created and evaluated during optimization of query 202, the metadata determined thereby may be returned directly to optimizer instance 210 when optimizing query 204 to further reduce the overhead associated with optimizing the query.
  • For [0125] query 206, optimizer instance 212 is illustrated as interfacing with a context 252, which is associated with both an existing data source cache 228, as well as a newly-instantiated data source cache 254 that is used solely by context 252. As above, DAD's 256, 258 and 260, representing the available access methods to the data source, as well as any expressions 262, 264 are maintained in data source cache 254, either as a result of previous optimizations and requests for metadata in association with the data source cache, or as populated into the data source cache by context 252 during optimization of query 206.
  • It will be appreciated that, through the reuse of metadata and the provision of a centralized repository for collecting and refining metadata, the overhead associated with obtaining refined metadata during optimization of a query may be substantially reduced. Particularly for high volume database management systems where a high volume of queries is processed, the ability to re-use metadata among multiple queries can provide significant improvements in system-wide performance. Furthermore, the improved consistency of metadata, particularly when multiple competing execution plans are being compared by an optimizer, results in more stable and productive optimization results. [0126]
  • Various modifications may be made to the illustrated embodiments without departing from the spirit and scope of the invention. Therefore, the invention lies in the claims hereinafter appended. [0127]

Claims (39)

What is claimed is:
1. An apparatus, comprising:
(a) a metadata manager configured to collect metadata associated with a database; and
(b) a plurality of optimizer instances, each optimizer instance configured to generate an execution plan for an associated query using metadata collected by the metadata manager.
2. The apparatus of claim 1, further comprising a plurality of data source caches, each data source cache configured to cache metadata associated with a data source from the database.
3. The apparatus of claim 2, wherein the metadata manager is configured to dynamically construct at least one data source cache in response to a request from an optimizer instance for metadata associated with a data source from the database.
4. The apparatus of claim 2, wherein at least one data source cache includes a data access descriptor configured to store metadata associated with an access path to the data source.
5. The apparatus of claim 4, wherein the data access descriptor includes metadata representative of at least one of a database table, a subset of columns from a database table, an index over a table, and a hash table.
6. The apparatus of claim 4, wherein the metadata manager is configured to dynamically construct the data access descriptor in response to a request from an optimizer instance for metadata associated with a data source from the database.
7. The apparatus of claim 2, further comprising a plurality of metadata contexts, each associated with an optimizer instance from the plurality of optimizer instances, and each configured to service access requests from an associated optimizer instance.
8. The apparatus of claim 7, wherein the metadata manager is configured to dynamically construct a metadata context in response to a request from an optimizer instance.
9. The apparatus of claim 2, wherein at least two metadata contexts are configured to access a common data source cache such that metadata stored in the common data source cache is accessible to the optimizer instances associated with the two metadata contexts.
10. The apparatus of claim 1, wherein the metadata manager is configured to refine the metadata collected from the database prior to providing the refined metadata to at least one optimizer instance.
11. The apparatus of claim 10, wherein the metadata manager is configured to provide the refined metadata to multiple optimizer instances.
12. The apparatus of claim 1, wherein the metadata manager is configured to generate refined metadata by processing an expression constructed by a first optimizer instance among the plurality of optimizer instances.
13. The apparatus of claim 12, wherein the metadata manager is configured to return refined metadata to the first optimizer instance by attaching the refined metadata to the expression constructed by the first optimizer instance.
14. The apparatus of claim 12, wherein the metadata manager is configured to cache the refined metadata and to return the cached refined metadata to a second optimizer instance among the plurality of optimizer instances in response to a request from the second optimizer instance.
15. The apparatus of claim 1, wherein the metadata manager is configured to process a first request for first metadata by calculating refined metadata from unrefined metadata and returning the refined metadata as the first metadata, and to process a second request for the first metadata by returning the refined metadata as the first metadata without recalculating the refined metadata.
16. The apparatus of claim 15, wherein the first and second requests are issued by the same optimizer instance.
17. The apparatus of claim 15, wherein the first and second requests are issued by different optimizer instances.
18. An apparatus, comprising:
(a) a processor; and
(b) program code configured to execute on the processor to collect metadata associated with a database, the program code further configured to supply the metadata to at least one query optimizer for use in generating an execution plan for a database query.
19. The apparatus of claim 18, further comprising a plurality of data source caches, each data source cache configured to cache metadata associated with a data source from the database, and wherein the program code is configured to dynamically construct at least one data source cache in response to a request from the query optimizer for metadata associated with a data source from the database.
20. The apparatus of claim 19, wherein the program code manager is further configured to dynamically construct a data access descriptor in connection with dynamically constructing a data source cache, wherein the data access descriptor is configured to store metadata associated with an access path to the data source.
21. The apparatus of claim 19, wherein the query optimizer includes a plurality of optimizer instances, the apparatus further comprising a plurality of metadata contexts, each associated with an optimizer instance from the plurality of optimizer instances, and each configured to service access requests from an associated optimizer instance, wherein the program code is configured to dynamically construct a metadata context in response to a request from an optimizer instance.
22. The apparatus of claim 21, wherein at least two metadata contexts are configured to access a common data source cache such that metadata stored in the common data source cache is accessible to the optimizer instances associated with the two metadata contexts.
23. The apparatus of claim 18, wherein the program code is configured to process a first request from the query optimizer for first metadata by calculating refined metadata from unrefined metadata and returning the refined metadata as the first metadata, and to process a second request from the query optimizer for the first metadata by returning the refined metadata as the first metadata without recalculating the refined metadata.
24. The apparatus of claim 23, wherein the query optimizer includes a plurality of optimizer instances, and wherein the first and second requests are from different optimizer instances.
25. A program product, comprising:
(a) program code configured to collect metadata associated with a database, the program code further configured to supply the metadata to at least one query optimizer for use in generating an execution plan for a database query; and
(b) a signal bearing medium bearing the program code.
26. The program product of claim 25, wherein the signal bearing medium includes at least one of a transmission medium and a recordable medium.
27. A method of managing metadata for a database, the method comprising:
(a) collecting metadata associated with a database; and
(b) responding to a plurality of requests by at least one query optimizer by supplying the collected metadata thereto.
28. The method of claim 27, further comprising caching the metadata in a plurality of data source caches, each data source cache configured to cache metadata associated with a data source from the database.
29. The method of claim 28, further comprising dynamically constructing at least one data source cache in response to a request from the query optimizer.
30. The method of claim 28, wherein at least one data source cache includes a data access descriptor configured to store metadata associated with an access path to the data source.
31. The method of claim 30, further comprising dynamically constructing the data access descriptor in response to a request from the query optimizer for metadata associated with a data source from the database.
32. The method of claim 28, wherein the query optimizer includes a plurality of optimizer instances, the method further comprising dynamically constructing a plurality of metadata contexts in response to requests from the plurality of optimizer instances, each metadata context associated with an optimizer instance from the plurality of optimizer instances, and each configured to service access requests from an associated optimizer instance.
33. The method of claim 32, wherein at least two metadata contexts are configured to access a common data source cache such that metadata stored in the common data source cache is accessible to the optimizer instances associated with the two metadata contexts.
34. The method of claim 27, further comprising refining the metadata collected from the database prior to supplying the refined metadata in response to a request from the query optimizer.
35. The method of claim 34, wherein refining the metadata includes processing an expression constructed by the query optimizer.
36. The method of claim 27, further comprising:
(a) processing a first request for first metadata by calculating refined metadata from unrefined metadata and returning the refined metadata as the first metadata; and
(b) processing a second request for the first metadata by returning the refined metadata as the first metadata without recalculating the refined metadata.
37. A method of optimizing a database query, the method comprising:
(a) accessing a metadata manager to retrieve metadata associated with a database; and
(b) using the retrieved metadata to optimize a database query.
38. The method of claim 37, wherein the retrieved metadata comprises refined metadata, the method further comprising, in the metadata manager:
(a) collecting the unrefined metadata from the database; and
(b) calculating the refined metadata from unrefined metadata.
39. The method of claim 38, further comprising:
(a) caching the refined metadata in the metadata manager;
(b) accessing the metadata manager a second time to retrieve the cached refined metadata; and
(c) using the cached refined metadata to optimize a second database query.
US10/224,135 2002-08-20 2002-08-20 Metadata manager for database query optimizer Expired - Lifetime US6996556B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US10/224,135 US6996556B2 (en) 2002-08-20 2002-08-20 Metadata manager for database query optimizer

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US10/224,135 US6996556B2 (en) 2002-08-20 2002-08-20 Metadata manager for database query optimizer

Publications (2)

Publication Number Publication Date
US20040039729A1 true US20040039729A1 (en) 2004-02-26
US6996556B2 US6996556B2 (en) 2006-02-07

Family

ID=31886755

Family Applications (1)

Application Number Title Priority Date Filing Date
US10/224,135 Expired - Lifetime US6996556B2 (en) 2002-08-20 2002-08-20 Metadata manager for database query optimizer

Country Status (1)

Country Link
US (1) US6996556B2 (en)

Cited By (42)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040181533A1 (en) * 2003-03-13 2004-09-16 International Business Machines Corporation Pre-formatted column-level caching to improve client performance
US20040181514A1 (en) * 2003-03-13 2004-09-16 International Business Machines Corporation Byte-code representations of actual data to reduce network traffic in database transactions
US20050015367A1 (en) * 2003-04-29 2005-01-20 Cognos Incorporated System and method of formulating queries in relational databases
US20050022029A1 (en) * 2003-04-29 2005-01-27 Cognos Incorporated System and method for providing security mechanisms for data warehousing and analysis
US20050021516A1 (en) * 2003-04-29 2005-01-27 Cognos Incorporated Database report generation
US20050027674A1 (en) * 2003-04-29 2005-02-03 Cognos Incorporated Metadata modelling for reporting
US20050060293A1 (en) * 2003-09-11 2005-03-17 International Business Machines Corporation Background index bitmapping for faster query performance
US20050165841A1 (en) * 2004-01-23 2005-07-28 Microsoft Corporation System and method for automatically grouping items
US20050177596A1 (en) * 2004-02-05 2005-08-11 Gansha Wu Storing method metadata in code
US20070043696A1 (en) * 2005-08-19 2007-02-22 Haas Peter J Method for estimating the cost of query processing
US20070043697A1 (en) * 2005-08-18 2007-02-22 International Business Machines Corporation Generating statistics for temporary tables during query optimization
US20070118501A1 (en) * 2005-11-18 2007-05-24 Microsoft Corporation Allocation performance by query optimization
US20070198556A1 (en) * 2006-02-21 2007-08-23 Lawson Software, Inc. Data unification models
US20080071818A1 (en) * 2006-09-18 2008-03-20 Infobright Inc. Method and system for data compression in a relational database
US7373350B1 (en) 2002-11-07 2008-05-13 Data Advantage Group Virtual metadata analytics and management platform
US20080114718A1 (en) * 2006-11-09 2008-05-15 Mark John Anderson Apparatus and method for database execution detail repository
US7401064B1 (en) * 2002-11-07 2008-07-15 Data Advantage Group, Inc. Method and apparatus for obtaining metadata from multiple information sources within an organization in real time
WO2009009556A1 (en) * 2007-07-11 2009-01-15 Calpont Corporation Method and system for performing a scan operation on a table of a column-oriented database
US20090049012A1 (en) * 2007-08-17 2009-02-19 International Business Machines Corporation Apparatus, system, and method for ensuring query execution plan stability in a database management system
US20090106210A1 (en) * 2006-09-18 2009-04-23 Infobright, Inc. Methods and systems for database organization
US20090131115A1 (en) * 2005-02-07 2009-05-21 Martin Kretz Generic parser for electronic devices
US20100114868A1 (en) * 2008-10-21 2010-05-06 International Business Machines Corporation Query execution plan efficiency in a database management system
WO2010060179A1 (en) * 2008-11-28 2010-06-03 Infobright Inc. Methods for organizing a relational database by using clustering operations
US20100223253A1 (en) * 2009-03-02 2010-09-02 International Business Machines Corporation Automatic query execution plan management and performance stabilization for workloads
US20100257181A1 (en) * 2009-04-01 2010-10-07 Sybase, Inc. Dynamic Hash Table for Efficient Data Access In A Relational Database System
US20110082864A1 (en) * 2007-08-29 2011-04-07 Sesame Software, Inc. Method for generating indexes for downloading data
US20110282851A1 (en) * 2010-05-12 2011-11-17 Microsoft Corporation Getting dependency metadata using statement execution plans
US20130060753A1 (en) * 2010-02-25 2013-03-07 Maxim Lukichev Optimization Method And Apparatus
US8417727B2 (en) 2010-06-14 2013-04-09 Infobright Inc. System and method for storing data in a relational database
US8521748B2 (en) 2010-06-14 2013-08-27 Infobright Inc. System and method for managing metadata in a relational database
US20140317059A1 (en) * 2005-06-24 2014-10-23 Catalogic Software, Inc. Instant data center recovery
US20150112967A1 (en) * 2012-04-27 2015-04-23 The University Of Tokyo Database management system, computer, and database management method
US20150324432A1 (en) * 2007-09-14 2015-11-12 Oracle International Corporation Identifying high risk database statements in changing database environments
US20160034486A1 (en) * 2014-02-19 2016-02-04 Snowflake Computing Inc. Multi-Range and Runtime Pruning
US9454573B1 (en) 2013-02-25 2016-09-27 Emc Corporation Parallel processing database system with a shared metadata store
WO2017076152A1 (en) * 2015-11-03 2017-05-11 International Business Machines Corporation Global filter factor estimation
US20180096032A1 (en) * 2016-09-30 2018-04-05 Sap Se Metadata application programming interface for ad hoc database queries
US10417099B1 (en) * 2015-07-30 2019-09-17 EMC IP Holding Company LLC Resilient backups for large Hyper-V cluster shared volume environments
CN110362572A (en) * 2019-06-25 2019-10-22 浙江邦盛科技有限公司 A kind of time series database system based on column storage
CN110780950A (en) * 2019-10-24 2020-02-11 深圳前海环融联易信息科技服务有限公司 Interface metadata management method and device, computer equipment and storage medium
US10963426B1 (en) 2013-02-25 2021-03-30 EMC IP Holding Company LLC Method of providing access controls and permissions over relational data stored in a hadoop file system
US11042566B2 (en) 2014-02-19 2021-06-22 Snowflake Inc. Cloning catalog objects

Families Citing this family (29)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7447687B2 (en) 2002-05-10 2008-11-04 International Business Machines Corporation Methods to browse database query information
US7469306B2 (en) * 2002-06-28 2008-12-23 Nxp B.V. Method for communicating with first and second device that includes reference to metadata wherein third device modifies the metadata based on specific operations by first device
US7716167B2 (en) 2002-12-18 2010-05-11 International Business Machines Corporation System and method for automatically building an OLAP model in a relational database
US7953694B2 (en) 2003-01-13 2011-05-31 International Business Machines Corporation Method, system, and program for specifying multidimensional calculations for a relational OLAP engine
US7895191B2 (en) * 2003-04-09 2011-02-22 International Business Machines Corporation Improving performance of database queries
US7509311B2 (en) * 2003-08-29 2009-03-24 Microsoft Corporation Use of statistics on views in query optimization
US7383246B2 (en) 2003-10-31 2008-06-03 International Business Machines Corporation System, method, and computer program product for progressive query processing
US7133861B2 (en) * 2003-12-04 2006-11-07 International Business Machines Corporation Query access plan rebuilds
US7779395B1 (en) * 2004-03-05 2010-08-17 Adobe Systems Incorporated System and method for routing data
US7707143B2 (en) * 2004-06-14 2010-04-27 International Business Machines Corporation Systems, methods, and computer program products that automatically discover metadata objects and generate multidimensional models
US20060100992A1 (en) * 2004-10-21 2006-05-11 International Business Machines Corporation Apparatus and method for data ordering for derived columns in a database system
US7359922B2 (en) * 2004-12-22 2008-04-15 Ianywhere Solutions, Inc. Database system and methodology for generalized order optimization
US20060230016A1 (en) * 2005-03-29 2006-10-12 Microsoft Corporation Systems and methods for statistics over complex objects
JP4784974B2 (en) * 2005-07-15 2011-10-05 株式会社日立製作所 Computer system, management computer, and database management system control method
US7966266B2 (en) * 2006-05-05 2011-06-21 Sap Ag Methods and systems for cost estimation based on templates
US7418529B2 (en) * 2006-05-12 2008-08-26 Apple Inc. Method and apparatus for communicating with an embedded controller which includes a reference to metadata objects within a computing device
EP1862956A1 (en) * 2006-05-29 2007-12-05 Sap Ag Systems and methods for assignment generation in a value flow environment
US20080077538A1 (en) * 2006-09-26 2008-03-27 Gregory Schebece Public Trade Execution Analytics
CN101196890B (en) * 2006-12-08 2010-06-16 国际商业机器公司 Method and device for analyzing information and application performance during polymerized data base operation
US20080147457A1 (en) * 2006-12-15 2008-06-19 Rapp Roman A Systems and methods for handling attributes used for assignment generation in a value flow environment
US7941425B2 (en) * 2007-07-25 2011-05-10 Teradata Us, Inc. Techniques for scoring and comparing query execution plans
US8903842B2 (en) * 2007-10-26 2014-12-02 Microsoft Corporation Metadata driven reporting and editing of databases
US8326824B2 (en) 2010-05-28 2012-12-04 International Business Machines Corporation Methods to estimate existing cache contents for better query optimization
US8812403B2 (en) 2010-11-08 2014-08-19 Microsoft Corporation Long term workflow management
US20120191639A1 (en) * 2011-01-26 2012-07-26 International Business Machines Corporation Statistics forecast for range partitioned tables
JP5657801B2 (en) * 2011-05-31 2015-01-21 株式会社日立製作所 Storage system and storage control method
US8359305B1 (en) 2011-10-18 2013-01-22 International Business Machines Corporation Query metadata engine
US9535932B1 (en) * 2012-06-29 2017-01-03 ParAccel, LLC Backup and restore of databases
CN104598519B (en) * 2014-12-11 2019-05-21 浙江浙大中控信息技术有限公司 A kind of database index system and processing method based on contiguous memory

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6477540B1 (en) * 1999-12-22 2002-11-05 Ncr Corporation Method and apparatus for using Java as a stored procedure language and as an embedded language on a client
US6591272B1 (en) * 1999-02-25 2003-07-08 Tricoron Networks, Inc. Method and apparatus to make and transmit objects from a database on a server computer to a client computer
US6594651B2 (en) * 1999-12-22 2003-07-15 Ncr Corporation Method and apparatus for parallel execution of SQL-from within user defined functions
US20030208490A1 (en) * 2001-06-15 2003-11-06 Jean-Jacques Larrea System and method for data storage, control and access
US20040006575A1 (en) * 2002-04-29 2004-01-08 Visharam Mohammed Zubair Method and apparatus for supporting advanced coding formats in media files
US6732084B1 (en) * 1999-12-22 2004-05-04 Ncr Corporation Method and apparatus for parallel execution of trigger actions
US20040123048A1 (en) * 2002-07-22 2004-06-24 Ward Mullins Dynamic object-driven database manipulation and mapping system having a simple global interface and an optional multiple user need only caching system with disable and notify features

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6591272B1 (en) * 1999-02-25 2003-07-08 Tricoron Networks, Inc. Method and apparatus to make and transmit objects from a database on a server computer to a client computer
US6477540B1 (en) * 1999-12-22 2002-11-05 Ncr Corporation Method and apparatus for using Java as a stored procedure language and as an embedded language on a client
US6594651B2 (en) * 1999-12-22 2003-07-15 Ncr Corporation Method and apparatus for parallel execution of SQL-from within user defined functions
US6732084B1 (en) * 1999-12-22 2004-05-04 Ncr Corporation Method and apparatus for parallel execution of trigger actions
US20030208490A1 (en) * 2001-06-15 2003-11-06 Jean-Jacques Larrea System and method for data storage, control and access
US20040006575A1 (en) * 2002-04-29 2004-01-08 Visharam Mohammed Zubair Method and apparatus for supporting advanced coding formats in media files
US20040123048A1 (en) * 2002-07-22 2004-06-24 Ward Mullins Dynamic object-driven database manipulation and mapping system having a simple global interface and an optional multiple user need only caching system with disable and notify features

Cited By (108)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7373350B1 (en) 2002-11-07 2008-05-13 Data Advantage Group Virtual metadata analytics and management platform
US7401064B1 (en) * 2002-11-07 2008-07-15 Data Advantage Group, Inc. Method and apparatus for obtaining metadata from multiple information sources within an organization in real time
US20060294055A1 (en) * 2003-03-13 2006-12-28 Santosuosso John M Byte-code representations of actual data to reduce network traffic in database transactions
US8250044B2 (en) 2003-03-13 2012-08-21 International Business Machines Corporation Byte-code representations of actual data to reduce network traffic in database transactions
US20080306920A1 (en) * 2003-03-13 2008-12-11 Santosuosso John M Byte-code representations of actual data to reduce network traffic in database transactions
US7433861B2 (en) * 2003-03-13 2008-10-07 International Business Machines Corporation Byte-code representations of actual data to reduce network traffic in database transactions
US8359296B2 (en) 2003-03-13 2013-01-22 International Business Machines Corporation Byte-code representations of actual data to reduce network traffic in database transactions
US20040181514A1 (en) * 2003-03-13 2004-09-16 International Business Machines Corporation Byte-code representations of actual data to reduce network traffic in database transactions
US20040181533A1 (en) * 2003-03-13 2004-09-16 International Business Machines Corporation Pre-formatted column-level caching to improve client performance
US7117222B2 (en) 2003-03-13 2006-10-03 International Business Machines Corporation Pre-formatted column-level caching to improve client performance
US20080126326A1 (en) * 2003-04-29 2008-05-29 Cognos Incorporated Database report generation
US7970783B2 (en) 2003-04-29 2011-06-28 International Business Machines Corporation Database report generation
US20050015367A1 (en) * 2003-04-29 2005-01-20 Cognos Incorporated System and method of formulating queries in relational databases
US20050021516A1 (en) * 2003-04-29 2005-01-27 Cognos Incorporated Database report generation
US7747651B2 (en) * 2003-04-29 2010-06-29 International Business Machines Corporation Metadata modelling for reporting
US20050022029A1 (en) * 2003-04-29 2005-01-27 Cognos Incorporated System and method for providing security mechanisms for data warehousing and analysis
US7296040B2 (en) 2003-04-29 2007-11-13 Cognos, Incorporated System and method of formulating queries in relational databases
US20050027674A1 (en) * 2003-04-29 2005-02-03 Cognos Incorporated Metadata modelling for reporting
US7293008B2 (en) 2003-04-29 2007-11-06 Cognos, Incorporated Database report generation
US7555786B2 (en) 2003-04-29 2009-06-30 International Business Machines Corporation Method for providing security mechanisms for data warehousing and analysis
US20080133470A1 (en) * 2003-09-11 2008-06-05 International Business Machines Corporation Background index bimapping for faster query performance
US7890495B2 (en) 2003-09-11 2011-02-15 International Business Machines Corporation Background index bimapping for faster query performance
US7401069B2 (en) * 2003-09-11 2008-07-15 International Business Machines Corporation Background index bitmapping for faster query performance
US20050060293A1 (en) * 2003-09-11 2005-03-17 International Business Machines Corporation Background index bitmapping for faster query performance
US20050165841A1 (en) * 2004-01-23 2005-07-28 Microsoft Corporation System and method for automatically grouping items
US7441186B2 (en) 2004-01-23 2008-10-21 Microsoft Corporation System and method for automatically grouping items
US20050177596A1 (en) * 2004-02-05 2005-08-11 Gansha Wu Storing method metadata in code
US7318062B2 (en) * 2004-02-05 2008-01-08 Intel Corporation Storing method metadata in code
US20090131115A1 (en) * 2005-02-07 2009-05-21 Martin Kretz Generic parser for electronic devices
US8229402B2 (en) 2005-02-07 2012-07-24 Sony Ericsson Mobile Communications Ab Generic parser for electronic devices
US20140317059A1 (en) * 2005-06-24 2014-10-23 Catalogic Software, Inc. Instant data center recovery
US9983951B2 (en) 2005-06-24 2018-05-29 Catalogic Software, Inc. Instant data center recovery
US10877852B2 (en) 2005-06-24 2020-12-29 Catalogic Software, Inc. Instant data center recovery
US9378099B2 (en) * 2005-06-24 2016-06-28 Catalogic Software, Inc. Instant data center recovery
US8650179B2 (en) * 2005-08-18 2014-02-11 International Business Machines Corporation Generating statistics for temporary tables during query optimization
US20070043697A1 (en) * 2005-08-18 2007-02-22 International Business Machines Corporation Generating statistics for temporary tables during query optimization
US7636735B2 (en) 2005-08-19 2009-12-22 International Business Machines Corporation Method for estimating the cost of query processing
US20070043696A1 (en) * 2005-08-19 2007-02-22 Haas Peter J Method for estimating the cost of query processing
US7415454B2 (en) * 2005-11-18 2008-08-19 Microsoft Corporation Allocation performance by query optimization
US20070118501A1 (en) * 2005-11-18 2007-05-24 Microsoft Corporation Allocation performance by query optimization
US20070198556A1 (en) * 2006-02-21 2007-08-23 Lawson Software, Inc. Data unification models
US8266147B2 (en) 2006-09-18 2012-09-11 Infobright, Inc. Methods and systems for database organization
US20090106210A1 (en) * 2006-09-18 2009-04-23 Infobright, Inc. Methods and systems for database organization
US20080071818A1 (en) * 2006-09-18 2008-03-20 Infobright Inc. Method and system for data compression in a relational database
US20080071748A1 (en) * 2006-09-18 2008-03-20 Infobright Inc. Method and system for storing, organizing and processing data in a relational database
US8838593B2 (en) 2006-09-18 2014-09-16 Infobright Inc. Method and system for storing, organizing and processing data in a relational database
US8700579B2 (en) 2006-09-18 2014-04-15 Infobright Inc. Method and system for data compression in a relational database
EP2080111A4 (en) * 2006-09-18 2012-06-27 Infobright Inc A method and system for storing, organizing and processing data in a relational database
EP2080111A1 (en) * 2006-09-18 2009-07-22 Infobright Inc. A method and system for storing, organizing and processing data in a relational database
US8452756B2 (en) * 2006-11-09 2013-05-28 International Business Machines Corporation Database execution detail repository
US20080114718A1 (en) * 2006-11-09 2008-05-15 Mark John Anderson Apparatus and method for database execution detail repository
WO2009009556A1 (en) * 2007-07-11 2009-01-15 Calpont Corporation Method and system for performing a scan operation on a table of a column-oriented database
US20090019029A1 (en) * 2007-07-11 2009-01-15 James Joseph Tommaney Method and system for performing a scan operation on a table of a column-oriented database
US20090049012A1 (en) * 2007-08-17 2009-02-19 International Business Machines Corporation Apparatus, system, and method for ensuring query execution plan stability in a database management system
US7644063B2 (en) 2007-08-17 2010-01-05 International Business Machines Corporation Apparatus, system, and method for ensuring query execution plan stability in a database management system
US9928255B2 (en) 2007-08-29 2018-03-27 Sesame Software, Inc. Method for generating indexes for downloading data
US8745029B2 (en) * 2007-08-29 2014-06-03 Richard Banister Method for generating indexes for downloading data
US20110082864A1 (en) * 2007-08-29 2011-04-07 Sesame Software, Inc. Method for generating indexes for downloading data
US9734200B2 (en) * 2007-09-14 2017-08-15 Oracle International Corporation Identifying high risk database statements in changing database environments
US20150324432A1 (en) * 2007-09-14 2015-11-12 Oracle International Corporation Identifying high risk database statements in changing database environments
US8060495B2 (en) 2008-10-21 2011-11-15 International Business Machines Corporation Query execution plan efficiency in a database management system
US20100114868A1 (en) * 2008-10-21 2010-05-06 International Business Machines Corporation Query execution plan efficiency in a database management system
WO2010060179A1 (en) * 2008-11-28 2010-06-03 Infobright Inc. Methods for organizing a relational database by using clustering operations
US8805852B2 (en) 2009-03-02 2014-08-12 International Business Machines Corporation Automatic query execution plan management and performance stabilization for workloads
US20100223253A1 (en) * 2009-03-02 2010-09-02 International Business Machines Corporation Automatic query execution plan management and performance stabilization for workloads
WO2010120457A3 (en) * 2009-04-01 2011-01-13 Sybase, Inc. Dynamic hash table for efficient data access in a relational database system
US20100257181A1 (en) * 2009-04-01 2010-10-07 Sybase, Inc. Dynamic Hash Table for Efficient Data Access In A Relational Database System
US20130060753A1 (en) * 2010-02-25 2013-03-07 Maxim Lukichev Optimization Method And Apparatus
US20110282851A1 (en) * 2010-05-12 2011-11-17 Microsoft Corporation Getting dependency metadata using statement execution plans
US8862563B2 (en) * 2010-05-12 2014-10-14 Microsoft Corporation Getting dependency metadata using statement execution plans
US8521748B2 (en) 2010-06-14 2013-08-27 Infobright Inc. System and method for managing metadata in a relational database
US8943100B2 (en) 2010-06-14 2015-01-27 Infobright Inc. System and method for storing data in a relational database
US8417727B2 (en) 2010-06-14 2013-04-09 Infobright Inc. System and method for storing data in a relational database
US11636107B2 (en) 2012-04-27 2023-04-25 Hitachi, Ltd. Database management system, computer, and database management method
US10417227B2 (en) * 2012-04-27 2019-09-17 Hitachi, Ltd. Database management system, computer, and database management method
US20150112967A1 (en) * 2012-04-27 2015-04-23 The University Of Tokyo Database management system, computer, and database management method
US9626411B1 (en) 2013-02-25 2017-04-18 EMC IP Holding Company LLC Self-described query execution in a massively parallel SQL execution engine
US10572479B2 (en) 2013-02-25 2020-02-25 EMC IP Holding Company LLC Parallel processing database system
US11436224B2 (en) * 2013-02-25 2022-09-06 EMC IP Holding Company LLC Parallel processing database system with a shared metadata store
US11354314B2 (en) 2013-02-25 2022-06-07 EMC IP Holding Company LLC Method for connecting a relational data store's meta data with hadoop
US20180276274A1 (en) * 2013-02-25 2018-09-27 EMC IP Holding Company LLC Parallel processing database system with a shared metadata store
US10120900B1 (en) * 2013-02-25 2018-11-06 EMC IP Holding Company LLC Processing a database query using a shared metadata store
US20190005093A1 (en) * 2013-02-25 2019-01-03 EMC IP Holding Company LLC Processing a database query using a shared metadata store
US11281669B2 (en) 2013-02-25 2022-03-22 EMC IP Holding Company LLC Parallel processing database system
US11120022B2 (en) 2013-02-25 2021-09-14 EMC IP Holding Company LLC Processing a database query using a shared metadata store
US9594803B2 (en) 2013-02-25 2017-03-14 EMC IP Holding Company LLC Parallel processing database tree structure
US9805092B1 (en) 2013-02-25 2017-10-31 EMC IP Holding Company LLC Parallel processing database system
US10963426B1 (en) 2013-02-25 2021-03-30 EMC IP Holding Company LLC Method of providing access controls and permissions over relational data stored in a hadoop file system
US10540330B1 (en) 2013-02-25 2020-01-21 EMC IP Holding Company LLC Method for connecting a relational data store's meta data with Hadoop
US10936588B2 (en) 2013-02-25 2021-03-02 EMC IP Holding Company LLC Self-described query execution in a massively parallel SQL execution engine
US9454573B1 (en) 2013-02-25 2016-09-27 Emc Corporation Parallel processing database system with a shared metadata store
US11106696B2 (en) 2014-02-19 2021-08-31 Snowflake Inc. Resource provisioning systems and methods
US11580070B2 (en) * 2014-02-19 2023-02-14 Snowflake Inc. Utilizing metadata to prune a data set
US10545917B2 (en) * 2014-02-19 2020-01-28 Snowflake Inc. Multi-range and runtime pruning
US10963428B2 (en) * 2014-02-19 2021-03-30 Snowflake Inc. Multi-range and runtime pruning
US11928129B1 (en) 2014-02-19 2024-03-12 Snowflake Inc. Cloning catalog objects
US11042566B2 (en) 2014-02-19 2021-06-22 Snowflake Inc. Cloning catalog objects
US11086900B2 (en) 2014-02-19 2021-08-10 Snowflake Inc. Resource provisioning systems and methods
US20160034486A1 (en) * 2014-02-19 2016-02-04 Snowflake Computing Inc. Multi-Range and Runtime Pruning
US11599556B2 (en) 2014-02-19 2023-03-07 Snowflake Inc. Resource provisioning systems and methods
US11321352B2 (en) 2014-02-19 2022-05-03 Snowflake Inc. Resource provisioning systems and methods
US10417099B1 (en) * 2015-07-30 2019-09-17 EMC IP Holding Company LLC Resilient backups for large Hyper-V cluster shared volume environments
US10223399B2 (en) 2015-11-03 2019-03-05 International Business Machines Corporation Global filter factor estimation
WO2017076152A1 (en) * 2015-11-03 2017-05-11 International Business Machines Corporation Global filter factor estimation
US10229149B2 (en) 2015-11-03 2019-03-12 International Business Machines Corporation Global filter factor estimation
US20180096032A1 (en) * 2016-09-30 2018-04-05 Sap Se Metadata application programming interface for ad hoc database queries
CN110362572A (en) * 2019-06-25 2019-10-22 浙江邦盛科技有限公司 A kind of time series database system based on column storage
CN110780950A (en) * 2019-10-24 2020-02-11 深圳前海环融联易信息科技服务有限公司 Interface metadata management method and device, computer equipment and storage medium

Also Published As

Publication number Publication date
US6996556B2 (en) 2006-02-07

Similar Documents

Publication Publication Date Title
US6996556B2 (en) Metadata manager for database query optimizer
US8346761B2 (en) Method and system for data mining for automatic query optimization
US7917498B2 (en) Method and system for dynamic join reordering
US8650179B2 (en) Generating statistics for temporary tables during query optimization
US6801903B2 (en) Collecting statistics in a database system
US6505187B1 (en) Computing multiple order-based functions in a parallel processing database system
US7617181B2 (en) Optimization of database network traffic based upon data-use analysis
US6999958B2 (en) Runtime query optimization for dynamically selecting from multiple plans in a query based upon runtime-evaluated performance criterion
US6915291B2 (en) Object-oriented query execution data structure
US6754652B2 (en) Database query optimizer framework with dynamic strategy dispatch
US7249118B2 (en) Database system and methods
US8903841B2 (en) System and method of massively parallel data processing
US6910032B2 (en) Parallel database query processing for non-uniform data sources via buffered access
US8024321B2 (en) Dynamic look ahead predicate generation
US20050154740A1 (en) Method and system for a self-healing query access plan
US7996386B2 (en) Tracking premature termination of a database query
US20230418824A1 (en) Workload-aware column inprints
US7720840B2 (en) Method applying transitive closure to group by and order by clauses
US20060085375A1 (en) Method and system for access plan sampling
Rodríguez-Mazahua et al. Active rule base development for dynamic vertical partitioning of multimedia databases
US7127457B1 (en) Method and system for executing database queries
Bellatreche et al. Some issues in design of data warehousing systems
AlHammad et al. Performance evaluation study of data retrieval in data warehouse environment
US8527498B1 (en) Method and system for organizing values of alternative equality conditions
Cuzzocrea et al. Yet Another Automated OLAP Workload Analyzer: Principles, and Experiences.

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:BOGER, CURTIS NEAL;EDWARDS, JOHN FRANCIS;EGAN, RANDY LYNN;AND OTHERS;REEL/FRAME:013218/0368;SIGNING DATES FROM 20020807 TO 20020820

FEPP Fee payment procedure

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

REMI Maintenance fee reminder mailed
FPAY Fee payment

Year of fee payment: 8

SULP Surcharge for late payment

Year of fee payment: 7

FPAY Fee payment

Year of fee payment: 12

AS Assignment

Owner name: ALIBABA GROUP HOLDING LIMITED, HONG KONG

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTERNATIONAL BUSINESS MACHINES CORPORATION;REEL/FRAME:053970/0339

Effective date: 20201002

AS Assignment

Owner name: ALIBABA GROUP HOLDING LIMITED, CAYMAN ISLANDS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTERNATIONAL BUSINESS MACHINES CORPORATION;REEL/FRAME:055276/0025

Effective date: 20201021

AS Assignment

Owner name: ALIBABA GROUP HOLDING LIMITED, CAYMAN ISLANDS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTERNATIONAL BUSINESS MACHINES CORPORATION;REEL/FRAME:055339/0415

Effective date: 20201021