The Case Study Example in the following article is reproducable on our database. http://otn.oracle.com/products/oracle9i/daily/nov30.html
create table proceedings (tk number, papers sys.XMLTYPE); insert into proceedings(tk,papers) values (1, sys.XMLType.createXML( '<?xml version="1.0"?> <paper> <title> Accelerating Dynamic Web Sites using Edge Side Includes </title> <authors>Soo Yun and Scott Davies </authors> <company> Oracle Corporation </company> <abstract> The main focus of this presentation….include entire abstract. </abstract> <track> Fast Track to Oracle9i </track> </paper>')); create index proc_idx on proceedings(papers) indextype is ctxsys.context;
Demonstrate path selection searching using the INPATH operator such that you have (2) select statements that search for data in "abstract" and display the "title" in the hitlist. The (2) two statements must show:
These are described in section 6-16 of the Oracle Text Application Developer's Guide.
Last question: If you moved