PL/SQL ability to access text within an XML document in the database : XMLType « XML « Oracle PL / SQL






PL/SQL ability to access text within an XML document in the database

  
SQL> CREATE TABLE myTable
  2  (id  NUMBER PRIMARY KEY
  3  ,doc XMLType NOT NULL)
  4  XMLTYPE doc STORE AS CLOB
  5  /

Table created.

SQL>
SQL>
SQL> 
SQL> DECLARE
  2      v_doc  XMLType;
  3      v_text varchar2(100);
  4  BEGIN
  5      select doc into v_doc from myTable
  6      where id = 2;
  7
  8      v_text := v_doc.extract('/message/body/text()' ).getstringval;
  9
 10      dbms_output.put_line(v_text);
 11  END;
 12  /

SQL>
SQL> drop table myTable;

Table dropped.

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.Query xmltype column
9.Update (i.e. replace) the entire XMLType column with new content
10.Use Aggregrate functions on XML data
11.Use Text() function to get text value from xml string
12.Use value function with single xmltype table
13.Use xmltype to convert xml string to xmltype data
14.XMLTYPE with xml schema
15.XMLtype column
16.dbms_metadata.get_xml
17.Without the text() operator, returns node name + text value