- Oracle-Developer.com -
| Navigation:
Discussion Forums (Get expert advice) |
Publications |
Scripts |
About Us | Links |
Oracle Developer > Scripts > Using Binary XML Storage in Oracle 11g
|
About Binary XML Storage Binary XML is a new storage option introduced in 11g that stores the document in a post-parse binary format designed specifically for XML. This option will likely be the best choice for most XML requirements. The new binary storage offers insertion performance comparable to unstructured storage and query and disk space performance comparable to structured storage. Unlike structured storage, the benefits of binary XML are not dependent on schema registration. However, you have the option of registering a binary XML schema to have schema based binary XML tables. One limitation is that a registered XML schema cannot be shared between a binary XML and object relational table. Create Binary XML Table CREATE TABLE B_XML_TABLE OF XMLType XMLTYPE STORE AS
BINARY XML; insert into B_XML_TABLE values (XMLTYPE(BFILENAME ('XML_DIR','document_name.xml'),nls_charset_id('AL32UTF8')));
Read More about Oracle 11g New Features For more information about Binary XML Storage,
make sure you get a copy of Oracle 11g New Features Guide by John Garmany,
Steve Karam, Lutz Hartmann, V. J. Jain, and Brian Carr
http://www.oracle-developer.com/oracle_11g_new_features.html |
Sponsored by Varun Jain, Inc. Oracle Applications and Database Consulting
Copyright ©2007 Oracle-Developer.com