Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 

 
 

Using the Oracle XML Schema Definition XSD  

Oracle Database Tips by Burleson Consulting

Question:  How does the XML Schema Definition (XSD) component work within Oracle?

Answer:  The XSD (XML Schema Definition), is a database metadata generic Document Type Definition (DTD) that allows you to store XML documents. Once you define a document structured with a DTD, you can load it into the XSD schema and use it to validate the structure of XML documents.

You can see the standard XSD XML DTD elements hereI've not used XSD, but Dr. Hall has some notes:

The basic_message.xsd XML schema defines the structure of the XML message documents we are trying to store. For this example we will use the message.xsd XML schema which contains some additional annotations that affect the way XML DB functions.

Save the message.xsd XML schema on your filesystem and copy it to the "/home/DEV/xsd/" folder in the XML DB repository (See Connecting To XML DB).

At this point the XML schema has stored within the XML DB repository. To make XML DB aware of the XML schema it must be registered:

-- Register XML schema
BEGIN
DBMS_XMLSchema.registerSchema(
schemaurl=>'http://marge:8080/home/DEV/xsd/message.xsd',
schemadoc=>sys.UriFactory.getUri('/home/DEV/xsd/message.xsd'));
END;
/

-- Delete XML schema
BEGIN
DBMS_XMLSchema.deleteSchema(
schemaurl=>'http://marge:8080/home/DEV/xsd/message.xsd',
delete_option=>DBMS_XMLSchema.Delete_Cascade_Force);
END;
/

 

 
If you like Oracle tuning, see the book "Oracle Tuning: The Definitive Reference", with 950 pages of tuning tips and scripts. 

You can buy it direct from the publisher for 30%-off and get instant access to the code depot of Oracle tuning scripts.


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.