Process for Oracle Text

am working as a dba and we plan to introduce oracle text for text search. since I am new to this concept, I would like to know step by step implementation of Oracle text. I've searched some web sites but still not clear on the implementation part.
Please help me out

Hi,
Oracle Text is included in both standard and enterprise editions of the data server. When you are creating your database, select Oracle Text during configuration (one of the options). You will then have Oracle Text available on your database. The schema name is CTXSYS. You need to unlock this account just like any other.
To use Text, either grant permissions on the specific objects you need for the user, or use the CTXAPP role. It is up to you to know the permissions required for the objects (in other words, I can't tell you your requirements), so research this in the reference manual.
At this point, it is ready to use. Just create your indexes according to the Oracle Text Developer's Guide (you can find this with all of the documentation - look at the Application Developer's tab in Doc Library). Your search syntax depends totally on your requirements, and the type of index you choose to create. For example, the CONTEXT index uses the CONTAINS operator, and the CTXCAT index uses CATSEARCH (unless of course you want to use templates, but let's not go there just yet...).
There are two references you will want to review: The Oracle Text Developer's Guide and the Oracle Text Reference.
Hope this helps,
Ron

Similar Messages

  • Oracle companion cd themes for oracle text

    Hi i want to install oracle cd companion, but i have not understood what i have to download to run it.
    I need use themes for oracle text query's,and oracle 10g xe don't support themes.
    Is there a simply procedure that i can follow to install companion correctly?
    I have windows xp and oracle 10g.
    Important file is droldus.dat..
    Thank you very much!!!

    I have to install companion cd only for testing oracle text's themes on my computer..
    and nothing else...
    but which are applications that i have installed??
    html db??oracle workflow server??i can't understand!!!Are useful in my case, or i must install it?

  • How to install knowledge base file for oracle text

    how to install knowledge base file for oracle text?
    there are couple of files droldUS.dat,.. which are required to generate gists and themes, where can i find them or install them.
    please help!

    I checked the download page and it says:
    "All Release 2 download pages contain Oracle Companion, Client, Clusterware, Gateways, and Application Express standalone downloads"
    so you should already have it. Try searching for the filename that was in your error message.

  • English preferences for oracle text error

    Hi,
    i did run the script drdefus.sql script as sysdba
    and when i try to install the "Presidential Inaugural Addresses" demonstration application in HTMLDB and i got the following error.
    error:------------------------------------------
    ORA-20001: This demonstration can only be installed into an Oracle database which has the English preferences loaded for Oracle Text. Please contact your administrator
    Can someone help me to fix this error.
    Thanks,
    Philip.

    I have 10.0.1.3.0 in place and used the companion cd of 10.0.1.2.0 to install the necessary tools on a clone. It seems to work and I was able to install the application now. Do I have to apply the patch again for some reason? Looking at the Metalink they say I should? Any experience out there.
    Denes Kubicek

  • Pre-built Thesaurus for Oracle Text

    Could anyone provide me direction on where to get Pre-built Thesaurus For Oracle Text that is specific to pharmaceutical science companies.
    any advice would be appreicated

    There are two ways you can use pre-built Thesaurus in Oracle.
    1) Just as an earlier reply you got, use the Thesaurus Management System (TMS) product that comes with a prebuilt Medra database for mdeical and other related text mining.
    2) Import and supplement your own medical thesaurus into the existing thesaurus that comes pre-loaded with the database using the provided APIs. As an example, you could download from the web the UMLS thesaurus content, convert the data into the API required format and load the UMLS data into the database. You can then cluster and classify documents/abstracts based on themes or subject matter.
    Regards.

  • Is possible to alter default collations for Oracle Text?

    Oracle supports custom linguistic sorts for sorting and matching.
    Is something similar availble for Oracle text?
    Specifiaccaly we want to alter base letter definitions and ignorable characters for a given language.

    Barbara, thank you for your reply.
    The purpose was to satisfy certain requirements of arabic text search. These seem to be fulfilled by WORLD LEXER, so the case is closed.
    Note that BASIC and AUTO LEXER implement differently the lexing of arabic text, with result not to be candidates for such a solution.
    By the way, I tried to use skipjoins for setting an ignorable character but it did not work (auto lexer).

  • MultiLanguage support for Oracle Text

    Hi,
    We are providing multi language support in our application. So, we are using the NVarchar datatype. And we want to provide the search option for that text. So if i tried to create an index on that column it is giving the error and unable to create the index on that column. Same if tried to create an index on Char and Varchar datatypes it was successfully created the index on those columns and search is working fine.
    But according to our requirements, we should provide the multi language support in our application.
    Please suggest me how to create indexes on NVarchar datatype and providing the oracle text search features on that datatype.
    Waiting for your favourble reply.
    Thanks in advance.
    Regards,
    Anil.

    No place in the standard docs very well. There was a note I found on it at one point, but I can't find the number at the moment. 10g new features for Text note has some info on it though. I'll look again tomorrow.
    I did a lot of research on the world_lexer a few months back (wrote some info on IR & Oracle Text our newest Oracle Press book), and got some good info from the product team. One of the chapters covering Text will be made available for free and there is a diagram in there of how the world_lexer processes text. I'll post the link to the forum when it is available.
    Since it doesn't require a language column, it attempts to auto-recognize the text...but not really the language. More like...the type of text it is. White-space delimited languages like English or Spanish are easy to break into tokens. Japanese & Korean are another story...no white-space delimiter. Arabic is yet another story. Those are essentially the buckets that text is thrown into for breaking into tokens when using the world_lexer.
    So, where does German fall? It will be broken up similar to English. But what about the special features (like alternate spelling) that are available? Nope - sorry. It doesn't know German from French. With the multi_lexer you defined sub-lexers and told Text which records were German or French. This means that you can use more of the lang features with it. The world_lexer is much easier to implement and maintain, but it is a trade-off.
    Hope that defines it a little better.

  • About index memory parameter for Oracle text indexes

    Hi Experts,
    I am on Oracle 11.2.0.3 on Linux and have implemented Oracle Text. I am not an expert in this subject and need help about one issue. I created Oracle Text indexes with default setting. However in an oracle white paper I read that the default setting may not be right. Here is the excerpt from the white paper by Roger Ford:
    URL:http://www.oracle.com/technetwork/database/enterprise-edition/index-maintenance-089308.html
    "(Part of this white paper below....)
    Index Memory                                    As mentioned above, cached $I entries are flushed to disk each time the indexing memory is exhausted. The default index memory at installation is a mere 12MB, which is very low. Users can specify up to 50MB at index creation time, but this is still pretty low.                                   
    This would be done by a CREATE INDEX statement something like:
    CREATE INDEX myindex ON mytable(mycol) INDEXTYPE IS ctxsys.context PARAMETERS ('index memory 50M'); 
    Allow index memory settings above 50MB, the CTXSYS user must first increase the value of the MAX_INDEX_MEMORY parameter, like this:                                
    begin ctx_adm.set_parameter('max_index_memory', '500M'); end; 
    The setting for index memory should never be so high as to cause paging, as this will have a serious effect on indexing speed. On smaller dedicated systems, it is sometimes advantageous to temporarily decrease the amount of memory consumed by the Oracle SGA (for example by decreasing DB_CACHE_SIZE and/or SHARED_POOL_SIZE) during the index creation process. Once the index has been created, the SGA size can be increased again to improve query performance."
    (End here from the white paper excerpt)
    My question is:
    1) To apply this procedure (ctx_adm.set_parameter) required me to login as CTXSYS user. Is that right? or can it be avoided and be done from the application schema? This user CTXSYS is locked by default and I had to unlock it. Is that ok to do in production?
    2) What is the value that I should use for the max_index_memory should it be 500 mb - my SGA is 2 GB in Dev/ QA and 3GB in production. Also in the index creation what is the value I should set for index memory parameter  - I had left that at default but how should I change now? Should it be 50MB as shown in example above?
    3) The white paper also refer to rebuilding an index at some interval like once in a month:   ALTER INDEX DR$index_name$X REBUILD ONLINE;
    --Is this correct advice? i would like to ask the experts once before doing that.  We are on Oracle 11g and the white paper was written in 2003.
    Basically while I read the paper, I am still not very clear on several aspects and need help to understand this.
    Thanks,
    OrauserN

    Perhaps it's time I updated that paper
    1.  To change max_index_memory you must be a DBA user OR ctxsys. As you say, the ctxsys account is locked by default. It's usually easiest to log in as a DBA and run something like
    exec ctxsys.ctx_adm.set_parameter('MAX_INDEX_MEMORY', '10G')
    2.  Index memory is allocated from PGA memory, not SGA memory. So the size of SGA is not relevant. If you use too high a setting your index build may fail with an error saying you have exceeded PGA_AGGREGATE_LIMIT.  Of course, you can increase that parameter if necessary. Also be aware that when indexing in parallel, each parallel process will allocated up to the index memory setting.
    What should it be set to?  It's really a "safety" setting to prevent users grabbing too much machine memory when creating indexes. If you don't have ad-hoc users, then just set it as high as you need. In 10.1 it was limited to just under 500M, in 10.2 you can set it to any value.
    The actual amount of memory used is not governed by this parameter, but by the MEMORY setting in the parameters clause of the CREATE INDEX statement. eg:
    create index fooindex on foo(bar) indextype is ctxsys.context parameters ('memory 1G')
    What's a good number to use for memory?  Somewhere in the region of 100M to 200M is usually good.
    3.  No - that's out of date.  To optimize your index use CTX_DDL.OPTIMIZE_INDEX.  You can do that in FULL mode daily or weekly, and REBUILD mode perhaps once a month.

  • Some reference sites for Oracle Text

    Hello,
    I'm looking for some reference sites (other than oracle) that make use of Oracle Text in it's search facility. Can anyone help?
    Thanks in advance,
    Aidan

    Check for Der Spiegel and OCLC in the following page:
    http://oracle.com/ip/index.html?cm_home.html

  • How do I know what Oracle products I need installed for Oracle Text to work

    I get the following errors from a VB application when trying to access the Oracle Text procedures:
    Oracle Error: -20000
    ORA-20000: Oracle Text error:
    ORA-02074: cannot ROLLBACK in a distributed transaction
    ORA-06512: at "CTXSYS.CTX_DOC", line 483
    ORA-02074: cannot SET SAVEPOINT in a distributed transaction
    DRG-10816: display/highlight call failed
    ORA-02074: cannot SET SAVEPOINT in a distributed transaction
    I need to resolve this ASAP

    Oracle Text is part of the database. Try the quick start sample (http://otn.oracle.com/products/text/x/Samples/Quick_Start/index.html) and check if a sql-contains statement works.

  • Trying to configure syslog process, for Oracle auditing, Oracle 10gR2

    Folks,
    I am trying to use the OS (UNix Sun Solaris 10), syslog process. So I can write my Oracle db 10gR2 audit logs to a location, where Oracle userid on unix cannot modify/delete.
    For that I have set following values in the Oracle 10gR2 parameters :
    audit_file_dest string /flood/u01/app/oracle/product/
    10.2.0/db_1/rdbms/audit
    audit_sys_operations boolean TRUE
    audit_syslog_level string USER
    audit_trail string OS
    Actually I have set audit_syslog_level = 'user.notice' value in the database
    Also made following entry in the syslog.conf file
    ## oracle audit records
    user.notice /var/log/oraaudit.log
    # if a non-loghost machine chooses to have authentication messages
    # sent to the loghost machine, un-comment out the following line:
    #auth.notice ifdef(`LOGHOST', /var/log/authlog, @loghost)
    mail.debug ifdef(`LOGHOST', /var/log/syslog, @loghost)
    # non-loghost machines will use the following lines to cause "user"
    # log messages to be logged locally.
    ifdef(`LOGHOST', ,
    user.err /dev/sysmsg
    user.err /var/adm/messages
    user.alert `root, operator'
    user.emerg *
    It is still not logging the audit logs in that location.
    What am I missing here
    Thanks for your help.
    Ashish

    By chance did you restart the database and syslogd? ( I think that a "kill -1 syslogd" will work for that.)
    Your configuration looks very similar to what I did - and mine is working ok. One difference I noticed: when I do the "show parameter audit", I get the whole string of "audit_syslog_level string LOCAL5.NOTICE"
    Greg

  • Costing  Process for Oracle EBS-R12 Inventory Management System.

    My clients are going to used EBS R12 for inventory and Purchasing Inventory Organization is not process Enable. Business type like Just import finished goods By (LC) & maintain stock status.
    My clients wants to maintain stock status by Average Costing. In which table I can get information of costing & how can I setup costing process?
    Thanks
    Omar

    I need to list of APIs for inventory module specially for quality.List of APIs can be found in iREP website.
    iREP
    http://irep.oracle.com/index.html
    In R12, Oracle Integration Repository is shipped as part of the E-Business Suite (as a responsibility).
    Oracle Inventory Management Application Program Interface ( APIs) [ID 729998.1]
    Thanks,
    Hussein

  • 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

  • Manual Install of Oracle Text and XDB for 11g

    I can't find the Metalink manual install docs for Oracle Text and XDB. For unknown reasons the DB was created with out them. I see the docs for 9i and 10g, but not 11g.
    Thanks!

    Hi,
    I think you are in APEX forum.
    This question seems more suitable for installation forum: Database Installation
    Also, please see if this thread helps: How do I install ORACLE TEXT
    Ta,
    Trent

  • Oracle Text - Compressed (ZIP) documents support

    Is it possible for Oracle Text to index files of various formats like DOC, PDF, HTML compressed in the ZIP archives?
    I have read some Oracle text documentation and it seems that this feature is not available out-the-box?
    Does anyone have any idea how this functionality can be implemented?
    I think USER_DATASTORE might be used for this, but this does not seem like a good way how to do it.
    The second option is using a Oracle Text FILTER class. But the default INSO_FILTER does not support indexing of documents in ZIP packages according to my tests.
    So far I was not able to find any other filters, which support this feature.
    Regards.

    What version of oracle are you interested in?
    11.1.0.7 (the latest) returns Oracle text to INSO filters for document processing, and in [Text Reference Section B.2.5|http://download.oracle.com/docs/cd/B28359_01/text.111/b28304/afilsupt.htm#g639477] (Archive File Format), ZIP files are supported.

Maybe you are looking for

  • Need to add a second hard drive. Which model?

    Hello, I would like to add a second hard drive to my G3. My current 12 Gig ATA/133 hard drive is not sufficient anymore for my projects. I would like to choose a SATA hard drive and I need some help with the selection of a model. I am choosing SATA b

  • How do i install App Store? i have 1.1.4 version.

    title says it all. please help me! thanks.

  • IPhone 5s some body tracking my iPhone and Apple ID please hela

    Some body tracking my iPhone 5s .with Mac .i need sing out for Mac .and backup my device and all Apple ID stuff .video photo etc

  • Sony Cybershot T100 sound missing in iphoto

    got my sony T100, when downloading a video into iphoto the sound track is missing. sony customerservice tells me that apple will supply me with a codex for mpg vx, apple has no idea how to solve the problem. can anyone help, please? kilo

  • Music locked in repeat mode

    My music -- whether in the playlist or by album or by artist-- is locked in the repeat mode for a single song even if I touch the shuffle button. I can move it manually, but it is not scrolling through the songlist or shuffling through the list. How