Use xmltype to convert xml string to xmltype data : XMLType « XML « Oracle PL / SQL






Use xmltype to convert xml string to xmltype data

  
SQL>
SQL>
SQL> CREATE TABLE myTable(
  2      id  NUMBER PRIMARY KEY,
  3      emps XMLType NOT NULL
  4  );

Table created.

SQL>
SQL> INSERT INTO myTable VALUES (1, xmltype('<?xml version="1.0" standalone="no"
 ?>
  2  <emps>
  3      <emp>
  4          <home_address>address 1</home_address>
  5      </emp>
  6  </emps>')
  7  );

1 row created.

SQL>
SQL>
SQL> select extract(emps, '/emps/emp/home_address/text()' )
  2  from myTable
  3  /



EXTRACT(EMPS,'/EMPS/EMP/HOME_ADDRESS/TEXT()')
------------------------------------------------------
address 1

1 row selected.

SQL>
SQL>
SQL> drop table myTable;

Table dropped.

SQL>
SQL>

   
    
  








Related examples in the same category

1.Store an XMLType type data in clob
2.Call existsNode() function from xmltype data
3.Create a table to hold the simple "Hello World" XML document
4.Create table myTable of xmltype
5.Creation of tables using XMLType data type and set the xml schema
6.Extract can be used in WHERE clause to search xml document
7.Insert xml document to a XMLType column with xmltype function
8.PL/SQL ability to access text within an XML document in the database
9.Query xmltype column
10.Update (i.e. replace) the entire XMLType column with new content
11.Use Aggregrate functions on XML data
12.Use Text() function to get text value from xml string
13.Use value function with single xmltype table
14.XMLTYPE with xml schema
15.XMLtype column
16.dbms_metadata.get_xml
17.Without the text() operator, returns node name + text value