WLS 6.1 - Oracle 8.1.6 - Siteminder - ArrayOutOfBounds issue

Getting an ArrayIndexOutOfBoundsException when trying to
run Wls 6.1 with Oracle 8.1.6 and Netegrity Siteminder (Security
module for sign-on privileges) ..
####<Sep 25, 2001 11:10:26 AM CDT> <Error> <Posix Performance Pack> <olc221> <flextrialserver>
<ExecuteThread: '13'
for queue: 'default'> <> <> <000000> <Uncaught Throwable in processSockets>
java.lang.ArrayIndexOutOfBoundsException
at weblogic.servlet.internal.MuxableSocketHTTP.isMessageComplete(MuxableSocketHTTP.java:282)
at weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java:448)
at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:378)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
####<Sep 25, 2001 11:12:26 AM CDT> <Error> <Posix Performance Pack> <olc221> <flextrialserver>
<ExecuteThread: '12'
for queue: 'default'> <> <> <000000> <Uncaught Throwable in processSockets>
java.lang.ArrayIndexOutOfBoundsException
at weblogic.servlet.internal.MuxableSocketHTTP.isMessageComplete(MuxableSocketHTTP.java:282)
at weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java:448)
at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:378)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
####<Sep 25, 2001 11:14:26 AM CDT> <Error> <Posix Performance Pack> <olc221> <flextrialserver>
<ExecuteThread: '14'
for queue: 'default'> <> <> <000000> <Uncaught Throwable in processSockets>
java.lang.ArrayIndexOutOfBoundsException
at weblogic.servlet.internal.MuxableSocketHTTP.isMessageComplete(MuxableSocketHTTP.java:282)
at weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java:448)
at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:378)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
####<Sep 25, 2001 11:15:26 AM CDT> <Error> <Posix Performance Pack> <olc221> <flextrialserver>
<ExecuteThread: '13'
for queue: 'default'> <> <> <000000> <Uncaught Throwable in processSockets>
java.lang.ArrayIndexOutOfBoundsException
at weblogic.servlet.internal.MuxableSocketHTTP.isMessageComplete(MuxableSocketHTTP.java:282)
at weblogic.socket.PosixSocketMuxer.deliverGoodNews(PosixSocketMuxer.java:448)
at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:378)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:24)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

Sagar,
Can you test you application with Service Pack 1 for WebLogic Server 6.1
WebLogic Server 6.1 with Service pack 1
http://commerce.beasys.com/downloads/weblogic_server.jsp
If you need just the service pack for WLS 6.1 , you will need to have a
websupport login and password.
Refer to this url for more information on this.
http://contact.bea.com/bea/www/BEACustRegLogin.jsp
http://websupport.bea.com/custsupp/
Hope this helps
Raj Alagumalai

