Using Oracle Text in Oracle XML DB .

Hi all ,
The idea is simple ,i need to index all stored files in Oracle XML DB and the index should stay in Oracle DB . Using some 3 party index software is also possible but you need to write a mapping to move the index file in Oracle DB .
So i thought of using Oracle Text but i am not sure about how to retrieve such a document from Oracle XML DB , let me say over ftp or http ? . And if these documents are password protected -> how can Oracle Text allow this ?

[11gR2 XMLDB Developers Guide -- Full-Text Search over XML Data|http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10492/xdb09sea.htm#i1006756] would be the first place to start.
For document display, there a bunch of potential solutions, you can look at [XML DB Repository|http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10492/xdb03usg.htm#insertedID18], or the Text Application Developers Guide [Presenting Documents in Oracle Text|http://download.oracle.com/docs/cd/B28359_01/text.111/b28303/view.htm#i1006687] .
Password protected documents can't be indexed using the auto_filter.

Similar Messages

  • Installation of Oracle Text in Oracle 10g

    Hi All,
    Could you please help me in installing ORACLE TEXT in Oracle 10g. What exactly ils this feature and how I can install it.
    Regards
    Harpreet Singh

    You don't need the companion CD to install Oracle Text.
    Oracle Text is installed by default if you have created your database using DBCA.
    However, if your database has been installed manually you may need to install this feature additionally.
    In order to check if the feature is already present check if CTXSYS schema exists:
    SQL> select username
      2  from dba_users
      3  where username='CTXSYS';
    USERNAME
    CTXSYS
    SQL>Cheers,
    Mihajlo

  • Oracle Text iwth Oracle TimesTen

    Hi!
    I'm trying to use Oracle Text with Oracle TimesTen In-Memory. In this customer, we are using Oracle Text to index the names of the company clients. There are about 13 million names to index. We're trying to speed up even more the search using Oracle TimesTen.
    Does anybody as any experience using simultanely this two technologies?
    Thanks in advance

    Please, consider this thread closed. By mistake I've created another one. Here is the link:
    Oracle Text with Oracle TimesTen
    Sorry by the mistake
    Tiago Soares

  • Oracle Text with Oracle TimesTen

    Hi!
    I'm trying to use Oracle Text with Oracle TimesTen In-Memory. In this customer, we are using Oracle Text to index the names of the company clients. There are about 13 million names to index. We're trying to speed up even more the search using Oracle TimesTen.
    Does anybody as any experience using simultanely this two technologies?
    Thanks in advance
    Tiago Soares

    TimesTen doesn't support the CONTEXT indextype or CONTAINS clause (or other domain indexes/operators), so you can't create Oracle Text indexes in it.

  • Oracle Text Help with XML column values

    Hello. In addition to being new to Oracle Text, I am inheriting an Oracle Text application and have a couple of questions.
    First, A context-based index has been set-up on a CLOB column which contains an XML formatted document. The Auto Section Group parameter has been set to created zones for each tag of the XML document. I have found that when using a browser to display the content of the CLOB, some of the column values have trouble displaying in the browser, where I receive an XML processing error. I believe this is due to the fact that some of the XML document rows contain URLs that are not embedded in the CDATA tag. In any case, if the browser has trouble displaying the XML, will oracle text have trouble indexing the XML and creating the section group zones?
    Second, I understand that the NOT operator takes a right operand term and left operand term. Can either of the terms be the results of the WITHIN operator, i.e. "dogs not (cats within animals)".
    Thank you.

    I bet you just whipped that out, and I thank you with all my
    heart, its amazing to me how many ways I tried to do what you did.
    Thanks
    I have a second question relating to the same problem and
    that is in referencing the over state. Currently, I can write
    'text' into the text field and see what I have coming in from xml
    in its place during the 'up' state.
    However, when the timeline hits the 'over' state, the
    textfield will display nothing, or 'text' if I have that written
    in. I suspect that I am not referencing the'over' state correctly.
    Should I add one line of code sort of referencing the text
    field and not just the button while in the over state?

  • Oracle text in oracle 10g

    Hi friends,
    thinking about migration from oracle 9i to oracle 10g. We use Oracle Text indexes on text columns of some tables. Is there any advantage with oracle 10g intermedia? Which are the most significant changes?
    Thanks for answers.

    The following links describe the new Text features in Oracle 10g and 11g.
    http://download.oracle.com/docs/cd/B19306_01/text.102/b14218/whatsnew.htm#i969790
    http://download.oracle.com/docs/cd/B28359_01/text.111/b28304/whatsnew.htm#sthref6

  • Oracle Text And Oracle Ultra search

    Hi all,
    I have a problem. I have some files in the server file system e.g C:/docs. I want to search these MS Office word files in order to see if they contain a word. I tried oracle ultra search but when i put File data source it provides a form file:/// and when i put C:/docs it gives me file://localhost/C:/docs. Can i configure Oracle ultra search to search into the server file system?Where is the directory that oracle ultra search searches a file?
    How can index and search the files in the file systems exept oracle ultra search? Can Oracle Text do my job?
    Sorry to bother and thank you in advance for your help
    Antonis.

    Hi,
    Searching a word in a document (MS Word) can definitely be done using Oracle Text.
    But, you other requirements can make things a bit complicated.
    Oracle Text have something called file_datastore, where you need to mention the file_path/s and individual file names too.
    Once you mention them, i.e. path and file names, oracle text can read the file , index them and you can query using simple queries.
    If the number of files are huge, entering all the file names can be difficult. In that case you can give the following a try.
    -- You can use a perl script to read the file name in a directory, put it into a file in a particular format (1 file name per line) and then load that text file into a table using ctxloader.
    You can go through the FILE_DATASTORE and CTXLOADER examples from oracle text reference document.

  • Memory leak in Oracle Text under Oracle 8.1.7!!!

    When I wanted to use USER_DATASOTRE preference to use my own formatting tag in Oracle Text, the memory leak occured in Oracle Text!
    Memory just freed when I close SQL*Plus program
    My formatting procedure is so easy
    PROCEDURE format_tag(r IN ROWID, tlob IN OUT NOCOPY CLOB) IS
    BEGIN
    SELECT '<C>' &#0124; &#0124; catalog_id &#0124; &#0124; '</C></T>' &#0124; &#0124; tag_id &#0124; &#0124; '</T><V>' &#0124; &#0124; tag_value &#0124; &#0124; '</V>' INTO buf
    FROM tbl_catalog WHERE ROWID=r;
    dbms_lob.trim(tlob, 0); -- set LOB's size to zero
    dbms_lob.write(tlob, length(buf), 1, buf);
    END;
    The typical rows are about 100,000 ( The actual records are tens of millions )
    How can I solve this problem?

    Thanks for your reply
    I'm using Oracle 8.1.7.0.0 on Windows 2000
    The preferences are as follows:
    DECLARE
    ds VARCHAR2(30):= 'dts_catalog';
    grp VARCHAR2(30):= 'grp_catalog';
    lxr VARCHAR2(30):= 'lxr_catalog';
    wrd VARCHAR2(30):= 'wrd_catalog';
    BEGIN
    ctx_ddl.create_preference(wrd, 'BASIC_WORDLIST');
    ctx_ddl.set_attribute(wrd, 'STEMMER', 'NULL');
    ctx_ddl.create_preference(lxr, 'BASIC_LEXER');
    ctx_ddl.set_attribute(lxr, 'INDEX_TEXT', 'TRUE');
    ctx_ddl.set_attribute(lxr, 'INDEX_THEMES', 'FALSE');
    ctx_ddl.create_preference(ds, 'USER_DATASTORE');
    ctx_ddl.set_attribute(ds, 'OUTPUT_TYPE', 'VARCHAR2');
    ctx_ddl.set_attribute(ds, 'PROCEDURE', 'pkg_catalog.format');
    ctx_ddl.create_section_group(grp, 'BASIC_SECTION_GROUP');
    ctx_ddl.add_field_section(grp, 'catalog', 'C', TRUE);
    ctx_ddl.add_field_section(grp, 'tag', 'T', TRUE);
    TRUE);
    ctx_ddl.add_field_section(grp, 'value', 'V', TRUE);
    END;
    the STORAGE preferences are not here ( because they are long )
    Index statement that I used for indexing
    CREATE INDEX idx_catalog_info ON tbl_catalog_info(val)
    INDEXTYPE IS ctxsys.context
    PARAMETERS(
    'STORAGE stg_catalog
    DATASTORE dts_catalog
    SECTION GROUP grp_catalog
    LEXER lxr_catalog
    WORDLIST wrd_catalog
    MEMORY 24M'
    I changed my last version of procedure and using VARCHAR2 parameter type instead of CLOB, but memory leak persist during building index.
    so I used a simple trick by writing a package and counting the records to be indexed, after each 100,000 records I used DBMS_SESSION.FREE_UNUSED_USER_MEMORY procedure to free unused session's memory.
    the package is as follows:
    CREATE OR REPLACE PACKAGE pkg_catalog IS
    PROCEDURE format(r ROWID, buf IN OUT NOCOPY VARCHAR2);
    END pkg_catalog;
    CREATE OR REPLACE PACKAGE BODY pkg_catalog IS
    recs PLS_INTEGER:= 0;
    PROCEDURE format(r ROWID, buf IN OUT NOCOPY VARCHAR2) IS
    BEGIN
    SELECT '<C>'&#0124; &#0124;catalog_id&#0124; &#0124;'</C><T>'&#0124; &#0124;tag_id&#0124; &#0124;subfield_id&#0124; &#0124;'</T><V>'&#0124; &#0124;val&#0124; &#0124;'</V>' INTO buf FROM &usr.tbl_catalog_info WHERE ROWID=r;
    recs:= recs + 1;
    IF recs>100000 THEN
    recs:= 0;
    dbms_session.free_unused_user_memory; -- clean-out memory garbage
    END IF;
    END format;
    END pkg_catalog;
    My problem solved, but it is very marvelous "Why Oracle does not free unused session's memory?"

  • Oracle Text with Oracle Lite 10G?

    I would like to be able to perform text searches in my OLITE 10g R2 database. Is is possible to install Oracle Text for use with OLITE? If so, how to I install it -- do I use the manual procedure described elsewhere, by taking the script files from an Oracle Enterprise or Standard Edition installation, and running those scripts against my OLITE db? Thanks.
    Marty

    Marty,
    Did you ever resolve this issue? We would also like to run Oracle Text with OLite, but I cannot find any information on doing this.

  • Reinstalling/Repairing Oracle Text in Oracle 11g R2

    I happened to execute 'create or replace operator contains...' How do I restore Oracle Text to its previous state?
    Edited by: 932881 on May 9, 2012 1:05 AM

    Having run '/u01/app/oracle/product/11.2.0/db_1/ctx/admin/catctx.sql CTXSYS SYSAUX TEMP NOLOCK', I tried to create a CTXSYS.CONTEXT index on a VARCHAR2 column but I got this error:
    Error at Command Line:1 Column:26
    Error report:
    SQL Error: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: CTXSYS.DEFAULT_LEXER
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    29855. 00000 - "error occurred in the execution of ODCIINDEXCREATE routine"
    *Cause:    Failed to successfully execute the ODCIIndexCreate routine.
    *Action:   Check to see if the routine has been coded correctly.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Installing Oracle TEXT and XML DB Components on New Instance

    I was told this may be the best place to ask my quesion
    I have set up a New Instance or Oracle on a Solaris Unix box that already had Oracle 10g installed.
    The instance was created fine, however I need the Oracle Text Component and XML DB Component installed as well.
    Those are not installed with this instance. They are installed on the other instance on the box that was setup when oracle was first installed.
    How can I add these components to this new instance?
    DBCA was not used when the instance was created. The DBA here does not care for this tool.
    Thanks

    Hi,
    the installation of XMLDB is described in the XML manual: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/appaman.htm#sthref2372
    the installation of Text is described on Metalink in document 280713.1.
    A nice document to start is on Metalink, it is document 472937.1. It gives Oracle components and the links how to install the components on different versions of Oracle.
    Herald ten Dam
    Superconsult.nl

  • Text mining using oracle text

    i am about to embark on an ambitious project. i want to create a document server that can archive documents such as word, pdfs etc. i would also like to create a feature by which users can compare documents to find how similar they are. how do i go about building such an application. do i need to use data mining algorithms like neural network to compare documents. what mining algorithm should i use. or should i create indexes or something. what are the file types supported by oracle text.
    please help me.
    even if u don't have correct answers, please feel free to add your opinion.

    Take a look at the following Oracle 10gR2 Documentation books (available on OTN):
    - Oracle Data Mining Concepts: Chapter 6
    - Oracle Data Mining Application Developer's Guide: Chapter 5 and 7
    You may also take a look at the Oracle Text documentation:
    - Oracle Text Application Developer's Guide: Chapter 6
    Oracle Text uses Oracle Data Mining behind the scene for some of its capabilities (SVM and K-Means). They have different capabilities as explained in Chapter 6 of the Oracle Data Mining Concepts.
    --Marcos                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to index ORDSYS.orddoc type using Oracle Text?

    Dear All,
    I am very new to Oracle Text and Oracle intermedia ORDSYS.orddoc type.
    As what I know it is impossible to index ORDSYS.orddoc using Oracle Text, so
    may I know is there anyway alternative to index ORDSYS.orddoc type using Oracle Text?
    I am using ORDDOC type due to my application need to allow user to upload various type of media file such as audio, video, word document etc...
    Please help as I need it to do full text search for those uploaded document, thanks in advanced.
    Best Regards,
    Chin

    Dear All,
    I am very new to Oracle Text and Oracle intermedia ORDSYS.orddoc type.
    As what I know it is impossible to index ORDSYS.orddoc using Oracle Text, so
    may I know is there anyway alternative to index ORDSYS.orddoc type using Oracle Text?
    I am using ORDDOC type due to my application need to allow user to upload various type of media file such as audio, video, word document etc...
    Please help as I need it to do full text search for those uploaded document, thanks in advanced.
    Best Regards,
    Chin

  • 11gr2 installation hanging at  step 7 during Processing Oracle Text 11.2.0.

    Hi,
    I am trying to install 11gr2 software on my linux 64 bit server.
    I had installled the same 11gr2 software successfully on the same server without any issues.
    Now i want another oracle home. But the installation is hanging at step 7, 8% was completed.
    The details tab showing
    Verifying whether Central Inventory is locked by any other OUI session...
    Central Inventory is not locked.
    Loading products list. Please wait.
    Loading products. Please wait.
    Analyzing dependencies
    Setting up install types
    Executing pre-requisites
    Loading Oracle Database 11g
    Loading Enterprise Edition Options
    Loading Oracle Partitioning
    Loading Oracle Spatial
    Loading Oracle OLAP
    Loading Oracle Database 11g
    Loading Oracle Net Services
    Loading Oracle Text
    Loading Oracle Net Listener
    Loading Oracle Enterprise Manager Console DB
    Loading HAS Files for DB
    Loading Oracle Internet Directory Client
    Loading Oracle Advanced Security
    Loading Oracle JVM
    Loading Oracle XML Development Kit
    Loading Database Configuration and Upgrade Assistants
    Loading Oracle Net
    Loading Oracle Multimedia
    Loading Oracle Multimedia Locator
    Loading Oracle Call Interface (OCI)
    Loading SQL*Plus
    Loading Oracle Netca Client
    Loading Enterprise Manager Agent
    Loading Oracle Database Utilities
    Loading Oracle Programmer
    Loading Oracle Database Gateway for ODBC
    Loading Generic Connectivity Common Files
    Loading PL/SQL
    Loading Oracle Recovery Manager
    Loading Assistant Common Files
    Loading Buildtools Common Files
    Loading Oracle LDAP administration
    Loading Oracle Help for the Web
    Loading Installation Common Files
    Loading Precompiler Common Files
    Loading HAS Common Files
    Loading Enterprise Manager plugin Common Files
    Loading Oracle UIX
    Loading Oracle Clusterware RDBMS Files
    Loading Cluster Verification Utility Common Files
    Loading Oracle Wallet Manager
    Loading Oracle Security Developer Tools
    Loading XML Parser for Java
    Loading Enterprise Manager Minimal Integration
    Loading Oracle Notification Service
    Loading Oracle Database User Interface
    Loading Oracle ODBC Driver
    Loading SQL*Plus Files for Instant Client
    Loading Required Support Files
    Loading Oracle Globalization Support
    Loading Database SQL Scripts
    Loading OLAP SQL Scripts
    Loading PL/SQL Embedded Gateway
    Loading Oracle Locale Builder
    Loading Character Set Migration Utility
    Loading Oracle Java Client
    Loading Oracle Multimedia Client Option
    Loading Oracle JDBC/THIN Interfaces
    Loading Oracle Universal Connection Pool
    Loading Secure Socket Layer
    Loading Oracle Net Required Support Files
    Loading Oracle Code Editor
    Loading Oracle Containers for Java
    Loading JAccelerator (COMPANION)
    Loading Perl Interpreter
    Loading Oracle Quality of Service Management (Client)
    Loading Deinstallation Tool
    Loading Perl Modules
    Loading Enterprise Manager Common Files
    Loading Installation Plugin Files
    Loading Expat libraries
    Loading XML Parser for Oracle JVM
    Loading Oracle XML Query
    Loading Oracle Message Gateway Common Files
    Loading Oracle Starter Database
    Loading Sample Schema Data
    Loading Oracle Help For Java
    Loading Oracle Core Required Support Files
    Loading Oracle Multimedia Locator RDBMS Files
    Loading Oracle JDBC/OCI Instant Client
    Loading Oracle Multimedia Annotator
    Loading Oracle Multimedia Java Advanced Imaging
    Loading Oracle Database 11g Multimedia Files
    Loading Precompiler Required Support Files
    Loading Oracle Text Required Support Files
    Loading Oracle Notification Service (eONS)
    Loading Oracle 11g Warehouse Builder Required Files
    Loading Parser Generator Required Support Files
    Loading regexp
    Loading Agent Required Support Files
    Loading Enterprise Manager Agent Core Files
    Loading Enterprise Manager Common Core Files
    Loading Enterprise Manager Grid Control Core Files
    Loading Enterprise Manager Database Plugin -- Agent Support
    Loading Enterprise Manager Repository Core Files
    Loading Enterprise Manager Database Plugin -- Repository Support
    Loading Provisioning Advisor Framework
    Loading Exadata Storage Server
    Loading Oracle Globalization Support
    Loading RDBMS Required Support Files
    Loading Database Workspace Manager
    Loading SQLJ Runtime
    Loading RDBMS Required Support Files for Instant Client
    Loading XDK Required Support Files
    Loading Oracle Application Express
    Loading Oracle SQL Developer
    Loading Oracle JDBC Server Support Package
    Loading Oracle Ice Browser
    Loading Oracle Display Fonts
    Loading SQL*Plus Required Support Files
    Loading Oracle RAC Required Support Files-HAS
    Loading Oracle Database Vault option
    Loading Platform Required Support Files
    Loading Oracle OLAP API
    Loading Oracle OLAP RDBMS Files
    Loading Oracle Data Mining RDBMS Files
    Loading Oracle Label Security
    Loading Oracle Database Vault J2EE Application
    Loading Oracle Real Application Testing
    Loading Oracle JFC Extended Windowing Toolkit
    Loading Oracle Extended Windowing Toolkit
    Loading Bali Share
    Loading SSL Required Support Files for InstantClient
    Loading LDAP Required Support Files
    Loading Oracle ODBC Driverfor Instant Client
    Loading Oracle Configuration Manager
    Loading Oracle Database Deconfiguration
    Loading Oracle RAC Deconfiguration
    Loading Oracle DBCA Deconfiguration
    Loading Oracle Configuration Manager Deconfiguration
    Loading Oracle Universal Installer
    Loading Oracle One-Off Patch Installer
    Loading Installer SDK Component
    Loading Sun JDK
    Loading dialogs for Oracle Database 11g
    Loading dialogs for Enterprise Edition Options
    Loading dialogs for Oracle Partitioning
    Loading dialogs for Oracle Spatial
    Loading dialogs for Oracle OLAP
    Loading dialogs for Oracle Database 11g
    Loading dialogs for Oracle Net Services
    Loading dialogs for Oracle Text
    Loading dialogs for Oracle Net Listener
    Loading dialogs for Oracle Enterprise Manager Console DB
    Loading dialogs for HAS Files for DB
    Loading dialogs for Oracle Internet Directory Client
    Loading dialogs for Oracle Advanced Security
    Loading dialogs for Oracle JVM
    Loading dialogs for Oracle XML Development Kit
    Loading dialogs for Database Configuration and Upgrade Assistants
    Loading dialogs for Oracle Net
    Loading dialogs for Oracle Multimedia
    Loading dialogs for Oracle Multimedia Locator
    Loading dialogs for Oracle Call Interface (OCI)
    Loading dialogs for SQL*Plus
    Loading dialogs for Oracle Netca Client
    Loading dialogs for Enterprise Manager Agent
    Loading dialogs for Oracle Database Utilities
    Loading dialogs for Oracle Programmer
    Loading dialogs for Oracle Database Gateway for ODBC
    Loading dialogs for Generic Connectivity Common Files
    Loading dialogs for PL/SQL
    Loading dialogs for Oracle Recovery Manager
    Loading dialogs for Assistant Common Files
    Loading dialogs for Buildtools Common Files
    Loading dialogs for Oracle LDAP administration
    Loading dialogs for Oracle Help for the Web
    Loading dialogs for Installation Common Files
    Loading dialogs for Precompiler Common Files
    Loading dialogs for HAS Common Files
    Loading dialogs for Enterprise Manager plugin Common Files
    Loading dialogs for Oracle UIX
    Loading dialogs for Oracle Clusterware RDBMS Files
    Loading dialogs for Cluster Verification Utility Common Files
    Loading dialogs for Oracle Wallet Manager
    Loading dialogs for Oracle Security Developer Tools
    Loading dialogs for XML Parser for Java
    Loading dialogs for Enterprise Manager Minimal Integration
    Loading dialogs for Oracle Notification Service
    Loading dialogs for Oracle Database User Interface
    Loading dialogs for Oracle ODBC Driver
    Loading dialogs for SQL*Plus Files for Instant Client
    Loading dialogs for Required Support Files
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for Database SQL Scripts
    Loading dialogs for OLAP SQL Scripts
    Loading dialogs for PL/SQL Embedded Gateway
    Loading dialogs for Oracle Locale Builder
    Loading dialogs for Character Set Migration Utility
    Loading dialogs for Oracle Java Client
    Loading dialogs for Oracle Multimedia Client Option
    Loading dialogs for Oracle JDBC/THIN Interfaces
    Loading dialogs for Oracle Universal Connection Pool
    Loading dialogs for Secure Socket Layer
    Loading dialogs for Oracle Net Required Support Files
    Loading dialogs for Oracle Code Editor
    Loading dialogs for Oracle Containers for Java
    Loading dialogs for JAccelerator (COMPANION)
    Loading dialogs for Perl Interpreter
    Loading dialogs for Oracle Quality of Service Management (Client)
    Loading dialogs for Deinstallation Tool
    Loading dialogs for Perl Modules
    Loading dialogs for Enterprise Manager Common Files
    Loading dialogs for Installation Plugin Files
    Loading dialogs for Expat libraries
    Loading dialogs for XML Parser for Oracle JVM
    Loading dialogs for Oracle XML Query
    Loading dialogs for Oracle Message Gateway Common Files
    Loading dialogs for Oracle Starter Database
    Loading dialogs for Sample Schema Data
    Loading dialogs for Oracle Help For Java
    Loading dialogs for Oracle Core Required Support Files
    Loading dialogs for Oracle Multimedia Locator RDBMS Files
    Loading dialogs for Oracle JDBC/OCI Instant Client
    Loading dialogs for Oracle Multimedia Annotator
    Loading dialogs for Oracle Multimedia Java Advanced Imaging
    Loading dialogs for Oracle Database 11g Multimedia Files
    Loading dialogs for Precompiler Required Support Files
    Loading dialogs for Oracle Text Required Support Files
    Loading dialogs for Oracle Notification Service (eONS)
    Loading dialogs for Oracle 11g Warehouse Builder Required Files
    Loading dialogs for Parser Generator Required Support Files
    Loading dialogs for regexp
    Loading dialogs for Agent Required Support Files
    Loading dialogs for Enterprise Manager Agent Core Files
    Loading dialogs for Enterprise Manager Common Core Files
    Loading dialogs for Enterprise Manager Grid Control Core Files
    Loading dialogs for Enterprise Manager Database Plugin -- Agent Support
    Loading dialogs for Enterprise Manager Repository Core Files
    Loading dialogs for Enterprise Manager Database Plugin -- Repository Support
    Loading dialogs for Provisioning Advisor Framework
    Loading dialogs for Exadata Storage Server
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for RDBMS Required Support Files
    Loading dialogs for Database Workspace Manager
    Loading dialogs for SQLJ Runtime
    Loading dialogs for RDBMS Required Support Files for Instant Client
    Loading dialogs for XDK Required Support Files
    Loading dialogs for Oracle Application Express
    Loading dialogs for Oracle SQL Developer
    Loading dialogs for Oracle JDBC Server Support Package
    Loading dialogs for Oracle Ice Browser
    Loading dialogs for Oracle Display Fonts
    Loading dialogs for SQL*Plus Required Support Files
    Loading dialogs for Oracle RAC Required Support Files-HAS
    Loading dialogs for Oracle Database Vault option
    Loading dialogs for Platform Required Support Files
    Loading dialogs for Oracle OLAP API
    Loading dialogs for Oracle OLAP RDBMS Files
    Loading dialogs for Oracle Data Mining RDBMS Files
    Loading dialogs for Oracle Label Security
    Loading dialogs for Oracle Database Vault J2EE Application
    Loading dialogs for Oracle Real Application Testing
    Loading dialogs for Oracle JFC Extended Windowing Toolkit
    Loading dialogs for Oracle Extended Windowing Toolkit
    Loading dialogs for Bali Share
    Loading dialogs for SSL Required Support Files for InstantClient
    Loading dialogs for LDAP Required Support Files
    Loading dialogs for Oracle ODBC Driverfor Instant Client
    Loading dialogs for Oracle Configuration Manager
    Loading dialogs for Oracle Database Deconfiguration
    Loading dialogs for Oracle RAC Deconfiguration
    Loading dialogs for Oracle DBCA Deconfiguration
    Loading dialogs for Oracle Configuration Manager Deconfiguration
    Loading dialogs for Oracle Universal Installer
    Loading dialogs for Oracle One-Off Patch Installer
    Loading dialogs for Installer SDK Component
    Loading dialogs for Sun JDK
    Processing Oracle Database 11g 11.2.0.1.0
    Processing Enterprise Edition Options 11.2.0.1.0
    Processing Oracle Partitioning 11.2.0.1.0
    Processing Oracle Spatial 11.2.0.1.0
    Processing Oracle OLAP 11.2.0.1.0
    Processing Oracle Database 11g 11.2.0.1.0
    Processing Oracle Net Services 11.2.0.1.0
    Processing Oracle Text 11.2.0.1.0
    Thanks,
    Kavitha

    Hi,
    First ORACLE Home : /u02/oracle/11.2.0
    Now using ORACLE Home: /u03/HFMDCP/11.2.0
    The log showing below information:
    driveName = /dev/shm
    returnInMegaBytes = true
    INFO: Query Returned: 3992
    INFO: Setting variable 'n_POSIXMemSize' to '3992'. Received the value from the variable calculation.
    INFO: Setting value of child variable b_useRegistration of oracle.sysman.ccr 10.3.1.1.0 to false
    INFO: *** Entering Component: oracle.options installation
    INFO: Processing Enterprise Edition Options 11.2.0.1.0
    INFO: Processing Enterprise Edition Options 11.2.0.1.0
    INFO: *** Entering Component: oracle.rdbms.partitioning installation
    INFO: Processing Oracle Partitioning 11.2.0.1.0
    INFO: Processing Oracle Partitioning 11.2.0.1.0
    INFO: Calling Query generalQueries10.2.0.2.0 getOSName
    INFO: Query Returned: Linux
    INFO: Setting variable 's_operatingSystem' to 'Linux'. Received the value from the variable calculation.
    INFO: Setting variable 's_makeLogFile' to 'make.log'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    INFO: Query Returned: false
    INFO: Setting variable 'b_isWINDOWS' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 's_installLogDir' to '/u03/HFMDCP/11.2.0/install/'. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.sdo installation
    INFO: Processing Oracle Spatial 11.2.0.1.0
    INFO: Processing Oracle Spatial 11.2.0.1.0
    INFO: Calling Query generalQueries10.2.0.2.0 getOSName
    INFO: Query Returned: Linux
    INFO: Setting variable 's_operatingSystem' to 'Linux'. Received the value from the variable calculation.
    INFO: Setting variable 's_makeLogFile' to 'make.log'. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSSelectedNodes' to ''. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: true
    INFO: Setting variable 'b_isUNIX' to 'true'. Received the value from the variable calculation.
    INFO: Setting variable 'VERSION' to '9.2.0.0.0 Beta'. Received the value from the variable calculation.
    INFO: Setting variable 'ORDSYS_PASSWORD' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    INFO: Setting variable 'MDSYS_PASSWORD' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    INFO: Setting variable 'MD' to 'md'. Received the value from the variable calculation.
    INFO: Setting variable 'DESCRIPTION' to 'Oracle8 Spatial Cartridge'. Received the value from the variable calculation.
    INFO: Setting variable 's_sourceInstallScript' to '/u03/HFMDCP/11.2.0/md/admin/mdinst.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_sourceDeinstallScript' to '/u03/HFMDCP/11.2.0/md/admin/mddins.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_sourceDeinstallScript' to '/u03/HFMDCP/11.2.0/md/admin/mddins.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_installLogDir' to '/u03/HFMDCP/11.2.0/install/'. Received the value from the variable calculation.
    INFO: Setting variable 's_destInstallScript' to '/u03/HFMDCP/11.2.0/md/admin/mdinst.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_destDeinstallScript' to '/u03/HFMDCP/11.2.0/md/admin/mddins.sql'. Received the value from the variable calculation.
    INFO: Setting variable 'sl_processList' to '/u03/HFMDCP/11.2.0/bin/oracle'. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.oraolap installation
    INFO: Processing Oracle OLAP 11.2.0.1.0
    INFO: Processing Oracle OLAP 11.2.0.1.0
    INFO: Calling Query generalQueries10.2.0.2.0 getOSName
    INFO: Query Returned: Linux
    INFO: Setting variable 's_operatingSystem' to 'Linux'. Received the value from the variable calculation.
    INFO: Setting variable 's_makeLogFile' to 'make.log'. Received the value from the variable calculation.
    INFO: Setting variable 's_installLogDir' to '/u03/HFMDCP/11.2.0/install/'. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.rdbms installation
    INFO: Processing Oracle Database 11g 11.2.0.1.0
    INFO: Processing Oracle Database 11g 11.2.0.1.0
    INFO: Calling Query unixQueries10.1.0.2.0 getGroups
    INFO: Query Returned: dba
    INFO: Setting variable 'sl_groupChoices' to 'dba'. Received the value from the variable calculation.
    INFO: Setting variable 's_version' to '9.2.0.0.0'. Received the value from the variable calculation.
    INFO: Setting variable 's_verifierName' to 'verifier15.jar'. Received the value from the variable calculation.
    INFO: Setting variable 's_sidToMigrate' to ''. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 getOSName
    INFO: Query Returned: Linux
    INFO: Setting variable 's_operatingSystem' to 'Linux'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 getenv
    name = LD_LIBRARY_PATH
    INFO: Query Returned: /tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/lib/amd64/server:/tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/lib/amd64:/tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/../lib/amd64
    INFO: Setting variable 's_oldLDLibPath' to '/tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/lib/amd64/server:/tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/lib/amd64:/tmp/OraInstall2011-05-11_10-43-27AM/jdk/jre/../lib/amd64'. Received the value from the variable calculation.
    INFO: Setting variable 's_ojdbc5Name' to 'ojdbc5.jar'. Received the value from the variable calculation.
    INFO: Setting variable 's_nameOfBundle' to 'EE'. Received the value from the variable calculation.
    INFO: Setting variable 's_makeLogFile' to 'make.log'. Received the value from the variable calculation.
    INFO: Setting variable 's_lowResourceDialogPrompt' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_ldapjclntName' to 'ldapjclnt11.jar'. Received the value from the variable calculation.
    INFO: Setting variable 's_jssl11Name' to 'jssl-1_1.jar'. Received the value from the variable calculation.
    INFO: Calling Query areasQueries10.2.0.1.0 getProductHome
    name = oracle.jdk
    startVersion = 1.5.0.0.0
    endVersion = 9.9.9.9.9
    acceptCompatible = null
    INFO: Query Returned: /u03/HFMDCP/11.2.0/jdk
    INFO: Setting variable 's_jreLocation' to '/u03/HFMDCP/11.2.0/jdk/jre/'. Received the value from the variable calculation.
    INFO: Setting variable 's_javaxssl12Name' to 'javax-ssl-1_2.jar'. Received the value from the variable calculation.
    INFO: Setting variable 's_groupDialogPrompt' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_filemapLocation' to '/opt/ORCLfmap'. Received the value from the variable calculation.
    INFO: Setting variable 's_emailServer' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_emailAddress' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_defaultDBName' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_c' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSSelectedNodes' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSNodeInfoString' to 'NO_VALUE'. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSClusterUser' to 'NO_VALUE'. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSClusterPassword' to '*Protected value, not to be logged*'. Received the value from the variable calculation.
    INFO: Setting variable 's_DBNamePrompt' to 'Every Oracle 11g database is uniquely identified by a Global Database Name, typically of the form "name.domain". Enter the Global Database Name for this database.'. Received the value from the variable calculation.
    INFO: Setting variable 's_DBName' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_DBDomain' to ''. Received the value from the variable calculation.
    INFO: Setting variable 'init_shared_pool_size' to '10000000'. Received the value from the variable calculation.
    INFO: Setting variable 'init_sequence_cache_hash_buckets' to '10'. Received the value from the variable calculation.
    INFO: Setting variable 'init_sequence_cache_entries' to '10'. Received the value from the variable calculation.
    INFO: Setting variable 'init_processes' to '59'. Received the value from the variable calculation.
    INFO: Setting variable 'init_path' to ''. Received the value from the variable calculation.
    INFO: Setting variable 'init_open_links' to '4'. Received the value from the variable calculation.
    INFO: Setting variable 'init_log_buffer' to '8192'. Received the value from the variable calculation.
    INFO: Setting variable 'init_job_queue_processes' to '2'. Received the value from the variable calculation.
    INFO: Setting variable 'init_job_queue_interval' to '10'. Received the value from the variable calculation.
    INFO: Setting variable 'init_dml_locks' to '100'. Received the value from the variable calculation.
    INFO: Setting variable 'init_distributed_transactions' to '5'. Received the value from the variable calculation.
    INFO: Setting variable 'init_distributed_lock_timeout' to '300'. Received the value from the variable calculation.
    INFO: Setting variable 'init_db_file_multiblock_read_count' to '8'. Received the value from the variable calculation.
    INFO: Setting variable 'init_db_block_buffers' to '1000'. Received the value from the variable calculation.
    INFO: Setting variable 'build_log_path' to ''. Received the value from the variable calculation.
    INFO: Setting variable 'b_promptForGroups' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_orabaseContainsOrahome' to 'true'. Received the value from the variable calculation.
    INFO: Setting variable 'b_lowResource' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_launchDBMA' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_javaOptionBeingInstalled' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    INFO: Query Returned: false
    INFO: Setting variable 'b_isWINDOWS' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: true
    INFO: Setting variable 'b_isUNIX' to 'true'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isDBup' to 'true'. Received the value from the variable calculation.
    INFO: Setting variable 'b_giInstall' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 's_xslLocation' to '/u03/HFMDCP/11.2.0/rdbms/xml/xsl'. Received the value from the variable calculation.
    INFO: Setting variable 's_verifierDir' to '/u03/HFMDCP/11.2.0/jlib'. Received the value from the variable calculation.
    INFO: Setting variable 's_shPath' to '/u03/HFMDCP/11.2.0/demo/schema/sales_history/'. Received the value from the variable calculation.
    INFO: Setting variable 's_pmPath' to '/u03/HFMDCP/11.2.0/demo/schema/product_media/'. Received the value from the variable calculation.
    INFO: Setting variable 's_oradimlocation' to '/u03/HFMDCP/11.2.0\bin'. Received the value from the variable calculation.
    INFO: Setting variable 's_oradbalocation' to '/u03/HFMDCP/11.2.0\Database'. Received the value from the variable calculation.
    INFO: Setting variable 's_operGroup' to 'dba'. Received the value from the variable calculation.
    INFO: Setting variable 's_oePath' to '/u03/HFMDCP/11.2.0/demo/schema/order_entry/'. Received the value from the variable calculation.
    INFO: Setting variable 's_netAPILoc' to '/u03/HFMDCP/11.2.0/jlib'. Received the value from the variable calculation.
    INFO: Setting variable 's_mkdirFile' to '/u03/HFMDCP/11.2.0/demo/schema/mk_dir.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_logPath' to '/u03/HFMDCP/11.2.0/demo/schema/log/'. Received the value from the variable calculation.
    INFO: Setting variable 's_libDir' to '/u03/HFMDCP/11.2.0/jdbc/lib'. Received the value from the variable calculation.
    INFO: Setting variable 's_jlibDir' to '/u03/HFMDCP/11.2.0/rdbms/jlib'. Received the value from the variable calculation.
    INFO: Setting variable 's_installLogDir' to '/u03/HFMDCP/11.2.0/install/'. Received the value from the variable calculation.
    INFO: Setting variable 's_instMkdirFile' to '/u03/HFMDCP/11.2.0/demo/schema/mk_dir.sql.sbs'. Received the value from the variable calculation.
    INFO: Setting variable 's_initmetaSource' to '/u03/HFMDCP/11.2.0/rdbms/install/sbs/initmeta.sbs'. Received the value from the variable calculation.
    INFO: Setting variable 's_initmetaDest' to '/u03/HFMDCP/11.2.0/rdbms/admin/initmeta.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_ezLocation' to '/u03/HFMDCP/11.2.0/instantclient'. Received the value from the variable calculation.
    INFO: Setting variable 's_dbmssmlSource' to '/u03/HFMDCP/11.2.0/rdbms/install/sbs/dbmssml.sbs'. Received the value from the variable calculation.
    INFO: Setting variable 's_dbmssmlDest' to '/u03/HFMDCP/11.2.0/rdbms/admin/dbmssml.sql'. Received the value from the variable calculation.
    INFO: Setting variable 's_dbaGroup' to 'dba'. Received the value from the variable calculation.
    INFO: Setting variable 's_asmGroup' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_RDBMS81' to '/u03/HFMDCP/11.2.0\RDBMS'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isUXW' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isSolaris' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isSequent' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isIntel_Solaris' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isHPI' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isHP' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isDec' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isDG' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isAix' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'sl_processList' to '/u03/HFMDCP/11.2.0/bin/ctxsrv,/u03/HFMDCP/11.2.0/bin/dbsnmp,/u03/HFMDCP/11.2.0/bin/extproc,/u03/HFMDCP/11.2.0/bin/oracle'. Received the value from the variable calculation.
    INFO: Setting variable 's_OSDSharelibExt' to '.so'. Received the value from the variable calculation.
    INFO: Setting variable 'SO_EXT' to 'so'. Received the value from the variable calculation.
    INFO: Setting variable 's_unixConfigFile' to '/u03/HFMDCP/11.2.0/rdbms/lib/config.c'. Received the value from the variable calculation.
    INFO: Setting value of child variable s_emailServer of oracle.sysman.console.db 11.2.0.1.0 to
    INFO: Setting value of child variable s_emailAddress of oracle.sysman.console.db 11.2.0.1.0 to
    INFO: *** Entering Component: oracle.network installation
    INFO: Processing Oracle Net Services 11.2.0.1.0
    INFO: Processing Oracle Net Services 11.2.0.1.0
    INFO: *** Entering Component: oracle.ctx installation
    INFO: Processing Oracle Text 11.2.0.1.0
    INFO: Processing Oracle Text 11.2.0.1.0
    INFO: Setting variable 's_version' to '9.2.0.0.0 Beta'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 getOSName
    INFO: Query Returned: Linux
    INFO: Setting variable 's_operatingSystem' to 'Linux'. Received the value from the variable calculation.
    INFO: Setting variable 's_makeLogFile' to 'make.log'. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSSelectedNodes' to ''. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.2.0.2.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: true
    INFO: Setting variable 'b_isUNIX' to 'true'. Received the value from the variable calculation.
    INFO: Setting variable 's_installLogDir' to '/u03/HFMDCP/11.2.0/install/'. Received the value from the variable calculation.
    INFO: Setting variable 's_OracleHomeKeyWow6432Node' to 'Wow6432Node'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isWinX64' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'sl_processList' to '/u03/HFMDCP/11.2.0/bin/ctxsrv,/u03/HFMDCP/11.2.0/bin/oracle'. Received the value from the variable calculation.
    INFO: Setting variable 'oracle_key' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_ctxx_old_location' to '/u03/HFMDCP/11.2.0/ctx/lib/libctxx9.so'. Received the value from the variable calculation.
    INFO: Setting variable 's_ctxx_location' to '/u03/HFMDCP/11.2.0/lib/libctxx9.so'. Received the value from the variable calculation.
    INFO: Calling Query RunningProcessQuery11.2.0.1.0 getRunningProcess
    multiParamName = /u03/HFMDCP/11.2.0/bin/ctxsrv,/u03/HFMDCP/11.2.0/bin/oracle
    Thanks,
    Kavitha

  • Oracle text search not working for  WSDL files

    I have a table (resources) with blob data type column (xml_data) and I've created context type index on that column. I've XSD and WSDL files stored in that blob column.
    I can search XSD and XML files with a query with contains operator. But any search on the words from wsdl file returns zero results.I am not able to perform search on wsdl file.
    Please advise me whether oracle text can work for WSDL files also ?
    Query details
    ===========
    create index myIndex on resources (xml_data) indextype is ctxsys.context;
    select * from resources where contains(xml_data, 'searchword') > 0
    Thanks a lot,
    Santhi

    Even though it isn't listed specifically, I can't see why it wouldn't work. The WSDL file should be a simple XML file, so in theory it shouldn't be any different to Oracle Text than the XML file that you loaded and searched successfully. Did you get any errors during indexing, and what do your tokens look like in the DR$MYINDEX$I.TOKEN_TEXT column?
    Do you have a mini test case that didn't work for you? Perhaps we could play with it a bit.
    Long term you might want to consider using section groups so that you can search "within" tags.
    -Ron

Maybe you are looking for