The present invention relates to XPath expressions and their use in querying relational databases for elements in XML documents and, more specifically, to representing XPath expressions in a tree format.
Because of the popularity of XML as a data exchange format that supports hierarchical relationships among elements, and because of the power of relational database management systems (DBMSs) to update and retrieve data, there is a demand for generating XML data output from relational databases and storing XML data into relational databases.
XPath is a language for addressing XML documents. XPath also provides basic facilities for manipulation of strings, numbers and Booleans. XPath operates on the abstract, logical structure of an XML document, rather than its surface syntax. XPath gets its name from its use of a path notation, as in URLs, for navigating through the hierarchical structure of an XML document.
The primary syntactic construct in XPath is the expression, which is evaluated to yield an object. XPath expressions are described in Section 3 (“Expressions”) of “XML Path Language (XPath)” (version 1.0). One important kind of expression is a location path. A location path selects a set of nodes relative to a context node. The result of evaluating an expression that is a location path is the node-set containing the nodes selected by the location path. Location paths can recursively contain expressions that are used to filter sets of nodes. The semantics of location paths are described in Section 2 (“Location Paths”) of “XML Path Language (XPath)” (version 1.0).
To be used in querying XML documents in a database, an XPath expression must be converted to statements that conform to the database language supported by the database server that manages the database. Structured Query Language (SQL) is a database language supported by many database servers. Thus, for an XPath expression to be used to query XML documents managed by a database server that supports SQL, the XPath expression must be converted to statements that conform to the SQL language (“SQL statements”).
According to contemporary implementations, in order to convert XPath expressions into SQL statements, the XPath expression is broken up into a linked list of path components.
Based on the foregoing, it is clearly desirable to provide techniques to reduce the processing time of XPath expressions.
The approaches described in this section are approaches that could be pursued, but not necessarily approaches that have been previously conceived or pursued. Therefore, unless otherwise indicated, it should not be assumed that any of the approaches described in this section qualify as prior art merely by virtue of their inclusion in this section.
The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings and in which like reference numerals refer to similar elements and in which:
In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.
According to an embodiment of the invention, an XPath expression is converted into a tree-based representation where each node represents an operation to be performed and the links between nodes in the tree represent the flow of data between operations.
In one embodiment, the conversion involves creating a parse tree for the XPath expression, and then converting the parse tree into an operator tree. The operator tree is constructed in such a way that execution of the XPath expression begins at the leaf nodes of the operator tree, and the results are then passed up the tree. After each node is executed, the results are either (1) passed to a filter that filters the results with a predicate statement or (2) passed to another node to be operated upon. This occurs until no nodes remain to be executed.
Some features of an operator tree are that such a tree implementation is more amenable to query rewrites that convert the xpath into an equivalent SQL on the XML Index. With the ability to rewrite the operator tree into SQL simply, the processing time of executing the query can be reduced and the full power of the SQL query optimizer can be used to generate fast and optimal execution plans that use the XML Index tables.
In present systems, a linked list is created for an XPath expression.
Referring to
According to one embodiment, instead of executing XPath operations based on the simple parsed tree representation thereof, an XPath operator tree is created in order to take advantage of query plan optimizations and query rewrites. Before the structure of the operator tree is described, a description of the operators is given.
Operators are defined for XPath 1.0 which work on rows of the form (<orderkey, type, nodelocation/nodevalue>), where “orderkey” is the Dewey key for the node, “type” is the type of the node, “nodelocation” is the location of the node, and “nodevalue” is the scalar value of the node. When “type” equals “SCALAR”, then the last element of the tuple contains the node value. For complex types, the third element in the row contains the node locator. These fields can be generated either by a SAX decoder on the XML data or by the rows stored in the XML Index path table.
An XPath parse tree may be converted into an operator tree using the techniques that are described in greater detail hereafter. This conversion is defined below in addition to all the operators being listed. Execution semantics of these operators and any assertions of their inputs and/or outputs are provided.
In one embodiment, the following passes are made over the parse tree of an XPath expression in order to convert the parse tree into an operator tree. The phases include Normalization, Conversion, Index SQL generation and Execution. Each of these phases shall be described in greater detail hereafter.
A parse tree includes components that are referred to herein as axes. An axis specifies the relationship between the nodes selected by the component and the node on which it is applied. An axis may be either “forward” or “reverse”. A forward axis is an axis that specifies child, descendant and following relationships. In contrast, a reverse axis is an axis that specifies parent, ancestor and preceeding relationships. A forward axis selects nodes that appear after the context node in the document. A reverse axis on the other hand selects nodes that appear before the context node in the document. Apart from these axes a self axis selects the context node itself.
In the Normalization phase, a normalized parse tree is created from the input parse tree by converting reverse axes into forward axes wherever possible. Well known algorithms are used to do this conversion. Intuitively, for example, an xpath component of the form b/ancestor::a can be rewritten into a[./descendant::b]. Similarly, b/preceeding::a is equivalent to a[./following::b]. The normalization phase applies these rules to the xpath parse tree and generates an equivalent xpath parse tree.
In the Conversion phase, actual conversion of the parse tree into an operator tree is performed. Specifically, an XPath expression may include location steps, predicates, built-in functions, and built-in operators. For each of these components the conversion rules needed to generate the operator tree are as follows.
A location step has two components: axis and node test. Depending on the axis the following operators are generated:
Each of these operators additionally contains two fields in their context, which specifies the node test component of the location step. These files are testType and testData. For the different node tests the values for these fields are indicated below:
For every predicate defined on the location step, a filter operator is defined which has on its right hand side the operator tree corresponding to the relation predicate. For example,
The results of node 256 are then passed to filter 280, which passes each row, one at a time, to pipe 260. Thus, for each row, the predicate c=1 is evaluated. First, at node 262, it is determined whether the row /a/b has a child c. If the row has a child c, then the row is evaluated to determine whether the node has a value equal to 1. If the node has a value equal to 1, then a 1 is generated to indicate that the particular row evaluated to true. The generated 1 is passed to filter 280 indicating that the particular row passed to pipe 260 evaluated to true. If the node does not have a value equal to 1, then a zero is generated and subsequently passed to filter 280 indicating that the particular row passed to pipe 260 evaluated to false. A row that evaluates to true is passed through filter 280 to be either displayed to a user or utilized by another process, depending on the context for which XPath expression 210 was initially produced.
With respect to built-in operators, there is a one-to-one correspondence between the parse operators and the operators in the operator tree. The conversion rules are as follows.
After the conversion phase, well defined rules are applied to generate the Index SQL equivalent to the xpath expression. The examples of most commonly used rules are as follows:
Simple Paths
Expressions of type /a/b/c which have no other axes apart from child axes and which do not have any filters on the axis paths are rewritten to the following SQL:
Descendant Axes
Expressions of the type P1//P2(where sql corresponds to the rewritten SQL for expression P1 and P2 is a simple path) are rewritten using the SQL shown below:
Wildcards
Expressions of the type P1/* (where sql corresponds to the rewritten SQL for the expression P1 and P2 is a simple expression) are rewritten using the SQL shown below:
Converting/text( ) Functions
Expressions of the form P1/text( ) are rewritten to the following SQL expression:
Filter expressions: Expressions of the type P1 [F(P2)] where P1 is a path expression, F is the filter defined on the relative path P2 and sql1 and sql2 are the index sqls for P1 and P1/P2, are rewritten to the following SQL:
Logical expressions: Expression of the type E1 op E2 where op=(AND, OR) and sql1 and sql2 represent the index sqls for E1 and E2 are rewritten using the following rule:
Relational operators: Operators of the type E1 op E2 where op=(=, !=, >, <etc.) and sql1 and sql2 represent the index SQLs for E1 and E2 are rewritten using the following rule:
Literals: The literals are converted into the following index sqls:
The application of these rules is done recursively on the xpath operator tree. At any node the, SQL is first generated for its children and then plugged into the corresponding rewrite template of that node.
Typically the query generation phase will generate a single SQL for the entire xpath tree in case an XML Index is present on the base table. However, certain tree patterns may not be rewritable into SQL. For such situations, some part or the entire tree may not be converted into SQL. The execution phase provides a mechanism to evaluate such trees. It reverts to functionally evaluating the operators according to their execution semantics as detailed in the operator table. Any base documents are converted into the row tuples by an XML pull parser, as described previously.
The following table lists all the operators, their arguments, the types of the arguments, the output type, any information needed in the context area, and the execution semantics.
Computer system 300 may be coupled via bus 302 to a display 312, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 314, including alphanumeric and other keys, is coupled to bus 302 for communicating information and command selections to processor 304. Another type of user input device is cursor control 316, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
The invention is related to the use of computer system 300 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are performed by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306. Such instructions may be read into main memory 306 from another machine-readable medium, such as storage device 310. Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
The term “machine-readable medium” as used herein refers to any medium that participates in providing data that causes a machine to operation in a specific fashion. In an embodiment implemented using computer system 300, various machine-readable media are involved, for example, in providing instructions to processor 304 for execution. Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 310. Volatile media includes dynamic memory, such as main memory 306. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302. Transmission media can also take the form of acoustic or light waves, such as those generated during radio-wave and infra-red data communications.
Common forms of machine-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, any other optical medium, punchcards, papertape, any other physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
Various forms of machine-readable media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 300 can receive the data on the telephone line and use an infra-red transmitter to convert the data to an infra-red signal. An infra-red detector can receive the data carried in the infra-red signal and appropriate circuitry can place the data on bus 302. Bus 302 carries the data to main memory 306, from which processor 304 retrieves and executes the instructions. The instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304.
Computer system 300 also includes a communication interface 318 coupled to bus 302. Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322. For example, communication interface 318 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
Network link 320 typically provides data communication through one or more networks to other data devices. For example, network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326. ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328. Local network 322 and Internet 328 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are exemplary forms of carrier waves transporting the information.
Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318. In the Internet example, a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318.
The received code may be executed by processor 304 as it is received, and/or stored in storage device 310, or other non-volatile storage for later execution. In this manner, computer system 300 may obtain application code in the form of a carrier wave. In the foregoing specification, embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation. Thus, the sole and exclusive indicator of what is the invention, and is intended by the applicants to be the invention, is the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction. Any definitions expressly set forth herein for terms contained in such claims shall govern the meaning of such terms as used in the claims. Hence, no limitation, element, property, feature, advantage or attribute that is not expressly recited in a claim should limit the scope of such claim in any way. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
This application claims priority to U.S. Provisional Patent Application Ser. No. 60/560,927, entitled XML INDEX FOR XML DATA STORED IN VARIOUS STORAGE FORMATS, filed on Apr. 9, 2004, the contents of which are herein incorporated by reference in their entirety for all purposes. This application claims priority to U.S. Provisional Patent Application Ser. No. 60/580,445, entitled XML INDEX FOR XML DATA STORED IN VARIOUS STORAGE FORMATS, filed on Jun. 16, 2004, the contents of which are herein incorporated by reference in their entirety for all purposes. This application claims priority to U.S. Provisional Patent Application Ser. No. 60/582,706, entitled TECHNIQUES FOR PROCESSING XQUERIES IN A RELATIONAL DATABASE MANAGEMENT SYSTEM, filed on Jun. 23, 2004, the contents of which are herein incorporated by reference in their entirety for all purposes. This application claims priority to and is a continuation in part of U.S. patent application Ser. No. 10/884,311, entitled INDEX FOR ACCESSING XML DATA, filed on Jul. 2, 2004, the contents of which are herein incorporated by reference in their entirety for all purposes. This application is related to U.S. patent application Ser. No. 10/944,177, entitled INDEX MAINTENANCE FOR OPERATIONS INVOLVING INDEXED XML DATA, filed on same day herewith, the contents of which are herein incorporated by reference in their entirety for all purposes. This application is related to U.S. patent application Ser. No. 10/944,170, now issued as U.S. Pat. No. 7,398,265 issued Jul. 8, 2008, entitled EFFICIENT QUERY PROCESSING OF XML DATA USING XML INDEX, the contents of which are herein incorporated by reference in their entirety for all purposes.
Number | Name | Date | Kind |
---|---|---|---|
4439837 | Aiena et al. | Mar 1984 | A |
4536873 | Leete | Aug 1985 | A |
5088032 | Bosack | Feb 1992 | A |
5590324 | Leung et al. | Dec 1996 | A |
5643633 | Telford et al. | Jul 1997 | A |
5870590 | Kita et al. | Feb 1999 | A |
5878410 | Zbikowski et al. | Mar 1999 | A |
5905982 | Carey et al. | May 1999 | A |
6026390 | Ross et al. | Feb 2000 | A |
6516327 | Zondervan et al. | Feb 2003 | B1 |
6519597 | Cheng et al. | Feb 2003 | B1 |
6584459 | Chang et al. | Jun 2003 | B1 |
6604100 | Fernandez et al. | Aug 2003 | B1 |
6636845 | Chau et al. | Oct 2003 | B2 |
6643633 | Chau et al. | Nov 2003 | B2 |
6654734 | Mani et al. | Nov 2003 | B1 |
6782380 | Thede | Aug 2004 | B1 |
7028028 | Balmin et al. | Apr 2006 | B1 |
7031956 | Lee et al. | Apr 2006 | B1 |
7062507 | Wang et al. | Jun 2006 | B2 |
7096224 | Murthy et al. | Aug 2006 | B2 |
7124137 | Lin et al. | Oct 2006 | B2 |
7139746 | Shin et al. | Nov 2006 | B2 |
7171404 | Lindblad et al. | Jan 2007 | B2 |
7171407 | Barton et al. | Jan 2007 | B2 |
7181438 | Szabo | Feb 2007 | B1 |
7216127 | Auerbach | May 2007 | B2 |
20010049675 | Mandler et al. | Dec 2001 | A1 |
20020073019 | Deaton | Jun 2002 | A1 |
20020078068 | Krishnaprasad et al. | Jun 2002 | A1 |
20020100027 | Binding et al. | Jul 2002 | A1 |
20020116457 | Eshleman et al. | Aug 2002 | A1 |
20020152267 | Lennon | Oct 2002 | A1 |
20020184401 | Kadel Jr. et al. | Dec 2002 | A1 |
20030028563 | Stutz et al. | Feb 2003 | A1 |
20030167456 | Sabharwal | Sep 2003 | A1 |
20030177341 | Devillers | Sep 2003 | A1 |
20030200214 | Doole et al. | Oct 2003 | A1 |
20030212662 | Shin et al. | Nov 2003 | A1 |
20030233618 | Wan | Dec 2003 | A1 |
20040015783 | Lennon et al. | Jan 2004 | A1 |
20040044659 | Judd et al. | Mar 2004 | A1 |
20040064466 | Manikutty et al. | Apr 2004 | A1 |
20040088320 | Perry | May 2004 | A1 |
20040103105 | Lindblad et al. | May 2004 | A1 |
20040143581 | Bohannon et al. | Jul 2004 | A1 |
20040148278 | Milo et al. | Jul 2004 | A1 |
20040167864 | Wang et al. | Aug 2004 | A1 |
20040167904 | Wen et al. | Aug 2004 | A1 |
20040193575 | Chen et al. | Sep 2004 | A1 |
20040199524 | Rys et al. | Oct 2004 | A1 |
20040205082 | Fontoura et al. | Oct 2004 | A1 |
20040215600 | Aridor et al. | Oct 2004 | A1 |
20040221226 | Lin et al. | Nov 2004 | A1 |
20040260691 | Desai et al. | Dec 2004 | A1 |
20040267719 | Doherty et al. | Dec 2004 | A1 |
20040267760 | Brundage et al. | Dec 2004 | A1 |
20050004892 | Brundage et al. | Jan 2005 | A1 |
20050022115 | Baumgartner et al. | Jan 2005 | A1 |
20050038688 | Collins et al. | Feb 2005 | A1 |
20050050016 | Stanoi et al. | Mar 2005 | A1 |
20050091188 | Pal et al. | Apr 2005 | A1 |
20050097084 | Balmin et al. | May 2005 | A1 |
20050102256 | Bordawekar et al. | May 2005 | A1 |
20050108630 | Wasson et al. | May 2005 | A1 |
20050114314 | Fan et al. | May 2005 | A1 |
20050120031 | Ishii | Jun 2005 | A1 |
20050160076 | Kanemasa | Jul 2005 | A1 |
20050160108 | Charlet et al. | Jul 2005 | A1 |
20050228792 | Chandrasekaran et al. | Oct 2005 | A1 |
20050228818 | Murthy et al. | Oct 2005 | A1 |
20050229158 | Thusoo et al. | Oct 2005 | A1 |
20050257201 | Rose et al. | Nov 2005 | A1 |
20050289125 | Liu et al. | Dec 2005 | A1 |
20050289138 | Cheng et al. | Dec 2005 | A1 |
20060195476 | Nori et al. | Aug 2006 | A1 |
Number | Date | Country |
---|---|---|
2409078 | Jun 2005 | GB |
WO 03027908 | Apr 2003 | WO |
Number | Date | Country | |
---|---|---|---|
20050228768 A1 | Oct 2005 | US |
Number | Date | Country | |
---|---|---|---|
60582706 | Jun 2004 | US | |
60580445 | Jun 2004 | US | |
60560927 | Apr 2004 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 10884311 | Jul 2004 | US |
Child | 10944171 | US |