Team Fly |
This project illustrated the use of existsnode(), extract(), and extractvalue() when identifying an XML document stored in the Oracle Database 10g.
In the future, Oracle is looking at adding several new capabilities to this list, including additional database and XML functionalities, such as XQuery, which will be a language specifically designed to query XML data from a document perspective rather than the rows-and-tables perspective of SQL. We have had fun finding and returning XML documents. Let's proceed and look at how we can take XML documents and represent them relationally.
1. Is the Oracle XML DB repository separate from the Oracle Database 10g?
2. Why must we ''register" the URL of XML Schemas into the Oracle XML DB repository?
3. How do we load an XML document into the Oracle XML DB repository?
4. What is the difference between the existsnode() function and the extract() function?
Oracle XML DB makes it possible to expose XML content, stored in the database through conventional relational views. This means that tools, applications, and programmers who have no understanding of XML, but understand the Oracle Database 10g, can now work with XML content. To accomplish this, the view
Team Fly |