Similar Messages

  • Oracle 11g - External Table/SQL Developer Issue?

    Oracle 11g - External Table/SQL Developer Issue?
    ==============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.

    I don't think this is a SQLDeveloper issue. You will get better answers in the Database - General or perhaps SQL and PL/SQL forums.

  • Oracle 11g - External Table/Remote File Issue?

    Oracle 11g - External Table/Remote File Issue?
    =============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are not allowed to put files on the CSV file system (Server A), where DB instance is running. We are able place CSV files on another server(Server B), where DB instance is not running.
    We are trying to use oracle external table to load text files in .CSV format.
    How do we create a Directory (Create Directory) on Server A DB to point to File system of Server B?
    Is it feasible?
    Any idea?
    Thanks in helping.

    The Solaris DBA should be able to mount the filesystem for you. Either that or you have to get creative transferring the file like this;
    http://www.linkedin.com/groups/Getting-creative-external-table-preprocessor-140609.S.50474382?qid=ba673ce4-c4bb-40c5-8367-52bd2a2dfc80&trk=group_search_item_list-0-b-ttl&goback=%2Egmp_140609
    Cheers
    David

  • WLS 7.0.4 - JMS Connection Factory - Server Affinity - issues in log file

    <b>WLS 7.0.4 - JMS Connection Factory - Server Affinity - issues in log file</b>
              We are using WLS 7.0.4 - One of JMS connection factory setting in admin console we selected "Server Affinity" options.
              We see this messages appear in Weblogic log file,
              ####<Apr 24, 2006 1:56:53 AM EDT> <Error> <Cluster> <liberatenode4.dc2.adelphia.com> <node4_svr> <ExecuteThrea
              d: '4' for queue: '__weblogic_admin_rmi_queue'> <kernel identity> <> <000123> <Conflict start: You tried to bi
              nd an object under the name sbetrmi2 in the JNDI tree. The object you have bound from liberatenode2.dc2.adelp
              hia.com is non clusterable and you have tried to bind more than once from two or more servers. Such objects ca
              n only deployed from one server.>
              and then,
              ####<Apr 24, 2006 1:58:12 AM EDT> <Error> <Cluster> <liberatenode5.dc2.adelphia.com> <node5_svr> <ExecuteThrea
              d: '7' for queue: '__weblogic_admin_rmi_queue'> <kernel identity> <> <000125> <Conflict Resolved: sbetrmi2 for
              the object from liberatenode5.dc2.adelphia.com under the bind name sbetrmi2 in the JNDI tree.>
              Should we use 'load balancing option' instead of 'server affinity' ?
              Any thuoghts?
              Thanks in adv.
              Vijay

    Test Reply
              <Vijay Kumar> wrote in message news:[email protected]..
              > <b>WLS 7.0.4 - JMS Connection Factory - Server Affinity - issues in log
              > file</b>
              >
              > We are using WLS 7.0.4 - One of JMS connection factory setting in admin
              > console we selected "Server Affinity" options.
              >
              > We see this messages appear in Weblogic log file,
              > ####<Apr 24, 2006 1:56:53 AM EDT> <Error> <Cluster>
              > <liberatenode4.dc2.adelphia.com> <node4_svr> <ExecuteThrea
              > d: '4' for queue: '__weblogic_admin_rmi_queue'> <kernel identity> <>
              > <000123> <Conflict start: You tried to bi
              > nd an object under the name sbetrmi2 in the JNDI tree. The object you have
              > bound from liberatenode2.dc2.adelp
              > hia.com is non clusterable and you have tried to bind more than once from
              > two or more servers. Such objects ca
              > n only deployed from one server.>
              >
              > and then,
              > ####<Apr 24, 2006 1:58:12 AM EDT> <Error> <Cluster>
              > <liberatenode5.dc2.adelphia.com> <node5_svr> <ExecuteThrea
              > d: '7' for queue: '__weblogic_admin_rmi_queue'> <kernel identity> <>
              > <000125> <Conflict Resolved: sbetrmi2 for
              > the object from liberatenode5.dc2.adelphia.com under the bind name
              > sbetrmi2 in the JNDI tree.>
              >
              >
              > Should we use 'load balancing option' instead of 'server affinity' ?
              >
              > Any thuoghts?
              >
              > Thanks in adv.
              > Vijay

  • Same oracle login for 200+user..issue if any?

    I'm in the development work for an application which would be accessed by 200+ users.
    If all the users have the same oracle login(same login name\password for connectivity to oracle server) ,would it cause any issue?If so what issue would it cause.
    Can someone throw light?
    Thanks,
    Bhagat

    If all the users have the same oracle login ... would it cause any issue?It means you cannot meaningfully audit user activity in the database. Nor can you assign different security privileges to individuals or groups of individuals. Also it makes it difficult to figure the particular user responsible for an expensive session.
    There are ways of associating a specific user identity with the a session but these are implementation specific.
    Cheers, APC

  • Mapping WLS XID to Oracle Database XID

    Gentlemen
    When WLS is acting as TM, typical WLS TX XIDs look like:
    BEA1-00018F633E957D871D08
    BEA1-00014C53BFCB7D871D08
    etc.
    When looking for TX XID=BEA1-00074C53BFCB7D871D08 in the Database, I found a PREPARED one (which is the one I'm looking for, because there is only one TX running :-) ) in the v$transaction materialized view:
    select NAME, STATUS, XID, XIDUSN, XIDSLOT, XIDSQN from V$TRANSACTION;
    NAME STATUS XID XIDUSN XIDSLOT XIDSQN
    <null> PREPARED 0200110088F90000 2 17 63880
    How is the XID issued from WLS mapped to this one inside Oracle DB?
    Gladly awaiting your answer.
    ciao
    carlo

    FOUND OUT:
    SELECT * FROM SYS.DBA_PENDING_TRANSACTIONS p, Dba_2pc_pending pc, Dba_2pc_neighbors n WHERE p.GLOBALID='000C0B793546A3B8C65E'
    AND pc.GLOBAL_TRAN_ID =(p.FORMATID || '.' || p.GLOBALID)
    AND pc.LOCAL_TRAN_ID=n.LOCAL_TRAN_ID
    SELECT p.GLOBALID, pc.STATE, pc.LOCAL_TRAN_ID, pc.GLOBAL_TRAN_ID, pc.FAIL_TIME, pc.FORCE_TIME, pc.RETRY_TIME, pc.OS_USER, pc.HOST, n.DBUSER_OWNER
    FROM SYS.DBA_PENDING_TRANSACTIONS p, Dba_2pc_pending pc, Dba_2pc_neighbors n WHERE p.GLOBALID='000C0B793546A3B8C65E'
    AND pc.GLOBAL_TRAN_ID =(p.FORMATID || '.' || p.GLOBALID)
    AND pc.LOCAL_TRAN_ID=n.LOCAL_TRAN_ID
    :-)

  • Problem starting WLS server  in Oracle VM Viirtualbox

    Hi,
    I am new to Oracle SOASuite.I am trying my hands on with Oracle VM Viirtualbox to which I have imported theoracle soa suite/bpm appliances and I am successful with it.The problem arises when I try to start the WLS server.It failed to start and gave the following exception in logs:
    <Failed to initialize the application 'soademoDatabase' due to error weblogic.application.ModuleException: .
    weblogic.application.ModuleException:
         at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:327)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:518)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
         Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
         at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(XAConnectionEnvFactory.java:500)
         at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(XAConnectionEnvFactory.java:177)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1310)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1227)
         at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:250)
         Truncated. see log file for complete stacktrace
    >
    <Jul 2, 2012 4:49:20 AM PDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'wlsbjmsrpDataSource' due to error weblogic.application.ModuleException: .
    weblogic.application.ModuleException:
         at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:327)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:518)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
         Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: Listener refused the connection with the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
         at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:283)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1310)
         at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1227)
         at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:250)
         at weblogic.jdbc.common.internal.ConnectionPool.doStart(ConnectionPool.java:1330)
         Truncated. see log file for complete stacktrace
    Please help me debug the issue.
    Edited by: DivyaHabin on Jul 2, 2012 10:04 PM

    Thanks for the reply Eric.
    Initially I didn't start db server before starting Admin server.But now as per your reply, I started db and then started the server.It got started.So does that mean I should start the Oracle Database first and then start server?
    The exception are still there in log.
    Exception1:<Failed to initialize the application 'soademoDatabase' due to error weblogic.application.ModuleException: .
    Exception2: <Failed to initialize the application 'wlsbjmsrpDataSource' due to error weblogic.application.ModuleException: .
    Edited by: DivyaHabin on Jul 3, 2012 1:18 AM

  • (WLS 7.x) Oracle BLOB.createTemporary

    I would like to call the Oracle extensions to create a temporary Blob, however,
    I'm unable to get to the native Oracle driver. I have the Oracle driver in my
    system classpath before webLogic.jar as recommended in other posts, but I'm unable
    to get to the oracle connection class as required by the createTemporary method.
    Is this possible in WLS 7.x?
    TIA

    Doug Walker wrote:
    Wow Joe! That was a fast reply! :-)no problem. They just happened to pay me last week ;-)
    We want you successful.
    Joe
    >
    Joe Weinstein <[email protected]> wrote:
    Doug Walker wrote:
    I would like to call the Oracle extensions to create a temporary Blob,however,
    I'm unable to get to the native Oracle driver. I have the Oracle driverin my
    system classpath before webLogic.jar as recommended in other posts,but I'm unable
    to get to the oracle connection class as required by the createTemporarymethod.
    Is this possible in WLS 7.x?Yes. 7.0sp3 and later... See the docs on getVendorConnection().
    Joe
    TIA

  • WLS 6.1, Oracle 9i, Linux

    Recently I got problems connecting to 9i on Linux. I followed advice to use thin
    driver and was able to create connection pool. Now I have entity bean problem.
    My create() methods work just fine -- records go to database as they should. But
    finders die with the following exception:
    java.lang.reflect.InvocationTargetException: javax.ejb.FinderException: Problem
    in findByPrimaryKey while preparing or executing statement: 'weblogic.jdbc.rmi.SerialPreparedStatement@43b64f':
    java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1],
    [0], [], [], [], [], [], []
    java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1],
    [0], [], [], [], [], [], []
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
    at oracle.jdbc.ttc7.TTC7Protocol.fetch(TTC7Protocol.java:889)
    at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:1681)
    My object has a single attribute PK, which is of type Long. If I use another finder
    to get all (select object(o) from Sequence, for example) exception is exactly
    the same. Ideas welcome ;)
    BTW: the same code works when running on NT connected to "real" Oracle 8 on Solaris.
    This brings thought of bug in the driver. If the thought is right, is there a
    work around?
    Thanks for your help.

    Hi Mike,
    Try a newer version of the driver from Oracle , that should take care of it,
    they had some problems getting the 817 driver talk to the 901 db which
    showed up this exception. So they have thin driver patches. as you point out
    if it still doesn't resolve the problem, you know who to get it touch with
    :) oracle support.
    sree
    "mike" <[email protected]> wrote in message
    news:[email protected]...
    >
    Sorry for the trouble, please ignore this message. For those interestedsee http://www.oracle-error.com/ora-00600.htm
    >
    "mike" <[email protected]> wrote:
    Recently I got problems connecting to 9i on Linux. I followed advice
    to use thin
    driver and was able to create connection pool. Now I have entity bean
    problem.
    My create() methods work just fine -- records go to database as they
    should. But
    finders die with the following exception:
    java.lang.reflect.InvocationTargetException: javax.ejb.FinderException:
    Problem
    in findByPrimaryKey while preparing or executing statement:
    'weblogic.jdbc.rmi.SerialPreparedStatement@43b64f':
    >>
    java.sql.SQLException: ORA-00600: internal error code, arguments:[ttcgcshnd-1],
    [0], [], [], [], [], [], []
    java.sql.SQLException: ORA-00600: internal error code, arguments:[ttcgcshnd-1],
    [0], [], [], [], [], [], []
    atoracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1405)
    at oracle.jdbc.ttc7.TTC7Protocol.fetch(TTC7Protocol.java:889)
    atoracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:1681)
    >>
    >>
    My object has a single attribute PK, which is of type Long. If I use
    another finder
    to get all (select object(o) from Sequence, for example) exception is
    exactly
    the same. Ideas welcome ;)
    BTW: the same code works when running on NT connected to "real" Oracle
    8 on Solaris.
    This brings thought of bug in the driver. If the thought is right, is
    there a
    work around?
    Thanks for your help.

  • Error connecting WLS Portal to ORACLE 8.17

    Following is the error I get when trying to start weblogic portal. I am trying
    to connect to an Oracle database. (Also attaching my config.xml file).
    Thanks
    Neeta
    using the Oracle Thin database driver
    using LD_LIBRARY_PATH of /export/home/wlp/bea/weblogic700/server/lib/solaris
    using PATH of /export/home/wlp/bea/weblogic700/server/bin:/export/home/wlp/bea/jdk131_03/jre/bin:/export/home/wlp/bea/jdk131_03/bin:/usr/bin:/usr/ucb:/etc:.:/home/oracle/OraHome1/bin
    + /export/home/wlp/bea/jdk131_03/bin/java -server -Xms128m -Xmx128m -XX:MaxPermSize=128m
    -Dcommerce.properties=/export/home/wlp/bea/weblogic700/portal/weblogiccommerce.properties
    -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic
    -classpath /export/home/wlp/bea/weblogic700/server/lib/weblogic.jar:/export/home/wlp/bea/weblogic700/server/lib/webservices.jar:/export/home/wlp/bea/weblogic700/portal/lib/p13n_system.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/jdom.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/HTTPClient.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/wlcsparsers.jar:/export/home/wlp/bea/weblogic700/server/lib/jdom.jar:/export/home/wlp/bea/weblogic700/portal/lib/portal_system.jar:/export/home/wlp/bea/jdk131_03/lib/tools.jar:/export/home/wlp/bea:/export/home/wlp/bea/weblogic700/portal/lib/commerce_system.jar:/export/home/wlp/bea/weblogic700/portal/lib/campaign_system.jar
    -Dweblogic.Name=portalServer -Dbea.home=/export/home/wlp/bea -Dweblogic.management.username=weblogic
    -Dweblogic.management.password=weblogic -Dweblogic.ProductionModeEnabled=true
    -Djava.security.policy=/export/home/wlp/bea/weblogic700/server/lib/weblogic.policy
    weblogic.Server
    Starting WebLogic Server...
    <Dec 5, 2002 6:54:17 PM GMT-06:00> <Notice> <Management> <140005> <Loading configuration
    /export/home/wlp/bea/user_projects/portalDomain/./config.xml>
    <Dec 5, 2002 6:54:30 PM GMT-06:00> <Error> <RDBMSRealm> <000000> <An error occured
    creating a database connection for the realm.
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135294976)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:210)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:323)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:260)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:365)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:260)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:141)
         at com.bea.p13n.security.realm.RDBMSDelegate.<init>(RDBMSDelegate.java:178)
         at com.bea.p13n.security.realm.RDBMSDelegate$DFactory.getInstance(RDBMSDelegate.java:971)
         at com.bea.p13n.security.realm.internal.Pool.<init>(Pool.java:53)
         at com.bea.p13n.security.realm.RDBMSRealm.createPool(RDBMSRealm.java:153)
         at com.bea.p13n.security.realm.RDBMSRealm.<init>(RDBMSRealm.java:140)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Class.java:232)
         at weblogic.security.acl.Realm.getRealm(Realm.java:87)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    >
    <Dec 5, 2002 6:54:31 PM GMT-06:00> <Emergency> <WebLogicServer> <000342> <Unable
    to initialize the server: Fatal initialization exception
    Throwable: java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    >
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    Reason: Fatal initialization exception
    Throwable: java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    + set +x
    [config.xml]

    Neeta -
    You need the @ sign in the config.xml file where you mention the URL.
    Kunal
    "Neeta Mittal" <[email protected]> wrote:
    >
    >
    >
    Following is the error I get when trying to start weblogic portal. I
    am trying
    to connect to an Oracle database. (Also attaching my config.xml file).
    Thanks
    Neeta
    using the Oracle Thin database driver
    using LD_LIBRARY_PATH of /export/home/wlp/bea/weblogic700/server/lib/solaris
    using PATH of /export/home/wlp/bea/weblogic700/server/bin:/export/home/wlp/bea/jdk131_03/jre/bin:/export/home/wlp/bea/jdk131_03/bin:/usr/bin:/usr/ucb:/etc:.:/home/oracle/OraHome1/bin
    + /export/home/wlp/bea/jdk131_03/bin/java -server -Xms128m -Xmx128m -XX:MaxPermSize=128m
    -Dcommerce.properties=/export/home/wlp/bea/weblogic700/portal/weblogiccommerce.properties
    -Dweblogic.management.username=weblogic -Dweblogic.management.password=weblogic
    -classpath /export/home/wlp/bea/weblogic700/server/lib/weblogic.jar:/export/home/wlp/bea/weblogic700/server/lib/webservices.jar:/export/home/wlp/bea/weblogic700/portal/lib/p13n_system.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/jdom.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/HTTPClient.jar:/export/home/wlp/bea/weblogic700/portal/lib/ext/wlcsparsers.jar:/export/home/wlp/bea/weblogic700/server/lib/jdom.jar:/export/home/wlp/bea/weblogic700/portal/lib/portal_system.jar:/export/home/
    wlp/bea/jdk131_03/lib/tools.jar:/export/home/wlp/bea:/export/home/wlp/bea/weblogic700/portal/lib/commerce_system.jar:/export/home/wlp/bea/weblogic700/portal/lib/campaign_system.jar
    -Dweblogic.Name=portalServer -Dbea.home=/export/home/wlp/bea -Dweblogic.management.username=weblogic
    -Dweblogic.management.password=weblogic -Dweblogic.ProductionModeEnabled=true
    -Djava.security.policy=/export/home/wlp/bea/weblogic700/server/lib/weblogic.policy
    weblogic.Server
    Starting WebLogic Server...
    <Dec 5, 2002 6:54:17 PM GMT-06:00> <Notice> <Management> <140005> <Loading
    configuration
    /export/home/wlp/bea/user_projects/portalDomain/./config.xml>
    <Dec 5, 2002 6:54:30 PM GMT-06:00> <Error> <RDBMSRealm> <000000> <An
    error occured
    creating a database connection for the realm.
    java.sql.SQLException: Io exception: Connection refused(DESCRIPTION=(TMP=)(VSNNUM=135294976)(ERR=12505)(ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4))))
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:210)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:323)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:260)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:365)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:260)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:141)
         at com.bea.p13n.security.realm.RDBMSDelegate.<init>(RDBMSDelegate.java:178)
         at com.bea.p13n.security.realm.RDBMSDelegate$DFactory.getInstance(RDBMSDelegate.java:971)
         at com.bea.p13n.security.realm.internal.Pool.<init>(Pool.java:53)
         at com.bea.p13n.security.realm.RDBMSRealm.createPool(RDBMSRealm.java:153)
         at com.bea.p13n.security.realm.RDBMSRealm.<init>(RDBMSRealm.java:140)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Class.java:232)
         at weblogic.security.acl.Realm.getRealm(Realm.java:87)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    >
    <Dec 5, 2002 6:54:31 PM GMT-06:00> <Emergency> <WebLogicServer> <000342>
    <Unable
    to initialize the server: Fatal initialization exception
    Throwable: java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    >
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    Reason: Fatal initialization exception
    Throwable: java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
    java.lang.IllegalAccessError: Exception[com.bea.p13n.security.realm.RDBMSException:
    An error occured creating a database connection for the realm.]
         at weblogic.security.acl.Realm.getRealm(Realm.java:94)
         at weblogic.security.acl.Realm.getRealm(Realm.java:65)
         at weblogic.security.SecurityService.initializeRealm(SecurityService.java:353)
         at weblogic.security.providers.realmadapter.AuthorizationProviderImpl.initialize(AuthorizationProviderImpl.java:72)
         at weblogic.security.service.SecurityServiceManager.createSecurityProvider(SecurityServiceManager.java:1820)
         at weblogic.security.service.AuthorizationManager.initialize(AuthorizationManager.java:221)
         at weblogic.security.service.AuthorizationManager.<init>(AuthorizationManager.java:140)
         at weblogic.security.service.SecurityServiceManager.doATZ(SecurityServiceManager.java:1558)
         at weblogic.security.service.SecurityServiceManager.initializeRealm(SecurityServiceManager.java:1371)
         at weblogic.security.service.SecurityServiceManager.loadRealm(SecurityServiceManager.java:1315)
         at weblogic.security.service.SecurityServiceManager.initializeRealms(SecurityServiceManager.java:1432)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:1157)
         at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:697)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:589)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:277)
         at weblogic.Server.main(Server.java:32)
    + set +x

  • Oracle 11.1.0.7.0 Issue with Streams when using NULL value in a key field

    Hi,
    we have an issue in our replicated environment using Streams.
    We have a replicated table using the following index:
    UK_S01_TEXT_FORMAT_TBL01 SOGID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TEXT_FORMAT_ID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_LANGUAGE_LABEL
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TEXT_FORMAT_COUNTER
    UK_S01_TEXT_FORMAT_TBL01 INDEX_PROVIDER_ID
    UK_S01_TEXT_FORMAT_TBL01 INDEX_TARIFF_PLAN_COSP_ID
    with field INDEX_PROVIDER_ID allowing NULL values. Actually we insert empty strings in there, but as far as I understand Oracle will convert it sliently in a NULL value, which is fine to our application.
    When we apply a change on that table (either update or delete) we get errors at streams level and the transaction is not propagated.
    Local Transaction ID: 6.28.11170
    Source Commit SCN: 25397175
    Source Commit Time: Dec-03-2012 12:21:30
    Error in Message: 1
    Error Message: ORA-26787: The row with key ("INDEX_LANGUAGE_LABEL", "INDEX_PROVIDER_ID", "INDEX_TARIFF_PLAN_COSP_ID", "INDEX_TEXT_FORMAT_COUNTER", "INDEX_TEXT_FORMAT_ID", "SOGID") = (ITALIAN, , , 0, MIKE, 124) does not exist in table
    SMS.S01_TEXT_FORMAT_TBL
    ORA-01403: no data found
    message: 1
    TableName: S01_TEXT_FORMAT_TBL
    Operation Type: DELETE
    _____ Old Data _____
    SOID : 1010000008
    SOGID : 124
    INDEX_TEXT_FORMAT_ID : MIKE
    INDEX_LANGUAGE_LABEL : ITALIAN
    INDEX_TEXT_FORMAT_COUNTER : 0
    TEXT_FORMAT : Hai raggiunto i 100MB di traffico incluso nello scatto
    APPLICA_PERIOD_CRI_ID :
    INDEX_TARIFF_PLAN_COSP_ID :
    INDEX_PROVIDER_ID :
    If I force the set of primary keys to be only the NOT NULL fields, I can successfully apply the error, but since we may have them storing both NULL and NOT NULL values, this is not a solution.
    I'm wondering why the DB on one hand converts the empty string in a NULL while inserting, but it looks the Apply process onStandby is not able to do the same when looking for the record before applying the transaction.
    Thanks in advance!
    Cheers,
    Mike

    Its showing all objects the user has permission to see- why does that need to be restricted?

  • Oracle Database upgrade to 11G (Host_Command Issues)

    Sorry I'm posting this again. Original post in Database - Upgrade. I'm not getting a lot of clicks in that category
    We recently upgraded to Oracle 11g (Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production). Our PL/SQL release: (PL/SQL Release 11.2.0.2.0 - Production). We use a lot of host commands inside our PL/SQL stored procedures. One of these included fetching data from an external server and pushing the data into Oracle Tables.
    Most of this process is running fine, except the execution never completes. There is no issue data wise. It's just that the Host_command doesn't receive the completion status and seems to be running even though there's nothing going on in the background.
    The Oracle e-business suite's concurrent program based on this stored proc also never completes, though it doesn't do anything in the background. For testing purpose, our DBA used 2 insert statements one before and one after the host_command. The insert before the host_command worked but not the one after. Please help! This is happening after we upgraded to 11g 3 weeks ago!
    Thanks, Naveen Gagadam.

    Pl do not post duplicates - Upgrade to 11g, Host Command Inside Stored Proc doesn't end.
    I have moved your duplicate post to the EBS forums
    Srini

  • Oracle 10g RAC using ASM - Storage Issue

    I’ve an issue related to Oracle 10g RAC.
    I’ve 2 node cluster each being Dell 2850 Server with RHEL 4.0
    I’ve EMC CX300 SAN storage with following partitions
    /orasoft     10 Gb          OCFS2 File system
    /oracrs          2 Gb          OCFS2 File system
    /orabackup      100 Gb          OCFS2 File system
    The datafiles are on ASM which is not directly visible in OS.
    I’ve common Oracle Home installed in /orasoft/db_1 which is shared by both nodes in cluster.
    I’ve faced an issue recently related to EMC storage.
    The /orasoft partition displays 1.4 Gb space available using df command.
    With both nodes sharing the common Oracle Home (/orasoft/db_1), when ever I try to touch a file I get an error as No Space left on device. I’m unable to start any service with the same reason.
    Is this setup correct ??
    Can anyone help me with this storage issue ??

    Need a clarification here...what do you mean by "Storage System"...do you mean a server/node or the SAN storage system. If you are referring to a server/node's local storage, then it would NOT be possible for use by RAC, since the disk space has to be shared among the nodes.
    Here is what you can do:
    - Create two partitions/devices (for example Disk_1 and Disk_2) in the SAN storage
    - Create a ASM disk group which would mirror Disk_1 to Disk_2.
    Again, please note that the partitions have to be visible and be accessible read/write from both the nodes/servers.
    HTH
    Thanks
    Chandra Pabba

  • Oracle VM Server 3.1.1 issues with NFS share

    Hi guys
    I am kind of stuck with the same issue for more than a week now. I have two virtual machines on Virtual box 4.1.8 (VM Server and VM Manager 3.1.1) and NFS following is disk/mount information on VM Server
    [root@oravms ~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/sda3             3.0G  636M  2.2G  23% /
    /dev/sda1              99M   28M   67M  29% /boot
    tmpfs                 242M   16K  242M   1% /dev/shm
    /dev/sdb1             296G   17G  264G   6% /storage1
    /dev/sdc1             197G  320M  187G   1% /storage2
    none                  242M   40K  242M   1% /var/lib/xenstored
    192.168.0.20:/storage2
                          197G  320M  187G   1% /nfsmnt/cc745331-3df1-48d7-823c-b28faf2d87b3
    /dev/mapper/ovspoolfs
                           10G  263M  9.8G   3% /poolfsmnt/0004fb00000500005e689e9b4de9382f
    192.168.0.20:/storage1
                          296G   17G  264G   6% /OVS/Repositories/0004fb0000030000e19fce4b38346de1From last whole week I am trying to import a single VM template as a test object, Oracle E-Business suite 12.1.3 APPS tier and everytime once after a certain portion of the template unpacked, the VM server goes for a toast!! it either reboots or the NFS gets into a lock
    Both the virtual machines have 4GB memory, independant NICs dedicated for each virtual machine (as somebody else from forums suggested for it...)
    Please help me!!!
    regards,
    raj

    hi user12273962
    I hope the following few details will assist you to provide me a suggestion to overcome this issue
    My Oracle VM server IP address: 192.168.0.20
    VM Manager IP: 192.168.0.23
    Both machines are tied to different NICs for avoiding excess traffic
    df -h on VM server
    [root@oravms ~]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/sda3             3.0G  636M  2.2G  23% /
    /dev/sda1              99M   28M   67M  29% /boot
    tmpfs                 242M   16K  242M   1% /dev/shm
    /dev/sdb1             296G  191M  281G   1% /storage1
    /dev/sdc1             197G  320M  187G   1% /storage2
    none                  242M   40K  242M   1% /var/lib/xenstored
    192.168.0.20:/storage2
                          197G  320M  187G   1% /nfsmnt/cc745331-3df1-48d7-823c-b28faf2d87b3
    /dev/mapper/ovspoolfs
                           10G  263M  9.8G   3% /poolfsmnt/0004fb00000500005e689e9b4de9382f
    192.168.0.20:/storage1
                          296G  191M  281G   1% /OVS/Repositories/0004fb0000030000e19fce4b38346de1/etc/fstab output
    /dev/sdb1                                /storage1   ext3    defaults 1 2
    /dev/sdc1                                /storage2   ext3    defaults 1 2/etc/exports output
    /storage1       192.168.0.20(rw,sync,no_root_squash,nohide)
    /storage2       192.168.0.20(rw,sync,no_root_squash,nohide)Should I export the mount points to another server? Please let me know.
    NFS was the only one file type recognized by the discovery process...I am quite new to virtualization, actually spent last whole week trying and fixing one or other issue with the VM server :D
    If you know how I could avoid NFS in the entire scenario (as this is just for learning purpose) I would be grateful :)
    regards,
    raj

  • Oracle 11g R2 Client Silent Installation Issue (PATH) Windows 7 x86

    Hi All,
    I'm hoping somebody can shed some light on this issue.
    I created a Response file using the 'Save Response File' method during an interactive installation on a Windows 7 Enterprise x86 client. (file enclosed)
    I have installed it multiple times now with multiple permutations of the command line (got caught out by the old lower case F in responseFile) but now I'm getting the same error each time (a critical error with the PATH according to the installation log). There is nothing wrong with the path length as the installation works fine in GUI mode and passes the Prereq check.
    I launch the command line to install (with Run As Administrator) - "[location of setup.exe]\setup.exe" -nowait -silent -responseFile "[location of response file]\Oracle11gv2.rsp"
    RESPONSE FILE:
    ## Copyright(c) Oracle Corporation 1998,2008. All rights reserved. ##
    ## Specify values for the variables listed below to customize ##
    ## your installation. ##
    ## Each variable is associated with a comment. The comment ##
    ## can help to populate the variables with the appropriate ##
    ## values.                                   ##
    # Do not change the following system generated value.
    oracle.install.responseFileVersion=/oracle/install/rspfmt_clientinstall_response_schema_v11_2_0
    # This variable holds the hostname of the system as set by the user.
    # It can be used to force the installation to use an alternative
    # hostname rather than using the first hostname found on the system
    # (e.g., for systems with multiple hostnames and network interfaces).
    ORACLE_HOSTNAME=
    # Unix group to be set for the inventory directory.
    UNIX_GROUP_NAME=
    # Inventory location.
    INVENTORY_LOCATION=C:\Program Files\Oracle\Inventory
    # Specify the languages in which the components will be installed.
    # en : English ja : Japanese
    # fr : French ko : Korean
    # ar : Arabic es : Latin American Spanish
    # bn : Bengali lv : Latvian
    # pt_BR: Brazilian Portuguese lt : Lithuanian
    # bg : Bulgarian ms : Malay
    # fr_CA: Canadian French es_MX: Mexican Spanish
    # ca : Catalan no : Norwegian
    # hr : Croatian pl : Polish
    # cs : Czech pt : Portuguese
    # da : Danish ro : Romanian
    # nl : Dutch ru : Russian
    # ar_EG: Egyptian zh_CN: Simplified Chinese
    # en_GB: English (Great Britain) sk : Slovak
    # et : Estonian sl : Slovenian
    # fi : Finnish es_ES: Spanish
    # de : German sv : Swedish
    # el : Greek th : Thai
    # iw : Hebrew zh_TW: Traditional Chinese
    # hu : Hungarian tr : Turkish
    # is : Icelandic uk : Ukrainian
    # in : Indonesian vi : Vietnamese
    # it : Italian
    # Example : SELECTED_LANGUAGES=en,fr,ja
    SELECTED_LANGUAGES=en,en_GB
    # Complete path of the Oracle Home
    ORACLE_HOME=C:\Oracle\product\11.2.0\client_1
    # Complete path of the Oracle Base.
    ORACLE_BASE=C:\Oracle
    #Name : INSTALL_TYPE
    #Datatype : String
    #Description: Installation type of the component.
    # The following choices are available. The value should contain
    # only one of these choices.
    # InstantClient : InstantClient
    # Administrator : Administrator
    # Runtime : Runtime
    # Custom : Custom
    #Example : INSTALL_TYPE = "Administrator"
    oracle.install.client.installType=Custom
    # Name : oracle.install.client.customComponents
    # Datatype : StringList
    # This property is considered only if INSTALL_TYPE is set to "Custom"
    # Description: List of Client Components you would like to install
    # The following choices are available. You may specify any
    # combination of these choices. The components you choose should
    # be specified in the form "internal-component-name:version"
    # Below is a list of components you may specify to install.
    # oracle.sqlj:11.2.0.1.0 -- "Oracle SQLJ"
    # oracle.rdbms.util:11.2.0.1.0 -- "Oracle Database Utilities"
    # oracle.javavm.client:11.2.0.1.0 -- "Oracle Java Client"
    # oracle.sqlplus:11.2.0.1.0 -- "SQL*Plus"
    # oracle.dbjava.jdbc:11.2.0.1.0 -- "Oracle JDBC/THIN Interfaces"
    # oracle.ldap.client:11.2.0.1.0 -- "Oracle Internet Directory Client"
    # oracle.rdbms.oci:11.2.0.1.0 -- "Oracle Call Interface (OCI)"
    # oracle.precomp:11.2.0.1.0 -- "Oracle Programmer"
    # oracle.xdk:11.2.0.1.0 -- "Oracle XML Development Kit"
    # oracle.network.aso:11.2.0.1.0 -- "Oracle Advanced Security"
    # oracle.assistants.oemlt:11.2.0.1.0 -- "Enterprise Manager Minimal Integration"
    # oracle.oraolap.mgmt:11.2.0.1.0 -- "OLAP Analytic Workspace Manager and Worksheet"
    # oracle.network.client:11.2.0.1.0 -- "Oracle Net"
    # oracle.ordim.client:11.2.0.1.0 -- "Oracle Multimedia Client Option"
    # oracle.ons:11.2.0.0.0 -- "Oracle Notification Service"
    # oracle.odbc:11.2.0.1.0 -- "Oracle ODBC Driver"
    # oracle.has.client:11.2.0.1.0 -- "Oracle Clusterware High Availability API"
    # oracle.dbdev:11.2.0.1.0 -- "Oracle SQL Developer"
    # oracle.rdbms.scheduler:11.2.0.1.0 -- "Oracle Scheduler Agent"
    # Example : oracle.install.client.customComponents="oracle.precomp:11.2.0.1.0","oracle.ons:11.2.0.0.0","oracle.oraolap.mgmt:11.2.0.1.0","oracle.rdbms.scheduler:11.2.0.1.0"
    oracle.install.client.customComponents=oracle.rdbms.util:11.2.0.1.0,oracle.sqlplus:11.2.0.1.0,oracle.dbjava.jdbc:11.2.0.1.0,oracle.rdbms.oci:11.2.0.1.0,oracle.network.client:11.2.0.1.0,oracle.odbc:11.2.0.1.0,oracle.oo4o:11.2.0.1.0,oracle.ntoledb:11.2.0.1.0,oracle.ntoledb.odp_net_2:11.2.0.1.0,oracle.aspnet_2:11.2.0.1.0
    #Name : MTS_PORT
    #Datatype : int
    #Description: Port number to be used for by the Oracle MTS Recovery Service to listen
    #          for requests. This needs to be entered in case oracle.ntoramts is
    #     selected in the list of custom components in custom install
    #Example : MTS_PORT = 2030
    oracle.install.client.oramtsPortNumber=49152
    # Host name to be used for by the Oracle Scheduler Agent.
    # This needs to be entered in case oracle.rdbms.scheduler is selected in the
    # list of custom components during custom install
    # Example : oracle.install.client.schedulerAgentHostName = acme.domain.com
    oracle.install.client.schedulerAgentHostName=
    # Port number to be used for by the Oracle Scheduler Agent.
    # This needs to be entered in case oracle.rdbms.scheduler is selected in the
    # list of custom components during custom install
    # Example: oracle.install.client.schedulerAgentPortNumber = 1500
    oracle.install.client.schedulerAgentPortNumber=
    LOG FILE TO FOLLOW

    LOG FILE:
    Using paramFile: Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\install\oraparam.ini
    The commandline for unzip:
    Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\install\unzip -qqqo ..\stage\Components\oracle.jdk\1.5.0.17.03\1\DataFiles/"*.jar" -d "C:\Users\DESKTO~1\AppData\Local\Temp\OraInstall2013-02-26_08-36-31AM" INFO: Loading data from: jar:file:/C:/Users/DesktopAdmin/AppData/Local/Temp/OraInstall2013-02-26_08-36-31AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Loading beanstore from jar:file:/C:/Users/DesktopAdmin/AppData/Local/Temp/OraInstall2013-02-26_08-36-31AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Restoring class oracle.install.driver.oui.ConfigCmdMappings from jar:file:/C:/Users/DesktopAdmin/AppData/Local/Temp/OraInstall2013-02-26_08-36-31AM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
    INFO: Verifying target environment...
    INFO: Checking whether the IP address of the localhost could be determined...
    INFO: Completed verification of target environment.
    INFO: Inventory exists: false
    INFO: Registering setup bean
    INFO: Validating Response File Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\response\Oracle11gv2.rsp
    WARNING: Unable to find the namespace URI. Reason: Start of root element expected.
    INFO: Setting Response file data to the Installer
    WARNING: Unable to find the namespace URI. Reason: Start of root element expected.
    INFO: Building Flow
    INFO: Building the flow graph
    INFO: Loaded state init
    INFO: Loaded state clientInstallType
    INFO: Loaded state productLanguage
    INFO: Loaded state getOracleHome
    INFO: Loaded state prereqExecutionDecider
    INFO: Loaded state checkPrereqs
    INFO: Loaded state postPrereqs
    INFO: Loaded state summary
    INFO: Loaded state clientCustomInstall
    INFO: Loaded state schedulerAgent
    INFO: Loaded state mtsDialog
    INFO: Loaded state setup
    INFO: Loaded state finish
    INFO: Linking states
    INFO: State[checkPrereqs]: route=success; to=summary
    INFO: State[clientCustomInstall]: route=TO_ENDCUSTOM; to=prereqExecutionDecider
    INFO: State[clientCustomInstall]: route=TO_ORAMTS; to=mtsDialog
    INFO: State[clientCustomInstall]: route=TO_SCHEDULERAGENT; to=schedulerAgent
    INFO: State[clientInstallType]: route=ic_no; to=productLanguage
    INFO: State[clientInstallType]: route=ic_yes; to=getOracleHome
    INFO: State[getOracleHome]: route=INVENTORY_NO; to=prereqExecutionDecider
    INFO: State[getOracleHome]: route=INVENTORY_NO_CUSTOM_YES; to=clientCustomInstall
    INFO: State[getOracleHome]: route=INVENTORY_YES; to=prereqExecutionDecider
    INFO: State[getOracleHome]: route=INVENTORY_YES_CUSTOM_YES; to=clientCustomInstall
    INFO: State[init]: route=success; to=clientInstallType
    INFO: State[mtsDialog]: route=success; to=prereqExecutionDecider
    INFO: State[postPrereqs]: route=CUSTOM; to=clientCustomInstall
    INFO: State[postPrereqs]: route=NON_CUSTOM; to=summary
    INFO: State[prereqExecutionDecider]: route=executeprereqs; to=checkPrereqs
    INFO: State[prereqExecutionDecider]: route=ignoreprereqs; to=summary
    INFO: State[productLanguage]: route=productlanguage_yes; to=getOracleHome
    INFO: State[schedulerAgent]: route=TO_ENDCUSTOM; to=prereqExecutionDecider
    INFO: State[schedulerAgent]: route=TO_ORAMTS; to=mtsDialog
    INFO: State[setup]: route=success; to=finish
    INFO: State[summary]: route=success; to=setup
    INFO: Successfully built the flow
    INFO: Opening bean stores from which the beans can be loaded
    INFO: Changing the format to extended property file format to merge the flowDataDefaults with the flowDataSource
    INFO: Loading beanstore from file:/Z:/Source Media/KM0399 - Oracle 11g/win32_11gR2_client/client/response/Oracle11gv2.rsp
    INFO: Translating external format into raw format
    INFO: Loaded BeanStore using the flow data source
    INFO: Registering the flow data beans
    INFO: [INS-07001] Value for property 'INSTALL_TYPE' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_CustomComponents' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_OraMTSPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentHostName' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOME' not found in the bean store.
    INFO: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_BASE' not found in the bean store.
    INFO: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    INFO: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    INFO: [INS-07001] Value for property 'UNIX_GROUP_NAME' not found in the bean store.
    INFO: [INS-07001] Value for property 'INVENTORY_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'SELECTED_LANGUAGES' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_RESPONSE_FILE' not found in the bean store.
    INFO: [INS-07001] Value for property 'MYORACLESUPPORT_USERNAME' not found in the bean store.
    INFO: [INS-07001] Value for property 'MYORACLESUPPORT_PASSWORD' not found in the bean store.
    INFO: [INS-07001] Value for property 'DECLINE_SECURITY_UPDATES' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_HOST' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_PORT' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_USER' not found in the bean store.
    INFO: [INS-07001] Value for property 'PROXY_PWD' not found in the bean store.
    INFO: [INS-07001] Value for property 'SECURITY_UPDATES_VIA_MYORACLESUPPORT' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_IGNORE_FAILURES' not found in the bean store.
    INFO: [INS-07001] Value for property 'COLLECTOR_IGNORE_CONFIGURATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOSTNAME' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    WARNING: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    WARNING: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    WARNING: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    WARNING: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    WARNING: [INS-07001] Value for property 'OCMSettings' not found in the bean store.
    INFO: Set value for bean ClientSetupBean
    INFO: [INS-07001] Value for property 'INSTALL_TYPE' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_WindowsSystemDirectory' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_LaunchNetCA' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_NoMigration' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_RACInstall' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_ConfigurationType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallType' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_db_InstallEdition' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_CustomComponents' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_OraMTSPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentHostName' not found in the bean store.
    INFO: [INS-07001] Value for property 'oracle_install_client_SchedulerAgentPortNumber' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_HOME' not found in the bean store.
    INFO: [INS-07001] Value for property 'FROM_LOCATION' not found in the bean store.
    INFO: [INS-07001] Value for property 'ORACLE_BASE' not found in the bean store.
    INFO: [INS-07001] Value for property 'TOPLEVEL_COMPONENT' not found in the bean store.
    INFO: [INS-07001] Value for property 'TopLevelComponentVersion' not found in the bean store.
    WARNING: Failed to load bean oracle.install.ivw.client.bean.ClientInstallSettings. Reason: [INS-07001] Value for property 'ClientInstallSettings' not found in the bean store.
    INFO: Closing bean stores from which the beans can be loaded
    INFO: Registering the flow views
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.PrereqGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SummaryGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SetupGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.common.view.ProductLanguageGUI viewId: ProductLanguageUI uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.CustomInstallGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.SchedulerAgentGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.OraMTSGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.InstallLocationGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.InstallTypesGUI viewId: null uiType: null]
    INFO: Adding View[type: oracle.install.ivw.client.view.FinishGUI viewId: null uiType: null]
    INFO: Initial values of Setup Properties :
    PROPERTY VALUE
    COLLECTOR_IGNORE_CONFIGURATION false
    COLLECTOR_IGNORE_FAILURES false
    COLLECTOR_RESPONSE_FILE
    DECLINE_SECURITY_UPDATES false
    FROM_LOCATION Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\cl
    ient\install\../stage/products.xml
    INSTALL_TYPE Custom
    INVENTORY_LOCATION C:\Program Files\Oracle\Inventory
    MYORACLESUPPORT_PASSWORD Protected value, not to be logged
    MYORACLESUPPORT_USERNAME
    ORACLE_BASE C:\Oracle
    ORACLE_HOME C:\Oracle\product\11.2.0\client_1
    ORACLE_HOSTNAME GBA-P74444432
    PROXY_HOST
    PROXY_PORT
    PROXY_PWD Protected value, not to be logged
    PROXY_USER
    SECURITY_UPDATES_VIA_MYORACLESUPPORT true
    SELECTED_LANGUAGES {"en","en_GB"}
    oracle_install_LaunchNetCA false
    oracle_install_NoMigration true
    oracle_install_RACInstall false
    oracle_install_WindowsSystemDirectory
    oracle_install_client_CustomComponents {"oracle.rdbms.util:11.2.0.1.0","oracle.sqlplus:11.2.0.1.
    0","oracle.dbjava.jdbc:11.2.0.1.0","oracle.rdbms.oci:11.2
    .0.1.0","oracle.network.client:11.2.0.1.0","oracle.odbc:1
    1.2.0.1.0","oracle.oo4o:11.2.0.1.0","oracle.ntoledb:11.2.
    0.1.0","oracle.ntoledb.odp_net_2:11.2.0.1.0","oracle.aspn
    et_2:11.2.0.1.0"}
    oracle_install_client_OraMTSPortNumber 49152
    oracle_install_db_ConfigurationType
    oracle_install_db_InstallEdition EE
    oracle_install_db_InstallType
    INFO: Launching Oracle Client Installer
    INFO: Started executing the flow in SILENT mode
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state init
    INFO: Waiting for completion all forked tasks at state init
    INFO: All forked task are completed at state init
    INFO: Completed background operations
    INFO: Executing action at state init
    INFO: Completed executing action at state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <init>
    WARNING: Validation disabled for the state init
    INFO: Completed validating state <init>
    INFO: Verifying route success
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state clientInstallType
    INFO: Completed executing action at state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <clientInstallType>
    WARNING: Validation disabled for the state clientInstallType
    INFO: Completed validating state <clientInstallType>
    INFO: In Transition of InstallTypesAction:
    INFO: Verifying route ic_no
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state productLanguage
    INFO: Completed executing action at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <productLanguage>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.common.action.ProductLanguageAction
    INFO: Completed validating state <productLanguage>
    INFO: Verifying route productlanguage_yes
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getOracleHome
    INFO: Completed executing action at state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <getOracleHome>
    INFO: custom prereq file name: oracle.client_Custom.xml
    INFO: refDataFile: Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\stage\cvu\oracle.client_Custom.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: InstallAreaControl exists: false
    INFO: Checking:NEW_HOME
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:ORCA_HOME
    INFO: Reading shiphome metadata from Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\install\..\stage\shiphomeproperties.xml
    INFO: Loading beanstore from file:/Z:/Source Media/KM0399 - Oracle 11g/win32_11gR2_client/client/install/../stage/shiphomeproperties.xml
    INFO: Translating external format into raw format
    INFO: Restoring class oracle.install.driver.oui.ShiphomeMetadata from file:/Z:/Source Media/KM0399 - Oracle 11g/win32_11gR2_client/client/install/../stage/shiphomeproperties.xml
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: size estimation for Administratorinstall is 1046.229476928711
    INFO: PATH has :==>C:\Users\DESKTO~1\AppData\Local\Temp\OraInstall2013-02-26_08-36-31AM\jdk\jre\bin;.;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\AdminStudio\11.5\Common\
    INFO: Completed validating state <getOracleHome>
    INFO: InstallLocationAction to INVENTORY_NO_CUSTOM_YES
    INFO: Verifying route INVENTORY_NO_CUSTOM_YES
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state clientCustomInstall
    INFO: Re-loading component config bean
    INFO: Loading beanstore from jar:file:/C:/Users/DesktopAdmin/AppData/Local/Temp/OraInstall2013-02-26_08-36-31AM/ext/jlib/instclient.jar!/oracle/install/ivw/client/resource/custom_components.xml
    INFO: Translating external format into raw format
    INFO: Restoring class oracle.install.commons.base.util.ComponentConfig from jar:file:/C:/Users/DesktopAdmin/AppData/Local/Temp/OraInstall2013-02-26_08-36-31AM/ext/jlib/instclient.jar!/oracle/install/ivw/client/resource/custom_components.xml
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    WARNING: [INS-07001] Value for property 'dependants' not found in the bean store.
    INFO: Resolving dependencies
    INFO: Completed executing action at state <clientCustomInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <clientCustomInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <clientCustomInstall>
    INFO: Completed validating state <clientCustomInstall>
    INFO: Verifying route TO_ENDCUSTOM
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state prereqExecutionDecider
    INFO: Completed executing action at state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <prereqExecutionDecider>
    WARNING: Validation disabled for the state prereqExecutionDecider
    INFO: Completed validating state <prereqExecutionDecider>
    INFO: Verifying route executeprereqs
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state checkPrereqs
    INFO: custom prereq file name: oracle.client_Custom.xml
    INFO: refDataFile: Z:\Source Media\KM0399 - Oracle 11g\win32_11gR2_client\client\stage\cvu\oracle.client_Custom.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: Completed executing action at state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state checkPrereqs
    INFO: Waiting for completion all forked tasks at state checkPrereqs
    INFO: Creating PrereqChecker Job for leaf task Physical Memory
    INFO: Creating CompositePrereqChecker Job for container task Free Space
    INFO: Creating PrereqChecker Job for leaf task Free Space: GBA-P74444432:C:\Users\DESKTO~1\AppData\Local\Temp
    INFO: Creating PrereqChecker Job for leaf task Architecture
    INFO: Creating PrereqChecker Job for leaf task Environment variable: "PATH"
    INFO: CVU tracingEnabled = false
    INFO: Nodes are prepared for verification.
    INFO: *********************************************
    INFO: Physical Memory: This is a prerequisite condition to test whether the system has at least 128MB (131072.0KB) of total physical memory.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:GBA-P74444432
    INFO: Expected Value:128MB (131072.0KB)
    INFO: Actual Value:1023.5547MB (1048120.0KB)
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Free Space: GBA-P74444432:C:\Users\DESKTO~1\AppData\Local\Temp: This is a prerequisite condition to test whether sufficient free space is available in the file system.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:GBA-P74444432
    INFO: Expected Value:130MB
    INFO: Actual Value:21.3053GB
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:SUCCESSFUL
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:GBA-P74444432
    INFO: Expected Value:32-bit
    INFO: Actual Value:32-bit
    INFO: -----------------------------------------------
    INFO: *********************************************
    INFO: Environment variable: "PATH": This test checks whether the length of the environment variable "PATH" does not exceed the recommended length.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:GBA-P74444432
    WARNING: Result values are not available for this verification task
    INFO: All forked task are completed at state checkPrereqs
    INFO: Completed background operations
    INFO: Moved to state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <checkPrereqs>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.client.action.PrereqAction
    INFO: Adding ExitStatus PREREQUISITES_NOT_MET to the exit status set
    SEVERE: [FATAL] [INS-13013] Target environment do not meet some mandatory requirements.
    CAUSE: Some of the mandatory prerequisites are not met. See logs for details. C:\Users\DESKTO~1\AppData\Local\Temp\OraInstall2013-02-26_08-36-31AM\installActions2013-02-26_08-36-31AM.log
    ACTION: Identify the list of failed prerequisite checks from the log: C:\Users\DESKTO~1\AppData\Local\Temp\OraInstall2013-02-26_08-36-31AM\installActions2013-02-26_08-36-31AM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
    INFO: Advice is ABORT
    INFO: Adding ExitStatus INVALID_USER_INPUT to the exit status set
    INFO: Completed validating state <checkPrereqs>
    INFO: Terminating all background operations
    INFO: Terminated all background operations
    WARNING: A log of this session is currently saved as: C:\Users\DESKTO~1\AppData\Local\Temp\OraInstall2013-02-26_08-36-31AM\installActions2013-02-26_08-36-31AM.log. Oracle recommends that if you want to keep this log, you should move it from the temporary location to a more permanent location.
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -3
    INFO: Shutdown Oracle Client Installer
    INFO: Unloading Setup Driver

Maybe you are looking for

  • AFRU table when a confirmations at the order level is entered?

    Hello, I know that the users can enter a confirmation in the operation level (with the co11n transaction) or in the order level (with the co15 transaction). What I want to know is if physically, in the AFRU table, when a user confirm directly an orde

  • Need help with a graduate student project

    Hi Apple Community! My name is Gordon and I'm posting here to see if I could possibly interview someone via email or over the phone for a training project I am doing for a course in Graduate School. I'm a first year Industrial and Organizational Psyc

  • Preview.app make "move tool" default on PDFs

    Hi, I'd like to make the "move tool" the default when opening PDF files. I guess that most people do read those files instead of selecting text - I wonder why "select text" is the default. I am also aware of this post: http://discussions.apple.com/th

  • Infotype for

    Hi, what is the infotype for notification of absence thnx Priya

  • 0008 install error for upgrade playbook app

    Hi,  BlackBerry approved and we were able to upgrade our apps. However, we found that they are unable to install. The error mesasge shows "Install Error: [0008] There was a problem during installation. Please try again".   I had looked around other s