Platform-independent method and system for graphically presenting the evaluation of a query in a database management system6725212Abstract A method and system for graphically representing a plan for a query in a relational database management system is disclosed. The method includes receiving and processing an input query to form a plurality of plans, selecting at least one plan of the plurality of plans, and transforming the selected plan into a self-describing formatted file which is platform independent. The method further includes generating a graph representing the selected plan from the self-describing formatted file. Claims What is claimed is: Description FIELD OF THE INVENTION
TABLE 1
SELECT Mgrtabl.Name
FROM Emptabl, Mgrtabl, Dbatabl
WHERE Emptabl.Salary=Dbatabl.Salary AND
Emptabl.Dept=Dbatabl.Dept
One of ordinary skill in the art will understand that "Mgrtabl.Name" indicates a Name column for Table Mgrtabl. Depending on the RDBMS platform, SQL statements will vary because the RDBMS platforms are defined differently and/or may offer different functionality. While a query allows the user to specify the data desired, it does not detail how the data will be retrieved from the tables. In general, there may be several ways to retrieve the data that answers a given query. Accordingly, a query optimizer is utilized in the RDBMS to determine the most cost-effective way to retrieve the data. FIG. 1 is a high-level block diagram of query processing in a query compiler that could be used with the present invention. As is shown, an input SQL query 300, which can be an actual query or some other command, is typically rewritten by a parser 310 into a RDBMS internal representation, which can then be converted into a query graph model (QGM) 320. Conceptually, the QGM 320 is a high-level, graphical representation of a statement, such as the input query 300, in which boxes represent relational operations and arcs connecting the boxes represent quantifiers that reference tables. It should be noted that not every query optimizer uses the QGM 320 to represent a statement. Other RDBMS platforms might, for instance, convert the input query 300 into a proprietary format different from a QGM 320. Nevertheless, as will be discussed below, the format of the RDBMS internal representation is not material to the present invention. Thus, for purposes of this discussion, the QGM 320 is illustrative rather than limiting. The internal representation of the input query 300, in this case the QGM 320, undergoes various refinements during query processing. For instance, Query Global Semantics 330 and Query Rewrite Transform 340 are two typical processes that refine the QGM 320. At each stage of query processing, the evolving QGM 320 represents a transitional statement or plan (referred to as "QGM transition plans"), which can be written to a query EXPLAIN table 350, so that a developer can evaluate the QGM transition plans 320 at intermediary stages of query processing. After the QGM 320 is refined, cost-based plan optimization 360 is performed whereby the QGM 320 is graphically traversed and a plurality of query execution plans (QEPs) are generated. The QEPs represent alternative ways of processing the data requested in the input query 300. Each QEP is compared to determine which of them is the most cost-efficient. The most cost-efficient query plan is referred to as the best QEP 370 or BQEP. The cost-based optimization process 360 can be performed using a number of different techniques, as is well known to one skilled in the art. For purposes of this discussion, however, the method utilized for cost-based optimization 360 is not material, and therefore, requires no further elaboration. After the BQEP 370 is selected, it is further refined by a threaded code generator 380. The threaded code generator 380 creates a plan section 390 of executable code for each input SQL statement 300. The plan section 390 is then executed by the RDBMS at run time. FIG. 2 illustrates a graphical representation of the BQEP 10 of the query in Table 1 above. As is shown, the BQEP 10 can be represented in a work-flow graph of operators, in which each node 12a-12k of the graph represents either a source database object, e.g. a table, containing rows and columns in an RDBMS (12g, 12j, 12k), or some operation to the data (12a-12f, 12h, 12i, 12j). Each arc of the graph 14a-14j represents the flow of data between two or more operations, or between an object and an operation. Thus, a path in this graph represents the flow of data from its raw form stored in the database to the finished form requested by the user in her query. While the graphical representation in FIG. 2 is helpful to the user in visualizing and evaluating the access path of a query, unless specifically requested, the query optimizer does not generate a graphical representation of the BQEP or any other plan. Rather, the plan section (FIG. 1, item 390) is generated in a proprietary format of the RDBMS, which is typically not user readable. If requested by the user, the BQEP 370 can be written to one or more tables, collectively known as an EXPLAIN table (FIG. 1, item 380). Thus, in order to evaluate the BQEP, the user must analyze the EXPLAIN table 380. This can be a daunting task because the EXPLAIN table 380 is not an intuitive, i.e. user friendly, representation of the BQEP 370, especially if the BQEP 370 is complicated. Accordingly, evaluation of the BQEPs 370 based on the EXPLAIN table 380 is tedious and time consuming. Moreover, while input queries 300 are typically written in SQL, the resulting plans, e.g., QGM transition plans, query execution plans and the BQEP 370, are platform dependent. The major database management system platforms supporting SQL, including DB2, SQL/DS, Oracle, Sybase, SQLbase, INFORMIX and CA-Openlngres (Ingres), each have their own enhancements, quirks and tricks, such that plans generated by each platform vary from one platform to the other based on platform specific formats. Therefore, any application that reads plans from different database management system platforms would be required to be customized in order to understand the plans. This type of maintenance is error-prone and unmanageable. Accordingly, a need exists for a method and system for representing plans, including QGM transition plans and QEPs, in a graphical manner, such that the user can visualize the plans in a comprehensive manner. The method and system should be platform independent, so that plans generated by different database management system platforms can be presented to the user without regard to the system platform. The present invention addresses such a need. SUMMARY OF THE INVENTION A platform independent method and system for graphically representing a plan, including a query execution plan, for a query in a relational database management system is disclosed. The method includes receiving and processing an input query to form a plurality of plans, selecting at least one plan of the plurality of plans, and transforming the selected plan into a self-describing formatted file which is platform independent. The method further includes generating a graph representing the selected plan from the self-describing formatted file. Through aspects of the present invention, any plan, including a best query execution plan for a query and QGM transition plans, generated from any RDBMS platform is represented as a self-describing formatted file, which is then used to generate a graph representing the plan. Because the self-describing formatted file is independent of the RDBMS platform, a graphing tool, which reads the self-describing formatted file, need not understand or differentiate between platforms. In essence, the RDBMS becomes transparent to the graphing tool. Thus, application software updates to the graphing tool in order to accommodate new database system platforms are eliminated. Moreover, because the present invention utilizes a self-describing file (i.e., extensible), nuances from each platform can be captured and conveyed to the graphing tool. BRIEF DESCRIPTION OF THE DRAWINGS FIG. 1 illustrates a high-level block diagram of query processing in a query compiler. FIG. 2 illustrates a graphical representation of a query execution plan. FIG. 3 is a block diagram of the system in accordance with a preferred embodiment of the present invention. FIG. 4 is a flow chart illustrating the process of graphically representing a query execution plan in accordance with a preferred embodiment of the present invention. FIG. 5 is an illustrative definition type document in accordance with a preferred embodiment of the present invention. FIG. 6 is an illustrative algorithm written in pseudo code, for generating an XML file from the query execution plan generated by the query compiler. FIG. 7 is an illustrative XML file corresponding to a query execution plan for a query in accordance to a preferred embodiment of the present invention. FIG. 8 illustrates the graphical representation of the XML file corresponding to the query execution plan for the query in accordance to a preferred embodiment of the present invention. DETAILED DESCRIPTION The present invention relates generally to database management systems and, more particularly, to a generic and extensible technique for capturing and saving a description of the BQEP in a platform-independent data exchange format, as well as, for graphically presenting the evaluation of a query in a database management system. The following description is presented to enable one of ordinary skill in the art to make and use the invention and is provided in the context of a patent application and its requirements. Various modifications to the preferred embodiment and the generic principles and features described herein will be readily apparent to those skilled in the art. Thus, the present invention is not intended to be limited to the embodiment shown but is to be accorded the widest scope consistent with the principles and features described herein. FIG. 3 is a schematic block diagram of a system 100 in accordance with a preferred embodiment of the present invention. The system 100 includes a client system 110 and a server system 120. Typically, the client system 110 is a workstation or computer, which is in communication with the server 120 via LAN or WAN (not shown), as is well known to one skilled in the art. Although only one client system 110 is depicted, one skilled in the art will readily appreciate that a plurality of client systems (not shown) are typically in communication with the server 120. The server 120 includes a RDBMS 130 that manages access to data 132 stored in the relational database tables. The RDBMS 130 can be, for example, a DB2/390 system developed by International Business Machines, Corp., Armonk, N.Y. The RDBMS 130 includes an SQL compiler 134 that receives input queries 160 from client systems 110. The SQL compiler 134 includes a query optimizer 135 for evaluating the query 160 and producing a plurality of plans, including a BQEP 136. The SQL compiler 134 is coupled to a self-describing formatted file (SDF file) generator 138, which in turn is coupled to Explain Tables 137 and Catalog Tables and Statistics 139. The client system 110 includes a graphing and display tool, such as a Visual Explain module 140, and a display monitor 150. The Visual Explain module 140 receives the SDF file 112 from the RDBMS 130 in response to its input query 160. The Visual Explain module 140 includes a SDF file processor 142, which analyzes the SDF file 112. The SDF file processor 142 is coupled to a graph generator 144, which is coupled to the client's display monitor 150. To explain better the preferred embodiment of the present invention, please refer now to FIGS. 3 and 4. FIG. 4 is a high level flowchart illustrating a method 200 in accordance with the present invention. As is shown, the method starts with step 210, where the user submits an input query 160 to the RDBMS 130 for query processing. The input query 160 is typically written in SQL. The SQL compiler 134 in the RDBMS 30 receives the query 160 in step 220, and in step 230, compiles the query and generates a plurality of plans, including a BQEP 136 for the query 160. In this embodiment, the BQEP 136 is then passed to the SDF file generator 138, which generates a SDF file 112 describing a graphical representation of the BQEP 136, via step 240. The SDF file 112 is then sent to the client system 110 in step 250, where it is received by the SDF file processor 142 in the Visual Explain module 140, via step 260. The SDF file processor 142 reads and interprets the SDF file 112 and instructs the graph generator 144 to build the graphical representation of the BQEP 136 embodied in the SDF file 112, via step 270. In the final step 280, the graph is displayed to the user on the client system's monitor 150. In the description above, the plan 136 passed to the SDF file generator 138 is the best query execution plan. Nonetheless, the present invention is not limited only to the best query execution plans. Rather, depending upon the desires of the user, other plans, such as QGM transition plans or QEPs which are not selected as the BQEP, could be passed from the optimizer 135 to the SDF file generator 138 and represented in an SDF file 112. Such information would be valuable to a developer designing the query optimizer 135 because then she could easily evaluate the plans generated at various stages of query processing. In the preferred embodiment, the SDF file 112 is platform independent, that is, it is not written in the proprietary format particular to the RDBMS 130. Thus, when the SDF file 112 arrives at the client system 110, the Visual Explain module 140 has no idea, nor does it care, from which RDBMS platform 130 the SDF file 112 originated. In addition, the SDF file 112 is extensible so that it can describe the nuances presented by different RDBMS platforms. In accordance with the preferred embodiment of the present invention, the SDF file 112 is preferably written in Extensible Markup Language (XML). XML is an open standard for describing data by means of tags that identify elements in a document and define what those elements contain. XML typically represents data of a hierarchical data structure ("tree structure"), i.e., data with a traditional direct parent-child relationship, where each child has a single parent. Thus, an XML document can be represented as a tree of elements. XML is an extensible language because it allows the developer to define the tags. Thus, virtually any data item can be identified. While the tags are preferably defined in a document type definition (DTD), which can be embedded within an XML file or provided in a separate document, other document schema, such as XML schema, and RDF schema, could be utilized, as would be well known to those skilled in the art. FIG. 5 is an illustrative DTD that can be used with the present invention. As is shown, elements are defined as having one or more attributes. So, for example, the element "Application_Explain_Data" 410 is defined by its attributes "Application_ID" 412, "DB_Configuration_Parms?" 413, "Bind_Parameters?" 414, and "Stmt_Access_Plan+" 415, which are listed in parentheses following the element. Each attribute 412-415 can in turn have its own set of attributes. According to the present invention, the DTD provides a fixed set of tags that define common elements, such as nodes and arcs, to facilitate the development of common tools for plans. As stated above, nodes can represent an operator or an object, such as a table or an index. Thus, the element "Node" is defined by its name and operator/object 420. Furthermore, within each node, detailed information about the node, such as table statistics, can be specified by XML tags 430 in the DTD. Thus, the detailed information is defined and associated with the node and is easily accessible if needed. The DTD defines an element "Arc" 440 as a paired list of the identification of a parent node and its child node, and allows control over the direction of the arc. The arc represents the flow of data from the table to the user. So, for example, consider the XML data in Table 2:
TABLE 2
<node id=1> A </node>
<node id=2> K </node>
<node id=3> R </node>
<graph_arcs>
<from_node_id>2</from_node_id>
<to_node_id>1</to_node_id>
<from_node_id>3</from_node_id>
<to_node_id>1</to_node_id>
</graph_arcs>
The graphical representation would comprise three nodes (A, K and R), where nodes K and R are the children of node A. As stated above, XML is an extensible language. The DTD can not only define the tags, but it can also specify whether the tags are fixed or open-ended, or some combination of the two. Thus, the DTD can accommodate evolving information about a plan, such as an execution plan. Furthermore, tags can be defined within the XML file, i.e. independent from the DTD. Such "self-describing" tags that are not explicitly specified in the DTD are treated simply as a label for the corresponding data. So, for instance, if the tag "cost" is not defined by a DTD, and the sequence "<cost>47.693</cost>" appears in the XML file, a display tool, such as the Visual Explain module 140, will simply use the tag string "cost" to label the number following it, and display: Cost: 47.693 Utilizing a self-describing file, such as the XML file, provides flexibility and reduces maintenance efforts. For example, the problem of old versions of the application becoming obsolete and incompatible with newer versions of the application (i.e., version obsolescence) is virtually eliminated because whatever element is not defined by the DTD will still be displayed. Accordingly, by describing the plan in XML, a standard extensible language can be utilized to capture the nuances of a plan produced by any database management system. Because this allows the Visual Explain module 140 to be platform independent, new database management system platforms can be accommodated without product (e.g., software) updates. As stated above, in the preferred embodiment of the present invention, the XML file describing the plan is generated by the SDF file generator 138 in the RDBMS 130. Referring to FIG. 6, one computer-implemented program written in pseudo code is given for generating an XML file from the plan generated by the query optimizer 135. In general, the SDF file generator 138 analyzes the plan as a tree structure, traverses the tree structure and maps the plan operators to the XML using the definitions provided in the DTD. FIG. 7 is an XML file 500 representing a graphical presentation of a best query execution plan for a query in Table 3.
TABLE 3
SELECT SALARY FROM EMPTABL
WHERE SALARY = 200 OR SALARY = 50000
FIG. 8 is the associated graphical representation 600 of the best query execution plan for the query. As is seen in FIG. 7, four nodes 510 are defined in the XML file. Node Four 520 is a table (type) named "EMPTABL." Node Three 530 is an index type named "IDXD1." Both Nodes Three and Four are objects, while Nodes One and Two are operators. The XML file 500 further defines the arcs between the nodes at 540. Note that each node also contains nested information. For example, object type nodes (e.g., Node Three 530 and Four 520), include "schema" and "owner" information, while operator type nodes (e.g., Nodes One and Two 535), include property details, category name, and other item details. The XML file processor (FIG. 3, 142) reads the XML file 500 and identifies all the tags. After validating the tags against the DTD, the XML file processor passes the data to the graph generator (FIG. 3, 144). Referring now to FIG. 8, the resulting graph 600 generated from XML file 500 has four (4) nodes 610-640, where Node Four 610 is a named "EMPTABL," and Node Three 620, is named "IDXD1." Nodes One 640 and Two 630 are depicted as operators SELECT and IXScan, respectively. If the user were to select (e.g., "click") one of the nodes, the nested information provided in the XML file 500, for instance schema and owner information for Node 4 (520), would be displayed. In addition, object statistics (e.g., table or index statistics) are also nested within the graph 600 and available to the user. Accordingly, through aspects of the present invention, XML is advantageously used as a lingua franca to describe a plan for a query generated from any RDBMS platform. Because the XML file is independent of the RDBMS platform, there is no need for the client system to understand or differentiate between platforms. In essence, the RDBMS becomes transparent to the client. Thus, application software updates to the client system in order to accommodate new database system platforms are unnecessary. Moreover, because the XML file is a self-describing document (i.e., extensible), nuances from each platform can be captured and conveyed to the client graphing and display tool (e.g., Visual Explain module) and incorporated into the graph displayed. Although the present invention has been described in accordance with the embodiments shown, one of ordinary skill in the art will readily recognize that there could be variations to the embodiments and those variations would be within the spirit and scope of the present invention. For instance, the algorithm discussed for translating the plan into an XWL file is illustrative. One skilled in the art would readily recognize that other methods of translation are available, and those methods would fall within the scope of the present invention. Accordingly, many modifications may be made by one of ordinary skill in the art without departing from the spirit and scope of the appended claims.
|
Same subclass Same class Consider this |
||||||||||
