Default port of Oracle 9i Database --- Oracle database installation

Hi,
I am new to oracle..searched across internet to know this particular detail of Oracle 9i database installation.
My query being..Can Oracle database be installed in a way to use port's other than 1521. When do we go for making use of a port other than 1521. What are the risk's and benifit's.
How to make use of a port other than 1521 while making use of OUI(oracle universal installer) to install a 9i database on windows OS.
Can someone provide an answer to my queries/ some link where I can find the answer.
Thanks,
R S

you have to change the port no in listener.ora file which exists on Oracle_home/network/admin/listener.ora like
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = Griat-xp.bebo.tech.com)(PORT = 1521))
  )from this to
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = Griat-xp.bebo.tech.com)(PORT = 1522))
  )afterwords you have to reload the listener by using lsnrctl on command prompt
in this way you can change the default port of Oracle
Regards
Singh

Similar Messages

  • Problem with default oci driver with database ORACLE 8.1.7

    Presently our application is using weblogic 5.1 with oracle 8.1.6 database. Our
    application uses OCI driver to connect OraclePool. We used weblogic/lib/solaris/oci815_8/libweblogicoci36.so
    libraary to connect to dataabse.
    We upgraded our Database from 8.1.6 to 8.1.7. After upgradation of database from
    8.1.6 to 8.1.7. By using above shared library we are getting following error.
    In the weblogic connoction pool, we specied minimum as 4 connections. When it
    is creating connections while startup first connection is successfully connecting
    and second onwards it is giving following error.
    url=jdbc:oracle:thin:@169.165.38.162:1570:PBGSUP, props=user=SUPPORT;password=
    SUPPORT;, allowShrinking=true, driver=oracle.jdbc.driver.OracleDriver, aclName=w
    eblogic.jdbc.connectionPool.oraclePool, # testTable=dual, capacityIncremen
    t=2, initialCapacity=5, url=jdbc:oracle:oci8:@PBGSUP, shrinkPeriodMins=5}
    Delaying 1 seconds before making a oraclePool pool connection.
    Thu Nov 22 09:38:58 CST 2001:<I> <JDBC Pool> Connection for pool "oraclePool"
    cr
    eated.
    Delaying 1 seconds before making a oraclePool pool connection.
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:310)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:200)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:149)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:109)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    Thu Nov 22 09:39:00 CST 2001:<I> <JDBC Pool> Sleeping in createResource()
    Thu Nov 22 09:39:01 CST 2001:<E> <JDBC Pool> Failed to create connection pool
    "oraclePool"
    For Oracle 8.1.7 do we need to any other library other than oci815_8. If so can
    you send those details

    Looks like you are using Oracle OCI driver and not WebLogic OCI driver so
    you really dont need the libweblogicoci36.so file in your
    LD_LIBRARY_PATH/PATH. Also your properties below show that you are using
    thin driver url and then also oci8 url, check you connection pool setting
    properly and may be try getting the latest oracle drivers.
    If you are trying to use weblogic jDrivers make sure your pool properties
    are set right.
    hth
    sree
    "Subba Rao.S..G" <[email protected]> wrote in message
    news:[email protected]...
    Presently our application is using weblogic 5.1 with oracle 8.1.6 database.
    Our
    application uses OCI driver to connect OraclePool. We used
    weblogic/lib/solaris/oci815_8/libweblogicoci36.so
    libraary to connect to dataabse.
    We upgraded our Database from 8.1.6 to 8.1.7. After upgradation of database
    from
    8.1.6 to 8.1.7. By using above shared library we are getting following
    error.
    In the weblogic connoction pool, we specied minimum as 4 connections. When
    it
    is creating connections while startup first connection is successfully
    connecting
    and second onwards it is giving following error.
    url=jdbc:oracle:thin:@169.165.38.162:1570:PBGSUP,
    props=user=SUPPORT;password=
    SUPPORT;, allowShrinking=true, driver=oracle.jdbc.driver.OracleDriver,
    aclName=w
    eblogic.jdbc.connectionPool.oraclePool, # testTable=dual,
    capacityIncremen
    t=2, initialCapacity=5, url=jdbc:oracle:oci8:@PBGSUP, shrinkPeriodMins=5}
    Delaying 1 seconds before making a oraclePool pool connection.
    Thu Nov 22 09:38:58 CST 2001:<I> <JDBC Pool> Connection for pool
    "oraclePool"
    cr
    eated.
    Delaying 1 seconds before making a oraclePool pool connection.
    java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.sql.SQLException.<init>(SQLException.java:43)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
    at oracle.jdbc.oci8.OCIDBAccess.check_error(Compiled Code)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:310)
    at
    oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:200)
    at
    oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(Con
    nectionEnvFactory.java:149)
    at
    weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(Con
    nectionEnvFactory.java:109)
    at weblogic.common.internal.ResourceAllocator.makeResources(Compiled
    Cod
    e)
    at weblogic.common.internal.ResourceAllocator.<init>(Compiled Code)
    at
    weblogic.jdbc.common.internal.ConnectionPool.startup(ConnectionPool.j
    ava:330)
    at weblogic.jdbc.common.internal.JdbcInfo.initPools(Compiled Code)
    at weblogic.jdbc.common.internal.JdbcInfo.startup(JdbcInfo.java:200)
    at
    weblogic.jdbc.common.internal.JdbcStartup.main(JdbcStartup.java:11)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.t3.srvr.StartupThread.runMain(StartupThread.java:219)
    at weblogic.t3.srvr.StartupThread.doWork(Compiled Code)
    at
    weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    Thu Nov 22 09:39:00 CST 2001:<I> <JDBC Pool> Sleeping in createResource()
    Thu Nov 22 09:39:01 CST 2001:<E> <JDBC Pool> Failed to create connection
    pool
    "oraclePool"
    For Oracle 8.1.7 do we need to any other library other than oci815_8. If so
    can
    you send those details

  • Installation of Oracle 10g und 9i Database on one Windows 2003 Srv System

    Hello,
    I would like to install Oracle 9i and 10g database on the same server.
    OS is Windows 2003 Server default.
    I already read that i must do some adjustments (regarding ORACLE_HOME / SIDs ..)
    anyone here who knows something about this ?
    Thank you
    Philip

    Yep.
    Install 9i and when it asks for a port to install the listener pick something other than 1521. (1522 should work).
    Then the Oracle 10g installation should go without a hitch.
    ~Jer

  • Web Enterprise Manager Default Port Number in Oracle 9i

    Enabeling Auditing on database 9.2.0.8
    Web Enterprise Manager Default Port Number in Oracle 9i:
    Does anyone know the default port number of the web enterprise manager (Oracle 9i)?
    If I installed or configured enterprise manager and I forgot the port, where can I find it?

    You must read the part in the Installation Documentation for certified repository databases to ensure that your database is OK.
    My advice is always, never start any installation (not only Oracle) without reading the Documentation, Release Note and any README.
    You will spend less time in the installation as Configuration if you use the required documentations for your platform.
    http://www.oracle.com/pls/db102/portal.portal_db?selected=21

  • Unable to continue Oracle Database 10g R2 installation on IBM AIX 5.3L

    I am facing some difficulties in installing the above. My environment is as follows:
    Server is a IBM system P, OS is AIX 5.3L and oracle version is Oracle Database 10g R2 (10.2).
    I encounter my problem when asked to changed/edit the shell script when changing oracle users. I can't find the % vi .login file. And I'm not sure how to proceed.
    Please advice as to what needs to be done.
    Thank you

    i'm using bash shell.If you are using a bash shell then .bash_profile is used by default.
    It is located in user's home, if it does not exist then simply create it.
    can this file be edited after installation?Yes. And also you can set the enviroment temporary (just for current session)
    I just can't find the vi .login file."vi" is command (text editor very common in Unix and Unix like world)
    .login does not need to exist (see .bash_profile as above). Note .login is ignored by bash shell.

  • I got error when I export database ORACLE 9i from solaris 9.

    I want to export full database ORACLE 9i from SOLARIS 9 to import full database on ORACLE 9i on windows.
    I set oracle environment and NSL_LANG with command:
    bash-3.00$ export ORACLE_SID=TIS
    bash-3.00$ export NLS_LANG=AMERICAN_AMERICA.TH8TISASCII
    and then run command to export:
    bash-3.00$ exp system/manager@TIS full=y file= /u03/dmp/TISfull.dmp log=/u03/dmp/exp_TIS.log
    I got error message as:
    Export: Release 9.2.0.1.0 - Production on Thu Oct 8 17:57:32 2009
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export done in TH8TISASCII character set and UTF8 NCHAR character set
    About to export the entire database ...
    . exporting tablespace definitions
    . exporting profiles
    . exporting user definitions
    . exporting roles
    . exporting resource costs
    . exporting rollback segment definitions
    . exporting database links
    . exporting sequence numbers
    . exporting directory aliases
    . exporting context namespaces
    . exporting foreign function library names
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions
    . exporting system procedural objects and actions
    . exporting pre-schema procedural objects and actions
    EXP-00008: ORACLE error 25153 encountered
    ORA-25153: Temporary Tablespace is Empty
    ORA-06512: at "SYS.DBMS_AW", line 42
    ORA-06512: at "SYS.DBMS_AW", line 105
    ORA-06512: at "SYS.DBMS_AW", line 221
    ORA-06512: at "SYS.DBMS_AW_EXP", line 264
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.DBMS_AW_EXP.schema_info_exp
    . exporting cluster definitions
    EXP-00056: ORACLE error 25153 encountered
    ORA-25153: Temporary Tablespace is Empty
    ORA-06512: at "SYS.DBMS_LOB", line 424
    ORA-06512: at "SYS.DBMS_METADATA", line 1140
    ORA-06512: at line 1
    EXP-00056: ORACLE error 25153 encountered
    ORA-25153: Temporary Tablespace is Empty
    ORA-06512: at "SYS.DBMS_LOB", line 424
    ORA-06512: at "SYS.DBMS_METADATA", line 1140
    ORA-06512: at line 1
    EXP-00000: Export terminated unsuccessfully
    How can I solve this problem?
    Any suggestion?

    #### HOW to solve it.
    ## To check the default temporary tablespace of the database:
    SQL> select property_name, property_value from database_properties;
    ## check DEFAULT_TEMP_TABLESPACE, if it use wrong temporary tablespace, run:
    SQL> alter database default temporary tablespace temp;
    ## check user with temporary tablespace, run command:
    SQL> select username, temporary_tablespace, account_status from dba_users;
    ## change temporary tablespace:
    SQL> create temporary tablespace temp1 tempfile '/data/u01/app/oracle/oradata/TIS/temp_b.dbf' size 100m;
    SQL> alter database default temporary tablespace temp1;
    SQL> drop tablespace temp including contents and datafiles;
    SQL> create temporary tablespace temp tempfile '/data/u01/app/oracle/oradata/TIS/temp01.dbf' size 100m autoextend off extent management local uniform size 1m;
    SQL> alter database default temporary tablespace temp;
    SQL> drop tablespace temp1 including contents and datafiles;
    Thanks

  • Oracle 6i forms & Oracle 9i Database server

    Hi everyone,
    i recently got appointed in a company as an Oracle DBA...i dont have ne prior experience as an Oracle DBA or developer...i have some general questions regarding Oracle 6i forms...May be u gurus can help me out.
    # We have our financial application on oracle 6i forms and oracle 9i as database server. I am trying to create an environment on my test server in order to get familiar with oracle 6i forms, i have the required softwares....whn i start the installation for Oracle 6i forms. it looks for Oracle home and selects Orahome_9 by default.
    # Then it asks me for
    * Oracle forms developer
    *Oracle forms Server
    *Oracle Reports Developer
    *Oracle Reports Server
    i ges i need oracle forms developer,so i check the option and click ok.
    # Next it asks me what type of installation id like to perform
    *Typical or Custom.
    I dont know how to proceed from here, as i dont have much idea about Oracle forms...i kno i must go through documentation.Ive already started that process but a lil advice from yall wud be a gr8 help too...Id luv to hear if u need ne further information bout the configuration...Thanks fr readin.

    hi
    i would like to prefer you Typical installations.
    please checkout the following links for documentations.
    http://www.oracle.com/technology/documentation/index.html
    http://www.oracle.com/technology/documentation/6i_forms.html
    http://www.oracle.com/technology/documentation/oracle9i.html
    i hope it will help you.
    sarah
    Edited by: SaRaH on Jul 14, 2010 4:27 AM

  • Connection of oracle database in database server from application server

    Hi,
    I have two servers, one is application server and another one is database server…..
    I want to connect oracle 10g database in database server to application server. In application server oracle 10g client is installed……In database server, I have set tnsnames.ora, Listener.ora …while checking in lsnrctl…the particular sid is running fine…
    In application server, while I give as sqlplus
    After giving username and password its showing error as
    ORA-12545: Connect failed because target host or object does not exist
    While surfing in net it shows check tnsnames.ora and listener.ora….. I have set the environmental variables here in application server…..
    It’s connecting when I give
    Sqlplus
    Sql>username/password @ hostname: 1521/sid_name
    Is it possible to connect with the username and password
    I have set the host names in /etc/hosts….
    If we are giving the hostname, port number and Sid name this connects without using tnsnames.ora…..
    While pinging between two servers the connectivity is there between two servers…..
    Could u pls help me out?
    Thanks in advance

    hi,
    as u said i have done that ..s.till the same problem persists...
    lsnrctl>services
    $ lsnrctl
    LSNRCTL for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Production on 08-FEB-2007 03:56:23
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Welcome to LSNRCTL, type "help" for information.
    LSNRCTL> services
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    Services Summary...
    Service "RBTT" has 1 instance(s).
    Instance "RBTT", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "RBTTXDB" has 1 instance(s).
    Instance "RBTT", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: emea, pid: 197076>
    (ADDRESS=(PROTOCOL=tcp)(HOST=emea)(PORT=37484))
    Service "RBTT_XPT" has 1 instance(s).
    Instance "RBTT", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER

  • Creating database oracle 10g express edition

    1. can we create more than one database in oracle 10g express edition?
    2. can we rename database name default "XE" in Oracle 10g express edition?

    >
    1. can we create more than one database in oracle 10g express edition?
    >
    No you cannot.
    http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm
    >
    3.2 Oracle Database XE Installation and Execution Restrictions
    <li>On a single computer, only one installation of the Oracle Database XE software can be performed.</li>
    <li>In addition, users can run only one instance of the Oracle Database XE database on each individual computer.</li>
    To run more than one Oracle Database server instance or install more than one copy of the database software, upgrade to Oracle Database 10g Standard Edition, Oracle Database 10g Standard Edition One, or Oracle Database 10g Enterprise Edition.
    >
    >
    2. can we rename database name default "XE" in Oracle 10g express edition?
    >
    Yes you can. Please see the link below for details.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:963124000346653522
    XE questions are best answered here {forum:id=251}
    Regards,
    Phiri

  • Newly installed oracle 10g express edition database

    Hai to all
    I have fedora 15 operating system with oracle 10g express edition database installed .. I already have working knowledge in mysql database .. my question is that when i opened oracle database via sql developer , then by expanding tables tab on left side .. I can able to see some table that are created by default as the following:
    AQ$_INTERNET_AGENT_PRIVS
    DEF$_AQCALL
    LOGMNR_AGE_SPILLS$
    My question is that . Can i drop all these tables ??? . By doing so, will that create any problems ..
    Any idea will help me ..
    thanks in advance to allllllll

    If You wont to see how Oracle drop tables
    - create Youre schema
    create user test_user ... ;
    -create table
    create table test_user.test_table ... ;
    drop table
    table test_user.test_table ;
    Regards,
    Pavel
    Edited by: Pavel on May 22, 2012 10:26 PM

  • Not able to start database Oracle 11g on Linux Server

    Hi
    I am using Oracle 11g database. I have successfully installed it on my linux server (Oracle Linux 4).
    When i am trying to access database through url "https://localhost.localdomain:1158/em".
    Browser is throwing some error that SSL port is not enabled but i feel otherwise.
    I tried to diagonse the problem, where i could find that listener port is not getting started.
    How to start all the services related to Oracle Database ?
    I am newbie for linux as well as database.
    Detailed help 'll be appreciated. Thanks a lot.

    I tried running netca but it gave me following error :
    [oracle@localhost bin]$ ./netca
    Oracle Net Services Configuration:
    Xlib: connection to ":0.0" refused by server
    Xlib: No protocol specified
    Error: null
    Check the trace file for details: /u01/app/oracle/cfgtoollogs/netca/trace_OraDb11g_home1-1002093PM2348.log
    Oracle Net Services configuration failed. The exit code is 1
    My listener.ora file content is as follows :
    [oracle@localhost admin]$ more listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain)(PORT = 1521))
    ADR_BASE_LISTENER = /u01/app/oracle
    Following is trace_OraDb11g_home1-1001255PM5356.log content :
    [root@localhost cfgtoollogs]# cd netca/
    [root@localhost netca]# ls
    netca_OraDb11g_home1-1001255PM5356.log trace_OraDb11g_home1-1001255PM5356.log
    netca_OraDb11g_home1-1002093PM2348.log trace_OraDb11g_home1-1002093PM2348.log
    [root@localhost netca]# more trace_OraDb11g_home1-1001255PM5356.log [main] [ 2010-01-25 17:53:57.009 IST ] [NetCALogger.initTrace:203] Oracle Net Configuration Assistant: 1001255PM5356
    [main] [ 2010-01-25 17:53:57.010 IST ] [NetCALogger.initTrace:204] Oracle Home: /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.011 IST ] [NetCALogger.initTrace:205] Oracle Base: /u01/app/oracle
    [main] [ 2010-01-25 17:53:57.011 IST ] [NetCALogger.initTrace:206] Oracle Home
    Name: OraDb11g_home1
    [main] [ 2010-01-25 17:53:57.049 IST ] [InventoryUtil.getOUIInvSession:347] setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
    [main] [ 2010-01-25 17:53:57.050 IST ] [HAUtils.<init>:188] oui location /u01/app/oraInventory/ContentsXML
    [main] [ 2010-01-25 17:53:57.068 IST ] [Version.isPre:274] version to be checked 11.2.0.1.0 major version to check against10
    [main] [ 2010-01-25 17:53:57.068 IST ] [Version.isPre:285] isPre.java: Returning FALSE
    [main] [ 2010-01-25 17:53:57.074 IST ] [OCR.loadLibrary:308]
    Inside constructor of OCR
    [main] [ 2010-01-25 17:53:57.095 IST ] [OCR.loadLibrary:316] Going to load the
    ocr library
    [main] [ 2010-01-25 17:53:57.096 IST ] [sPlatform.isHybrid:67] osName=Linux osArch=i386 rc=false
    [main] [ 2010-01-25 17:53:57.097 IST ] [sPlatform.isHybrid:67] osName=Linux osArch=i386 rc=false
    [main] [ 2010-01-25 17:53:57.097 IST ] [Library.load:254] Loading library /u01/app/oracle/product/11.2.0/dbhome_1/lib/libsrvmocr11.so
    [main] [ 2010-01-25 17:53:57.099 IST ] [OCR.loadLibrary:318] loaded ocr libraries
    [main] [ 2010-01-25 17:53:57.100 IST ] [OCR.isCluster:939] Calling OCRNative for isCluster()
    [main] [ 2010-01-25 17:53:57.103 IST ] [OCR.isCluster:943] OCR Result status =
    true
    [main] [ 2010-01-25 17:53:57.103 IST ] [OCR.isCluster:955] Bolean result = false
    [main] [ 2010-01-25 17:53:57.107 IST ] [CmdlineArgs.<init>:110] Initializing variables array...
    [main] [ 2010-01-25 17:53:57.107 IST ] [CmdlineArgs.<init>:116] Initializing NetProperties...
    [main] [ 2010-01-25 17:53:57.109 IST ] [CmdlineArgs.initArgs:133] Initializing
    command line arguments...
    [main] [ 2010-01-25 17:53:57.109 IST ] [CmdlineArgs.parseLogParam:290] Parsing
    /log argument...
    [main] [ 2010-01-25 17:53:57.116 IST ] [CmdlineArgs.parseLogParam:345] Returning Log File = null
    [main] [ 2010-01-25 17:53:57.123 IST ] [CmdlineArgs.setOraArgs:236] Setting Oracle arguments...
    [main] [ 2010-01-25 17:53:57.124 IST ] [CmdlineArgs.setOraArgs:240] Passed Oracle Home = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.124 IST ] [CmdlineArgs.setOraArgs:243] Read Oracle Home = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.125 IST ] [CmdlineArgs.setOraArgs:246] Read Oracle Home ID =
    [main] [ 2010-01-25 17:53:57.125 IST ] [CmdlineArgs.setOraArgs:249] Read Oracle Home Name = null
    [main] [ 2010-01-25 17:53:57.126 IST ] [CmdlineArgs.compareOraHome:183] Comparing Oracle Homes ...
    [main] [ 2010-01-25 17:53:57.126 IST ] [CmdlineArgs.compareOraHome:184] Oracle
    Home 1 = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.127 IST ] [CmdlineArgs.compareOraHome:185] Oracle
    Home 2 = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.127 IST ] [CmdlineArgs.compareOraHome:224] Returning true
    [main] [ 2010-01-25 17:53:57.128 IST ] [InitialSetup.configureOPS:4504] Cluster mode is OFF
    [main] [ 2010-01-25 17:53:57.128 IST ] [InitialSetup.<init>:4028] TNS_ADMIN is: null
    [main] [ 2010-01-25 17:53:57.133 IST ] [OPSUtil.getHomeVersion:446] Inside getHomeVersion...
    [main] [ 2010-01-25 17:53:57.134 IST ] [OPSUtil.getHomeVersion:447] oracleHome
    = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.135 IST ] [OPSUtil.getHomeVersion:451] oracle.sysman.assistants.util.OracleHome Object = /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.135 IST ] [OracleHome.getVersion:877] OracleHome.getVersion called. Current Version: null
    [main] [ 2010-01-25 17:53:57.138 IST ] [InventoryUtil.getOUIInvSession:347] setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
    [main] [ 2010-01-25 17:53:57.138 IST ] [OracleHome.getVersion:896] Homeinfo /u01/app/oracle/product/11.2.0/dbhome_1,1
    [main] [ 2010-01-25 17:53:57.670 IST ] [OracleHome.getVersion:922] OracleHome.server.getVersion Version: 11.2.0.1.0
    [main] [ 2010-01-25 17:53:57.670 IST ] [OracleHome.getVersion:943] Current Version From Inventory: 11.2.0.1.0
    [main] [ 2010-01-25 17:53:57.670 IST ] [OracleHome.getVersion:948] using sqlplus: /u01/app/oracle/product/11.2.0/dbhome_1/bin/sqlplus
    [main] [ 2010-01-25 17:53:57.671 IST ] [OPSUtil.getHomeVersion:452] returning oracleHome Version = 11.2.0.1.0
    [main] [ 2010-01-25 17:53:57.671 IST ] [OracleHome.getVersion:877] OracleHome.getVersion called. Current Version: 11.2.0.1.0
    [main] [ 2010-01-25 17:53:57.671 IST ] [OracleHome.getVersion:943] Current Version From Inventory: 11.2.0.1.0
    [main] [ 2010-01-25 17:53:57.671 IST ] [OracleHome.getVersion:948] using sqlplus: /u01/app/oracle/product/11.2.0/dbhome_1/bin/sqlplus
    [main] [ 2010-01-25 17:53:57.672 IST ] [InitialSetup.<init>:4041] Admin location is: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin
    [main] [ 2010-01-25 17:53:57.783 IST ] [ConfigureProfile.setProfileParam:136] Setting NAMES.DIRECTORY_PATH: (TNSNAMES, EZCONNECT)
    [main] [ 2010-01-25 17:53:57.783 IST ] [ConfigureProfile.setProfileParam:136] Setting ADR_BASE: /u01/app/oracle
    [main] [ 2010-01-25 17:53:57.791 IST ] [HAUtils.getHASHome:583] Oracle home from system properties: /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.792 IST ] [HAUtils.getCRSHome:540] Getting configured CRS/HAS home for Oracle home ( /u01/app/oracle/product/11.2.0/dbhome_1 ) ...[main] [ 2010-01-25 17:53:57.794 IST ] [GETCRSHOMEUtil.<init>:76] Toolname: getcrshome --- Tool location: /u01/app/oracle/product/11.2.0/dbhome_1/srvm/adminTool dependencies: [Ljava.lang.String;@102799c
    [main] [ 2010-01-25 17:53:57.794 IST ] [NativeSystem.isCmdScv:471] isCmdScv: cmd=[]
    [main] [ 2010-01-25 17:53:57.795 IST ] [RuntimeExec.runCommand:75] Calling Runtime.exec() with the command
    [main] [ 2010-01-25 17:53:57.796 IST ] [RuntimeExec.runCommand:77] /bin/sh
    [main] [ 2010-01-25 17:53:57.796 IST ] [RuntimeExec.runCommand:77] -c
    [main] [ 2010-01-25 17:53:57.796 IST ] [RuntimeExec.runCommand:77] /u01/app/oracle/product/11.2.0/dbhome_1/srvm/admin/getcrshome
    [Thread-2] [ 2010-01-25 17:53:57.802 IST ] [StreamReader.run:61] In StreamReader.run
    [main] [ 2010-01-25 17:53:57.802 IST ] [RuntimeExec.runCommand:142] runCommand: Waiting for the process
    [Thread-1] [ 2010-01-25 17:53:57.802 IST ] [StreamReader.run:61] In StreamReader.run
    [main] [ 2010-01-25 17:53:57.815 IST ] [RuntimeExec.runCommand:144] runCommand: process returns 1
    [main] [ 2010-01-25 17:53:57.816 IST ] [RuntimeExec.runCommand:161] RunTimeExec: output>
    [main] [ 2010-01-25 17:53:57.816 IST ] [RuntimeExec.runCommand:170] RunTimeExec: error>
    [main] [ 2010-01-25 17:53:57.816 IST ] [RuntimeExec.runCommand:192] Returning from RunTimeExec.runCommand
    [main] [ 2010-01-25 17:53:57.818 IST ] [CmdToolUtil.doexecute:372] nativeSystem.runRemoteExecCmd failed. Command = /u01/app/oracle/product/11.2.0/dbhome_1/srvm/admin/getcrshome arguments = [] env = null
    [main] [ 2010-01-25 17:53:57.824 IST ] [HAUtils.isHASConfigured:349] Ignoring exception in isHASConfigured: PRCT-1011 : Failed to run "getcrshome"
    [main] [ 2010-01-25 17:53:57.824 IST ] [HAUtils.isHASConfigured:350] oracle.cluster.deployment.ClusterwareInfo.getConfiguredCRSHome(ClusterwareInfo.java:423)
    oracle.sysman.assistants.util.hasi.HAUtils.getCRSHome(HAUtils.java:544)
    oracle.sysman.assistants.util.hasi.HAUtils.getHASHome(HAUtils.java:604)
    oracle.sysman.assistants.util.hasi.HAUtils.isHASConfigured(HAUtils.java:345)
    oracle.net.ca.InitialSetup.checkHAConfiguration(NetCA.java:4653)
    oracle.net.ca.InitialSetup.<init>(NetCA.java:4075)
    oracle.net.ca.NetCA.main(NetCA.java:405)
    [main] [ 2010-01-25 17:53:57.825 IST ] [InitialSetup.checkHAConfiguration:4691]
    HA Server is NOT configured.
    [main] [ 2010-01-25 17:53:57.827 IST ] [NetCAResponseFile.<init>:68] Response file initialized: /u01/app/oracle/product/11.2.0/dbhome_1/network/install/netca_typ.rsp
    [main] [ 2010-01-25 17:53:57.828 IST ] [NetCAResponseFile.getInstalledComponents:107] Installed components from response file: server, net8, javavm
    [main] [ 2010-01-25 17:53:57.828 IST ] [NetCAResponseFile.getVirtualHost:164] Virtual Host from response file: null
    [main] [ 2010-01-25 17:53:57.829 IST ] [SilentConfigure.performSilentConfigure:174] Typical profile configuration.
    [main] [ 2010-01-25 17:53:57.831 IST ] [ConfigureProfile.setProfileParam:136] Setting NAMES.DIRECTORY_PATH: (TNSNAMES, EZCONNECT)
    [main] [ 2010-01-25 17:53:57.831 IST ] [ConfigureProfile.setProfileParam:136] Setting ADR_BASE: /u01/app/oracle
    [main] [ 2010-01-25 17:53:57.833 IST ] [SilentConfigure.performSilentConfigure:182] Typical listener configuration.
    [main] [ 2010-01-25 17:53:57.843 IST ] [ConfigureListener.isHASConfigured:1425]
    Calling SRVM api to check if Oracle Restart is configured ...
    [main] [ 2010-01-25 17:53:57.843 IST ] [HAUtils.getHASHome:583] Oracle home from system properties: /u01/app/oracle/product/11.2.0/dbhome_1
    [main] [ 2010-01-25 17:53:57.843 IST ] [HAUtils.getCRSHome:540] Getting configured CRS/HAS home for Oracle home ( /u01/app/oracle/product/11.2.0/dbhome_1 ) ...[main] [ 2010-01-25 17:53:57.844 IST ] [GETCRSHOMEUtil.<init>:76] Toolname: getcrshome --- Tool location: /u01/app/oracle/product/11.2.0/dbhome_1/srvm/adminTool dependencies: [Ljava.lang.String;@102799c
    [main] [ 2010-01-25 17:53:57.844 IST ] [NativeSystem.isCmdScv:471] isCmdScv: cmd=[]
    [main] [ 2010-01-25 17:53:57.844 IST ] [RuntimeExec.runCommand:75] Calling Runtime.exec() with the command
    [main] [ 2010-01-25 17:53:57.845 IST ] [RuntimeExec.runCommand:77] /bin/sh
    [main] [ 2010-01-25 17:53:57.845 IST ] [RuntimeExec.runCommand:77] -c
    [main] [ 2010-01-25 17:53:57.845 IST ] [RuntimeExec.runCommand:77] /u01/app/oracle/product/11.2.0/dbhome_1/srvm/admin/getcrshome
    [Thread-4] [ 2010-01-25 17:53:57.849 IST ] [StreamReader.run:61] In StreamReader.run
    [main] [ 2010-01-25 17:53:57.850 IST ] [RuntimeExec.runCommand:142] runCommand: Waiting for the process
    [Thread-3] [ 2010-01-25 17:53:57.850 IST ] [StreamReader.run:61] In StreamReader.run
    [main] [ 2010-01-25 17:53:57.863 IST ] [RuntimeExec.runCommand:144] runCommand: process returns 1
    [main] [ 2010-01-25 17:53:57.864 IST ] [RuntimeExec.runCommand:161] RunTimeExec: output>
    [main] [ 2010-01-25 17:53:57.864 IST ] [RuntimeExec.runCommand:170] RunTimeExec: error>
    [main] [ 2010-01-25 17:53:57.864 IST ] [RuntimeExec.runCommand:192] Returning from RunTimeExec.runCommand
    [main] [ 2010-01-25 17:53:57.865 IST ] [CmdToolUtil.doexecute:372] nativeSystem.runRemoteExecCmd failed. Command = /u01/app/oracle/product/11.2.0/dbhome_1/srvm/admin/getcrshome arguments = [] env = null
    [main] [ 2010-01-25 17:53:57.865 IST ] [HAUtils.isHASConfigured:349] Ignoring exception in isHASConfigured: PRCT-1011 : Failed to run "getcrshome"
    [main] [ 2010-01-25 17:53:57.865 IST ] [HAUtils.isHASConfigured:350] oracle.cluster.deployment.ClusterwareInfo.getConfiguredCRSHome(ClusterwareInfo.java:423)
    oracle.sysman.assistants.util.hasi.HAUtils.getCRSHome(HAUtils.java:544)
    oracle.sysman.assistants.util.hasi.HAUtils.getHASHome(HAUtils.java:604)
    oracle.sysman.assistants.util.hasi.HAUtils.isHASConfigured(HAUtils.java:345)
    oracle.net.ca.ConfigureListener.isHASConfigured(ConfigureListener.java:1428)
    oracle.net.ca.ConfigureListener.isHASRunning(ConfigureListener.java:1450)
    oracle.net.ca.ConfigureListener.validateListenerName(ConfigureListener.java:1697)
    oracle.net.ca.ConfigureListener.typicalConfigure(ConfigureListener.java:169)
    oracle.net.ca.SilentConfigure.performSilentConfigure(SilentConfigure.java:185)
    oracle.net.ca.InitialSetup.<init>(NetCA.java:4159)
    oracle.net.ca.NetCA.main(NetCA.java:405)
    [main] [ 2010-01-25 17:53:57.866 IST ] [ConfigureListener.isHASConfigured:1436]
    Is Oracle Restart configured: false
    [main] [ 2010-01-25 17:53:57.866 IST ] [ConfigureListener.isHASRunning:1465] Is Oracle Restart running: false
    [main] [ 2010-01-25 17:53:57.866 IST ] [ConfigureListener.typicalConfigure:201]
    Checking for free port in range: 1521-1540
    [main] [ 2010-01-25 17:53:57.867 IST ] [ConfigureListener.isPortFree:1010] Checking if port 1521 is free on local machine...
    [main] [ 2010-01-25 17:53:57.867 IST ] [ConfigureListener.isPortFree:1023] InetAddress.getByName(127.0.0.1): /127.0.0.1
    [main] [ 2010-01-25 17:53:57.868 IST ] [ConfigureListener.isPortFree:1025] Local host IP address: localhost.localdomain/127.0.0.1
    [main] [ 2010-01-25 17:53:57.868 IST ] [ConfigureListener.isPortFree:1027] Local host name: localhost.localdomain
    [main] [ 2010-01-25 17:53:57.868 IST ] [ConfigureListener.isPortFree:1039] Creating ServerSocket on Port:1521, IP Address: localhost.localdomain/127.0.0.1
    [main] [ 2010-01-25 17:53:57.871 IST ] [ConfigureListener.isPortFree:1042] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.871 IST ] [ConfigureListener.isPortFree:1055] Creating ServerSocket on Port:1521, Local IP Address: /127.0.0.1
    [main] [ 2010-01-25 17:53:57.871 IST ] [ConfigureListener.isPortFree:1059] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.872 IST ] [ConfigureListener.isPortFree:1065] Creating ServerSocket on Port:1521
    [main] [ 2010-01-25 17:53:57.872 IST ] [ConfigureListener.isPortFree:1068] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.872 IST ] [ConfigureListener.isPortFree:1088] Returning is Port 1521 free: true
    [main] [ 2010-01-25 17:53:57.872 IST ] [ConfigureListener.typicalConfigure:208]
    Using port: 1521
    [main] [ 2010-01-25 17:53:57.880 IST ] [ConfigureListener.setListenerParam:1779] Setting ADR_BASE_LISTENER: /u01/app/oracle
    [main] [ 2010-01-25 17:53:57.882 IST ] [ConfigureListener.isPortFree:1010] Checking if port 1521 is free on local machine...
    [main] [ 2010-01-25 17:53:57.882 IST ] [ConfigureListener.isPortFree:1023] InetAddress.getByName(127.0.0.1): /127.0.0.1
    [main] [ 2010-01-25 17:53:57.883 IST ] [ConfigureListener.isPortFree:1025] Local host IP address: localhost.localdomain/127.0.0.1
    [main] [ 2010-01-25 17:53:57.883 IST ] [ConfigureListener.isPortFree:1027] Local host name: localhost.localdomain
    [main] [ 2010-01-25 17:53:57.883 IST ] [ConfigureListener.isPortFree:1039] Creating ServerSocket on Port:1521, IP Address: localhost.localdomain/127.0.0.1
    [main] [ 2010-01-25 17:53:57.883 IST ] [ConfigureListener.isPortFree:1042] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.884 IST ] [ConfigureListener.isPortFree:1055] Creating ServerSocket on Port:1521, Local IP Address: /127.0.0.1
    [main] [ 2010-01-25 17:53:57.884 IST ] [ConfigureListener.isPortFree:1059] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.884 IST ] [ConfigureListener.isPortFree:1065] Creating ServerSocket on Port:1521
    [main] [ 2010-01-25 17:53:57.885 IST ] [ConfigureListener.isPortFree:1068] Created ServerSocket successfully.
    [main] [ 2010-01-25 17:53:57.885 IST ] [ConfigureListener.isPortFree:1088] Returning is Port 1521 free: true
    [main] [ 2010-01-25 17:54:00.849 IST ] [SilentConfigure.performSilentConfigure:187] Typical service alias configuration.
    Let me know where i have gone wrong ?
    Thanks for ur effort..

  • ODBC from Oracle to an other Database (Postgresql)

    Hello,
    I heared that it is possible with Oracle to make a "Database Link" so in Oracle I can make a query like
    select * from myshema.mytable@myexterndb where ....
    Is such a database link allowed with the Express Edition and how will I do this?
    Thank you,
    Christian

    Database links to/from other Oracle databases work. As follows
    SQL*Plus: Release 10.2.0.1.0 - Beta on Mon Oct 31 11:56:42 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect system
    Enter password:
    Connected.
    SQL> create database link remote connect to hr identified by hr using 'xe';
    Database link created.
    SQL> select count(*) from employees@remote;
    COUNT(*)
    107
    Note that this is doing a local loopback to the same database. However, you should also be able to access other Oracle databases provided you have the correct tnsnames.ora definition set up in the right directory - on my Windows system for the default XE install that is
    C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN
    Connection from Oracle Database XE to third party databases via the ODBC heterogeneous services should be possible as well, but I will need to download a 3rd party product to test it. Will do so later. In the meantime, here is a link to some doc that may help you test the setup yourself - http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14232/admin.htm#i1007209

  • What are the differences between Oracle and other NoSQL database

    Hi all,
    I would like to know what the differences between Oracle and other NoSQL database are.
    When and why should we use Oracle?
    Is Oracle NoSQL database link with Big Data Appliance?
    Can we use map-reduce on a single personal computer? How should we install Oracle NoSQL database to use map reduce on a single personal computer?
    Do we also have eventual consistency with Oracle NoSQL database? Can we lose data if master node fails?
    Are transactions ACID with Oracle NoSQL database? How can we prove it?
    Thanks.

    893771 wrote:
    Hi all,
    I would like to know what the differences between Oracle and other NoSQL database are.
    When and why should we use Oracle?I suggest that you start here:
    http://www.oracle.com/technetwork/database/nosqldb/overview/index.html
    Is Oracle NoSQL database link with Big Data Appliance?Yes, Oracle NoSQL Database will be a component of the Big Data Appliance.
    Can we use map-reduce on a single personal computer? How should we install Oracle NoSQL database to use map reduce on a single personal computer?Yes, I believe you can run M/R on a single computer. Consult the various pieces of documentation available on the web. You may run Oracle NoSQL Database on the same computer that you are running M/R on, but it is likely that they will compete for CPU and IO resources and therefore performance may suffer.
    Do we also have eventual consistency with Oracle NoSQL database? Yes.
    Can we lose data if master node fails?If you run Oracle NoSQL Database with the default (recommended) durability settings, then if the master fails, a new one will be elected and data is not lost.
    Are transactions ACID with Oracle NoSQL database? How can we prove it?Yes, each operation is executed in an ACID transaction. The API has the concept of "multi" operations which allow the caller to perform multiple operations on sets of records with the same major key, but different minor keys. Those operations are also performed within a transaction.
    Charles Lamb

  • Pro Oracle Spatial for Oracle Database 11g - Book now available

    Pro Oracle Spatial for Oracle Database 11g
    Pro Oracle Spatial for Oracle Database 11g shows how to take advantage of Oracle Databases built-in feature set for working with location-based data. A great deal of the information used in business today is associated with location in some way, and analysis of that data is becoming ever more important in todays mobile and highly connected world. In Pro Oracle Spatial for Oracle Database 11g, authors Ravi Kothuri and Albert Godfrind address
    * The special nature of spatial data and its role in professional and consumer applications
    * Issues in spatial data management such as modeling, storing, accessing, and analyzing spatial data
    * The Oracle Spatial solution and the integration of spatial data into enterprise databases
    * How spatial information is used to understand business and support decisions, to manage customer relations, and to better serve private and corporate users
    When you read Pro Oracle Spatial for Oracle Database 11g, you’re learning from the very best. Ravi Kothuri is a key member of Oracle’s Spatial development team. Albert Godfrind consults widely with Oracle clients on the implementation of Oracle Spatial, develops training courses, and presents frequently at conferences. Together they have crafted a technically sound and authoritative fountain of information on working with Spatial data in Oracle...
    Goto http://www.apress.com/book/view/1590598997 or Amazon.com

    Thank you very much.....got it.
    I know it isn't your gig, so I am not asking for a solution, just looking to know where I might have to go to get one. If buying SR's on meta link is going to solve this for me, then I am all for it, just let me know where the expertise can be found, I have been battling this overall set up now for too long, I need someone who really knows this stuff so I can get on with making use of it in industry....thanks....
    Can you steer me in the right direction to access some solid support on the installation issues I am having? See below;
    From oc4j on an attempted stand-alone install;
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] using default config file: /opt/mv10131/mv10131_qs/oc4j/j2ee/home/applications/mapviewer/web/WEB-INF/conf/mapViewerConfig.xml
    07/11/22 20:23:39 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:39 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.core.MapperConfig] Map Recycling thread started.
    07/11/22 20:23:39 INFO [oracle.lbs.mapserver.oms] *** Oracle MapViewer started. ***
    07/11/22 20:23:40 INFO [oracle.lbs.mapcache.mcservlet] *** Oracle MapCacheServer started. ***
    07/11/22 20:23:40 Thu Nov 22 20:23:40 EST 2007 INFO [oracle.lbs.mapserver.core.MapRecycleThread, ,#Thread-19] cleansing old maps
    user induced ctl-c....program jams
    07/11/22 20:23:51 Shutting down OC4J...
    07/11/22 20:23:54 ERROR [oracle.lbs.mapcache.mcservlet] !!! Oracle MapCacheServer destroyed. !!!
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.core.MapperPool] destroying ALL mapmaker instances.
    07/11/22 20:23:54 WARN [oracle.lbs.mapserver.oms] Oracle MapViewer shut down
    From a full AppServer Install Attempt (10.1.3 from e-delivery pack) , despite proper TMP/TMPDIR variables, more than ample space via df -k /tmp (300G) and chmod a+rwx /tmp settings;
    [root@bluesky1 Disk1]# ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-2.1, redhat-3, redhat-4, SuSE-9 or UnitedLinux-1.0
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-11-22_07-58-50PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2007-11-22_07-58-50PM. Please ensure that this directory is writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    The people in the forums have been trying to help, and they have all been great, but noone seems able to solve....I am asking you because I am hoping you will know who the guru's are, and what I can do to access some of their wisdom to get up and running.?

  • [OSB] Oracle Service Bus: select database DBadapter runtime

    Suppose you have 2 databases DB1 and DB2 and both have the SCOTT scheme with the EMP table. The default way to gain access to the databases in the Oracle Service Bus (OSB) is by defining 2 database adapters and defining a business service on each adapter:
    - BS1 DBadapter1 DB1.SCOTT.EMP
    - BS2 DBadapter2 DB2.SCOTT.EMP
    With this setup you can define a proxy service and let the message flow decide which adapter to call.
    Now change this configuration a little and suppose you have 25 databases, you can define 25 database adapters and 25 business services, but that involves a lot of repeating work of defining adapters and business services. A more elegant configuration is one business service with one database adapter, and the database connection is set runtime in stead of design time.
    PS BS DBadapter DB1.SCOTT.EMP ... DB25.SCOTT.EMP
    The challenge is: how do you configure the database adapter runtime (called by an OSB business service).
    With kind regards,
    Jornica

    Oracle Service Bus 10gR3 contains the JCA framework which will eventually allow us to exploit the whole set of JCA adapters currently in use in BPEL Process Manager. Over the next few months several JCA adapters will be certified to be used with Oracle Service Bus - the Database adapter is one of the first of these.
    As for SOA Suite and WebLogic bundling, let me explain. SOA Suite contains the following products:
    BPEL Process Manager
    Business Activity Monitoring
    Business Rules
    Web Services Manager
    Complex Event Processing
    B2B
    ESB (the old Oracle ESB product)
    Service Bus (formerly AquaLogic Service Bus from BEA)
    This does not come with an application server as the suite is hot-pluggable (i.e. can be used with a number of application servers). However, the preferred (and cheaper) approach is to purchase SOA Suite and WebLogic Suite (which contains iAS, WebLogic Enterprise Edition, Coherence, JRockit with 100ms deterministic garbage collection and WebLogic Operations Control). This is because some of the elements of the SOA Suite only currently run on iAS (B2B) and some only run on WebLogic Server (Oracle Service Bus) although in the future these will also become hot pluggable.
    To find out more, check out the SOA Suite and WebLogic Suite pages below:
    [SOA Suite|http://www.oracle.com/technologies/soa/soa-suite.html]
    [WebLogic Suite|http://www.oracle.com/appserver/weblogic/weblogic-suite.html]
    You will find the DataSheets are particularly useful for giving you an overview of the suite.
    Hope that helps.
    Chris

Maybe you are looking for