XML Query (Xquery) Support in Oracle Database 10G Release 2

Total Page:16

File Type:pdf, Size:1020Kb

XML Query (Xquery) Support in Oracle Database 10G Release 2 XML Query (XQuery) Support in Oracle Database 10g Release 2 An Oracle White Paper May 2005 XML Query (XQuery) Support in Oracle Database 10g Release 2 Introduction ....................................................................................................... 3 Note on Future Compatibility .................................................................... 4 The Structure of XQuery............................................................................. 5 Database or Mid-Tier?...................................................................................... 6 SQL and XQuery .............................................................................................. 7 Differences between SQL and XQuery .................................................. 15 Using XQuery in the Database...................................................................... 15 Querying XML Documents in the Oracle XML DB Repository........ 16 Full-Text Searches of XML .................................................................. 19 Querying a Relational Table or View as if it were XML Data ............. 21 Querying Native XMLType data in Oracle XML DB .......................... 22 Querying Across Databases and Filesystems, or Websites................... 24 Some Interesting Cases .............................................................................. 27 Type Checking........................................................................................ 27 Namespaces............................................................................................. 28 Performance and Scalability: Co-processor vs. Native Compilation....... 29 Storage Optimization ................................................................................. 29 Intra-Query Optimization ......................................................................... 29 Inter-Query Optimization ......................................................................... 29 Beyond Co-Processor: Oracle’s Native XQuery Implementation ...... 30 Areas of Limited Support............................................................................... 31 Implementation-specific choices .............................................................. 31 Implementation Departures from the XQuery Standard ..................... 32 Support for XQuery Functions and Operators...................................... 32 Benefits of XQuery......................................................................................... 32 Conciseness and Simplicity........................................................................ 32 Heterogeneous Queries.............................................................................. 34 Leveraging the XML Data Model ............................................................ 34 XML Construction ..................................................................................... 34 XQuery vs. XSLT................................................................................... 36 The Database XQuery Environment ........................................................... 36 Top Level Query Support through SQL*Plus ....................................... 36 XDK............................................................................................................. 36 XQuery in the Mid-Tier ................................................................................. 37 XQJ............................................................................................................... 37 Query Pushdown ........................................................................................ 37 Using XQuery in the Mid-Tier ................................................................. 38 Querying a RSS Feed............................................................................. 38 Oracle XML Query Services ..................................................................... 39 Conclusion........................................................................................................ 40 XML Query (XQuery) Support in Oracle Database 10g Release 2 Page 2 XML Query (XQuery) Support in Oracle Database 10g Release 2 INTRODUCTION XQuery makes its debut in Oracle XML Query (XQuery) is a standards effort undertaken by the World Wide Web Database 10g Release 2. consortium to enable data to be extracted from XML documents. XQuery is designed to work with the XML data model, and be a comprehensive query language for data that is expressed in XML -- just as SQL has been the query language for much of the world’s structured data expressed as relational tables, and as keyword searches have powered much of the information access on the Internet. XQuery is also useful for constructing XML data and documents as the return result of query expressions. As XQuery nears finalization, the IT community has started investigating the business uses of XML and determining what value XQuery might provide. As the innovation leader in commercial database technology, Oracle Database 10g Release2 debuts a full-featured native XQuery engine integrated with the traditional Oracle database server to help organizations explore their XQuery needs. With Oracle Database 9i Release 2, we introduced a native XML store – XML DB – integrated with and part of the traditional Oracle Database. XML DB provides a high-fidelity storage and retrieval of XML documents, and is useful for a certain classes of data-management tasks, viz.: • Content Management – standards-based life-cycle management of content expressed in XML (e.g. technical manuals, multi-media messages, legal statutes, regulatory filings) • Exchange and Storage – generation of template-based business documents expressed as XML (e.g. purchase orders, bills, invoices, reports) to exchange between applications, and storage of such documents natively in the database • Data Integration – querying across different types of information assets – database records, files, web servers, news feeds. With 10g Release 1 and Release 2, the rapidly maturing XML DB technologies included with the Oracle Database are being used for a variety of applications which incorporate the above tasks, such as: • Product Documentation and Technical Manuals XML Query (XQuery) Support in Oracle Database 10g Release 2 Page 3 • Product Specification and Design Documents • Web Site Content • News and Information Services • Legislative Documents • Contracts • Financial Reporting • Document Publishing. From the perspective of developers building such applications, the initial use of XML as a storage format is broadening into the need to query the stored XML. The common reasons typically cited for using XQuery to query XML are: • Conciseness and simplicity – it is estimated that accessing XML data through XQuery results in one-fifth the code of XSLT-oriented approaches and one-twentieth the code of DOM-based approaches • Heterogeneous queries – since XML can map to a large number of different data models, one could search databases, files, web-services simultaneously using XQuery. • XML data model – XQuery is based on XML Schema. The XML Schema- based data model is best suited for representing variable, unpredictable, and irregular – i.e. ‘semi-structured’ data. When querying such data, XQuery is an obvious choice. • XML construction – XQuery can construct XML as the result of evaluating query expressions, in many cases more expressively and efficiently than XSLT. Note on Future Compatibility Since XQuery is not yet a final W3C At the time of Oracle Database 10g Release 2, XQuery is in the final stages of recommendation, the current support is becoming a World Wide Web Consortium (W3C) recommendation. The Oracle not guaranteed to be backwards- Database 10g Release2 supports the April 2005 version of the XQuery language compatible. specifications. It is possible that the final standard might be different from the late- stage versions. Oracle will continue to track the evolution of the XQuery standard, until it becomes a recommendation. During this period, Oracle does not guarantee backward compatibility of your XQuery code. After the XQuery standard becomes a recommendation, Oracle will produce a release of Oracle Database that is compatible with the recommendation. From that point on, standard Oracle policies will apply to the Oracle XQuery implementation. XML Query (XQuery) Support in Oracle Database 10g Release 2 Page 4 The Structure of XQuery As a brief introduction to XQuery, let us assume we are operating on a simple document named emp.xml: <empset> <emp empno=—21“ ename=—SCOTT“ salary=—50000“/> <emp empno=—22“ ename=—JONES“ salary=—100000“/> </empset> This document could be stored as a file, or generated as virtual XML document out of an Oracle database. To get the names of those employees with salary > 80000, the following XQuery fragment can be used: for $i in document(”emp.xml‘)/empset let $j = 80000 where $i/@salary > $j return $i/@ename The result is the following attribute node: JONES Let us look at the basic structure of XQuery. The language consists of the following major constructs. For -- Analogous to the FROM clause of a SQL SELECT statement, the For clause lets you iterate across a range of sequence values Let – Analogous to the SQL SET statement, the Let clause lets you define variables and assign them in turn during iteration through a FOR clause. Where -- Analogous to the WHERE clause of a SQL SELECT statement, the Where clause provides a set of conditions that filter or limit the initial selection in a For
Recommended publications
  • Fun Factor: Coding with Xquery a Conversation with Jason Hunter by Ivan Pedruzzi, Senior Product Architect for Stylus Studio
    Fun Factor: Coding With XQuery A Conversation with Jason Hunter by Ivan Pedruzzi, Senior Product Architect for Stylus Studio Jason Hunter is the author of Java Servlet Programming and co-author of Java Enterprise Best Practices (both O'Reilly Media), an original contributor to Apache Tomcat, and a member of the expert groups responsible for Servlet, JSP, JAXP, and XQJ (XQuery API for Java) development. Jason is an Apache Member, and as Apache's representative to the Java Community Process Executive Committee he established a landmark agreement for open source Java. He co-created the open source JDOM library to enable optimized Java and XML integration. More recently, Jason's work has focused on XQuery technologies. In addition to helping on XQJ, he co-created BumbleBee, an XQuery test harness, and started XQuery.com, a popular XQuery development portal. Jason presently works as a Senior Engineer with Mark Logic, maker of Content Interaction Server, an XQuery-enabled database for content. Jason is interviewed by Ivan Pedruzzi, Senior Product Architect for Stylus Studio. Stylus Studio is the leading XML IDE for XML data integration, featuring advanced support for XQuery development, including XQuery editing, mapping, debugging and performance profiling. Ivan Pedruzzi: Hi, Jason. Thanks for taking the time to XQuery behind a J2EE server (I have a JSP tag library talk with The Stylus Scoop today. Most of our readers for this) but I’ve found it easier to simply put XQuery are familiar with your past work on Java Servlets; but directly on the web. What you do is put .xqy files on the could you tell us what was behind your more recent server that are XQuery scripts to produce XHTML interest and work in XQuery technologies? pages.
    [Show full text]
  • Oracle® Big Data Connectors User's Guide
    Oracle® Big Data Connectors User's Guide Release 4 (4.12) E93614-03 July 2018 Oracle Big Data Connectors User's Guide, Release 4 (4.12) E93614-03 Copyright © 2011, 2018, Oracle and/or its affiliates. All rights reserved. Primary Author: Frederick Kush This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency- specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • Multimodel Database with Ora
    Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. MULTIMODEL DATABASE WITH ORACLE DATABASE 18C Table of Contents Introduction 1 Multimodel Database Architecture 2 Multimodel Database Features in Oracle 18c 3 JSON in Oracle Database 5 Graph Database and Analytics in Oracle Spatial and Graph 6 Property Graph Features in Oracle Spatial and Graph 6 RDF Semantic Graph Triple Store Features in Oracle Spatial and Graph 7 Spatial Database and Analytics in Oracle Spatial and Graph 7 Sharded Database Model 8 Oracle XML DB 9 Oracle Text 10 Oracle SecureFiles 10 Storage Optimization in SecureFiles 10 SecureFiles Features in Oracle Database 18c 11 Conclusion 12 0 | MULTIMODEL DATABASE WITH ORACLE DATABASE 18C Introduction Over the nearly 40 years in the evolution of commercial relational database management systems, a consistent pattern has emerged as the capabilities, data types, analytics, and data models have been developed and adopted. With each new generation of computing architecture – from centralized mainframe, to client server, to internet computing, to the Cloud – new generations of data management systems have been developed to address new applications, workloads and workflows. Today, the successful operation of corporations, enterprises, and other organizations relies on the management, understanding and efficient use of vast amounts of unstructured Big Data that may come from social media, web content, sensors and machine output, and documents.
    [Show full text]
  • Diploma Thesis Christoph Schmid
    Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D-70569 Stuttgart Diploma Thesis No. 3679 Development of a Java Library and Extension of a Data Access Layer for Data Access to Non-Relational Databases Christoph Schmid Course of Study: Softwaretechnik Examiner: Prof. Dr. Frank Leymann Supervisors: Dr. Vasilios Andrikopoulos Steve Strauch Commenced: June 19, 2014 Completed: December 19, 2014 CR-Classification: C.2.4, C.4, D.2.11, H.2 Abstract In the past years, cloud computing has become a vital part of modern application develop- ment. Resources can be highly distributed and provisioned on-demand. This fits well with the less strict data model of non-relational databases that allows better scaling. Many cloud providers have hosted NoSQL databases in their portfolio. When migrating the data base layer to a NoSQL model, the business layer of the applica- tion needs to be modified. These modifications are costly, thus it is desirable to design an architecture that can adapt to changes without tight coupling to third party components. In this thesis, we extend a multi-tenant aware Enterprise Service Bus (ESB) with Data Access Layer, modify the management application and implement a registry for the NoSQL configu- rations. Then, we design an architecture that manages the database connections that adds a transparency layer between the end-user application and non-relational databases. The design is verified by implementing it for blobstores including a Java access library that manages the access from local applications to the ESB. Additionally, we evaluate component by measuring the performance in several use scenarios and compared the results to the performance of the vendor SDKs.
    [Show full text]
  • Naxdb – Realizing Pipelined Xquery Processing in a Native XML Database System
    NaXDB – Realizing Pipelined XQuery Processing in a Native XML Database System Jens Hündling, Jan Sievers and Mathias Weske Hasso-Plattner-Institute for IT-Systems-Engineering at the University of Potsdam, Germany {jens.huendling|jan.sievers|mathias.weske}@hpi.uni-potsdam.de ABSTRACT schemas and accept documents with unknown structure, efficient Supporting queries and modifications on XML documents is a chal- automatic adoption of evolving schemas from incoming informa- lenging task, and several related approaches exist. When imple- tion is vital. In addition, it is necessary to efficiently adapt the menting query and modification languages efficiently, the actual evolving schema of incoming information with minimal manual persistent storage of the XML data is of particular importance. intervention. This significantly differs from traditional relational Generally speaking, the structure of XML data significantly differs DBMS, where database schema evolution is rare and typically man- from the well-known relational data-model. This paper presents the aged by database administrators. Due to these reasons, NaXDB prototypical implementation of NaXDB, a native XML database uses a native approach [6], i.e. the XML information is stored as a management system (DBMS). A native approach means the XML hierarchical tree of nodes. NaXDB implements an huge subset of data is stored as a hierarchical tree of linked objects. NaXDB is im- the query language specification XQuery 1.0 [3] including XPath plemented as a MaxDB by MySQL kernel module and thus inherits 2.0 [2] for navigation as well as XUpdate [17] for manipulation. several DBMS functionality. Furthermore, NaXDB uses object- Remarkably, several implementations of XQuery exist by now, but oriented extensions of of MaxDB by MySQL to store the tree of only some are real database management systems offering typical linked objects.
    [Show full text]
  • Data Analytics Using Mapreduce Framework for DB2's Large Scale XML Data Processing
    ® IBM Software Group Data Analytics using MapReduce framework for DB2's Large Scale XML Data Processing George Wang Lead Software Egnineer, DB2 for z/OS IBM © 2014 IBM Corporation Information Management Software Disclaimer and Trademarks Information contained in this material has not been submitted to any formal IBM review and is distributed on "as is" basis without any warranty either expressed or implied. Measurements data have been obtained in laboratory environment. Information in this presentation about IBM's future plans reflect current thinking and is subject to change at IBM's business discretion. You should not rely on such information to make business plans. The use of this information is a customer responsibility. IBM MAY HAVE PATENTS OR PENDING PATENT APPLICATIONS COVERING SUBJECT MATTER IN THIS DOCUMENT. THE FURNISHING OF THIS DOCUMENT DOES NOT IMPLY GIVING LICENSE TO THESE PATENTS. TRADEMARKS: THE FOLLOWING TERMS ARE TRADEMARKS OR ® REGISTERED TRADEMARKS OF THE IBM CORPORATION IN THE UNITED STATES AND/OR OTHER COUNTRIES: AIX, AS/400, DATABASE 2, DB2, e- business logo, Enterprise Storage Server, ESCON, FICON, OS/390, OS/400, ES/9000, MVS/ESA, Netfinity, RISC, RISC SYSTEM/6000, System i, System p, System x, System z, IBM, Lotus, NOTES, WebSphere, z/Architecture, z/OS, zSeries The FOLLOWING TERMS ARE TRADEMARKS OR REGISTERED TRADEMARKS OF THE MICROSOFT CORPORATION IN THE UNITED STATES AND/OR OTHER COUNTRIES: MICROSOFT, WINDOWS, WINDOWS NT, ODBC, WINDOWS 95, WINDOWS VISTA, WINDOWS 7 For additional information see ibm.com/legal/copytrade.phtml Information Management Software Agenda Motivation Project Overview Architecture and Requirements Technical design problems Hardware/software constraints, and solutions System Design and Implementation Performance and Benchmark showcase Conclusion, Recommendations and Future Work Information Management Software IBM’s Big Data Portfolio IBM views Big Data at the enterprise level thus we aren’t honing in on one aspect such as analysis of social media or federated data 1.
    [Show full text]
  • Oxygen XML Author 12.2
    Oxygen XML Author 12.2 Oxygen XML Author | TOC | 3 Contents Chapter 1: Introduction................................................................................11 Key Features and Benefits of Oxygen XML Author .............................................................................12 Chapter 2: Installation..................................................................................13 Installation Requirements.......................................................................................................................14 Platform Requirements...............................................................................................................14 Operating System.......................................................................................................................14 Environment Requirements........................................................................................................14 Installation Instructions..........................................................................................................................14 Eclipse Plugin.............................................................................................................................15 Obtaining and Registering a License Key..............................................................................................16 Named User License Registration..............................................................................................16 Named User License Registration with Text File.......................................................................17
    [Show full text]
  • Xquery 3.0 69 Higher-Order Functions 75 Full-Text 82 Full-Text/Japanese 85 Xquery Update 87 Java Bindings 91 Packaging 92 Xquery Errors 95 Serialization 105
    BaseX Documentation Version 7.2 PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Sat, 24 Mar 2012 17:30:37 UTC Contents Articles Main Page 1 Getting Started 3 Getting Started 3 Startup 4 Startup Options 6 Start Scripts 13 User Interfaces 16 Graphical User Interface 16 Shortcuts 20 Database Server 23 Standalone Mode 26 Web Application 27 General Info 30 Databases 30 Binary Data 32 Parsers 33 Commands 37 Options 50 Integration 64 Integrating oXygen 64 Integrating Eclipse 66 Query Features 68 Querying 68 XQuery 3.0 69 Higher-Order Functions 75 Full-Text 82 Full-Text/Japanese 85 XQuery Update 87 Java Bindings 91 Packaging 92 XQuery Errors 95 Serialization 105 XQuery Modules 108 Cryptographic Module 108 Database Module 113 File Module 120 Full-Text Module 125 HTTP Module 128 Higher-Order Functions Module 131 Index Module 133 JSON Module 135 Map Module 140 Math Module 144 Repository Module 148 SQL Module 149 Utility Module 153 XSLT Module 157 ZIP Module 160 ZIP Module: Word Documents 162 Developing 164 Developing 164 Integrate 165 Git 166 Maven 172 Releases 174 Translations 175 HTTP Services 176 REST 176 REST: POST Schema 184 RESTXQ 185 WebDAV 189 WebDAV: Windows 7 190 WebDAV: Windows XP 192 WebDAV: Mac OSX 195 WebDAV: GNOME 197 WebDAV: KDE 199 Client APIs 201 Clients 201 Standard Mode 202 Query Mode 203 PHP Example 205 Server Protocol 206 Server Protocol: Types 210 Java Examples 212 Advanced User's Guide 214 Advanced User's Guide 214 Configuration 215 Catalog Resolver 216 Statistics 218 Backups 222 User Management 222 Transaction Management 224 Logging 225 Events 226 Indexes 228 Execution Plan 230 References Article Sources and Contributors 231 Image Sources, Licenses and Contributors 233 Article Licenses License 234 Main Page 1 Main Page Welcome to the documentation of BaseX! BaseX [1] is both a light-weight, high-performance and scalable XML Database and an XPath/XQuery Processor with full support for the W3C Update and Full Text extensions.
    [Show full text]
  • Vysoké Učení Technické V Brně Brno University of Technology
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Digital library of Brno University of Technology VYSOKÉ UČENÍ TECHNICKÉ V BRNĚ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMAČNÍCH TECHNOLOGIÍ ÚSTAV INFORMAČNÍCH SYSTÉMŮ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS NATIVE XML INTERFACE FOR A RELATIONAL DATABASE DIPLOMOVÁ PRÁCE MASTER'S THESIS AUTOR PRÁCE Bc. KAREL PIWKO AUTHOR BRNO 2010 VYSOKÉ UČENÍ TECHNICKÉ V BRNĚ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMAČNÍCH TECHNOLOGIÍ ÚSTAV INFORMAČNÍCH SYSTÉMŮ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS NATIVNÍ XML ROZHRANÍ PRO RELAČNÍ DATABÁZI NATIVE XML INTERFACE FOR A RELATIONAL DATABASE DIPLOMOVÁ PRÁCE MASTER'S THESIS AUTOR PRÁCE Bc. KAREL PIWKO AUTHOR VEDOUCÍ PRÁCE Ing. PETR CHMELAŘ SUPERVISOR BRNO 2010 Abstrakt XML je dominatním jazykem pro výměnu dat. Vzhledem k velkém množství dostupných XML dokumentů a jejich vzájemnému přenosu, vzniká protřeba jejich ukládání a dota- zování v nich. Jelikož většina firem stále používá systémy založené na relačních databázích pro ukládání dat, a často je nutné kombinovat nově získané XML data s původním daty uloženými v relační databázi, je vhodné se zabývat uložením XML dokumentů v relačních databázích. V této práci jsme se zaměřili na strukturované a semi-strukturované XML dokumenty, pro- tože jsou nejčastěji používanými formáty pro výměnu dat a mohou být snadno validovány pomocí XML schémat. Předmětem teoretického rozboru je modifikovaný Hybrid algorit- mus pro rozdělení dokumentu do relací na základě XSD schémat a dále umožnujeme zavést redundanci pro urychlení dotazování. Naším cílem je vytvořit systém podporujicí nejnovější standardy, který zároveň poskytne větší výkon a vertikální škálovatelnost než nativní XML databáze.
    [Show full text]
  • Helsinki University of Technology
    Aalto University School of Science and Technology Faculty of Electronics, Communications and Automation Degree Programme of Communications Engineering Markku Pekka Mikael Laine XFormsDB—An XForms-Based Framework for Simplifying Web Application Development Master’s Thesis Helsinki, Finland, January 20, 2010 Supervisor: Professor Petri Vuorimaa, D.Sc. (Tech.) Instructor: Mikko Honkala, D.Sc. (Tech.) Aalto University ABSTRACT OF THE School of Science and Technology MASTER’S THESIS Faculty of Electronics, Communications and Automation Degree Programme of Communications Engineering Author: Markku Pekka Mikael Laine Title: XFormsDB—An XForms-Based Framework for Simplifying Web Application Development Number of pages: xx + 161 Date: January 20, 2010 Language: English Professorship: Interactive Digital Media and Contents Production Code: T-111 Supervisor: Professor Petri Vuorimaa, D.Sc. (Tech.) Instructor: Mikko Honkala, D.Sc. (Tech.) The nature of the World Wide Web is constantly changing to meet the increasing demands of its users. While this trend towards more useful interactive services and applications has improved the utility and the user experience of the Web, it has also made the development of Web applications much more complex. The main objective of this Thesis was to study how Web application development could be simplified by means of declarative programming. An extension that seamlessly integrates common server-side functionalities to the XForms markup language is proposed and its feasibility and capabilities are validated with a proof- of-concept implementation, called the XFormsDB framework, and two sample Web applications. The results show that useful, highly interactive multi-user Web applications can be authored quickly and easily in a single document and under a single programming model using the XFormsDB framework.
    [Show full text]
  • Xquery API for Java™ (XQJ) 1.0 Specification Version 0.9 (JSR 225 Public Draft Specification) May 21, 2007
    XQuery API for Java™ (XQJ) 1.0 Specification Version 0.9 (JSR 225 Public Draft Specification) May 21, 2007 Spec Lead: Jim Melton Oracle Editor: Marc Van Cappellen DataDirect Technologies This document is the Public Draft Specification of the XQuery API for Java™ (XQJ) 1.0. It describes the current state of the XQuery API for Java™ (XQJ), and is subject to possibly changes and should not be considered to be in any way final. Comments on this specification should be sent to [email protected]. Copyright © 2003, 2006, 2007, Oracle. All rights reserved. Java™ is a registered trademark of Sun Microsystems, Inc. http://www.sun.com JSR 225 Public Draft Specification – Version 0.9 SPECIFICATION LICENSE Oracle USA (the “Spec Lead”) for the XQuery API for Java specification (the “Specification”) hereby grant a perpetual, non-exclusive, worldwide, fully paid-up, royalty-free, irrevocable (except as explicitly set forth below) license to copy and display the Specification, in any medium without fee or royalty, provided that you include the following on ALL copies, or portions thereof, that you make: 1. A link or URL to the Specification at this location: __________. 2. The copyright notice as shown herein. In addition, to the extent that an implementation of the Specification would be considered a derivative work under applicable law requiring a license grant from the holder of the copyright in the Specification, the Spec Lead grants a copyright license solely for the purpose of making and/or distributing an implementation of the Specification that: (a) except for the RI code licensed from Oracle under the RI License, does not include or otherwise make any use of the RI; (b) fully implements the Specification including all of its required interfaces and functionality; (c) does not modify, subset, superset or otherwise extend those public class or interface declarations whose names begin with “java;” and (d) passes the TCK.
    [Show full text]
  • Zapthink Zapnote™
    zapthink zapnote Doc. ID: ZTZN-1189 Released: Mar. 15, 2006 ZAPTHINK ZAPNOTE™ DATADIRECT SIMPLIFYING DATA INTEGRATION WITH XQUERY Analyst: Ronald Schmelzer Abstract The more companies attempt to connect their disparate systems in the enterprise, and the more success they have doing so using emerging technologies and approaches such as XML, Web Services, and Service- Oriented Architecture (SOA), the more they realize that simply getting systems to communicate is only half the problem. The other half is getting those systems to understand what they are saying to each other. While many people pin their hopes on abstract concepts such as semantic webs and ontologies, they require a more practical short-term solution to enable humans to map data structures between dissimilar systems. Fortunately, the W3C standard XQuery has recently emerged as a robust technology that is well suited for common data integration needs. Rather than using proprietary data adapters, tightly-coupled integration middleware, or complex mapping technologies, the XQuery approach applies standards-based documents and general-purpose transformation engines to the problem of data integration. In this ZapNote, we explore XQuery and DataDirect XQueryTM as an illustration of this powerful technique in practice. All Contents Copyright © 2006 ZapThink, LLC. All rights reserved. Reproduction of this publication in any form without prior written permission is forbidden. The information contained herein has been obtained from sources believed to be reliable. ZapThink disclaims all warranties as to the accuracy, completeness or adequacy of such information. ZapThink shall have no liability for errors, omissions or inadequacies in the information contained herein or for interpretations thereof.
    [Show full text]