Oracle To Ms ACC

Hi All!
I have Heterogeneous Services Oracle Generic Conncetivity for MS ACCESS..
Here i m able to insert the data
1)From MS ACCESS table (STUDENT) into MS ACCESS table(CLASS);
SQL> insert into class@dlcollege
("cno","cname")
select "sno","sname" from student@dlcollege;
6 rows created.
2) From MS ACCESS table (LAB) into Oracle table(TEST);
SQL> insert into test
2 (tno,tname)
3 select lno,lname from lab@dlcollege;
6 rows created.
3)BUT When I want to Insert the data from Oracle table (TEST) into MSACCESS table (BOARD) it gives this error..
SQL> insert into board@dlcollege
2 ("bno", "bname")
3 SELECT TNO, TNAME FROM TEST;
SELECT TNO, TNAME FROM TEST
ERROR at line 3:
ORA-02025: all tables in the SQL statement must be at the remote database
THIS ERROR NOT COMES WHEN I inserted the data From MS ACCESS table(LAB)into Oracle table(TEST)as mention above in step 2.
Note! All the tables have same datatype. having only two fields 1) NO number(10) pk 2)NAME varchar2(20)
Why does this happen?
Any syntax error in INSERT statement?
Thanks
Rana Adnan

hI
hELP NEED 4 INSERTING DATA FROM ORACLE TABLE TO ACCESS TABLE
THANKS

Similar Messages

  • Oracle PW getting Locked + ABAP Kernel Update through the JSPM

    Hi Gurus,
    #1
    After resetting the PW ( ABAP + JAVA System ) at  ABAP Side ( SU01 ) and at the Config Tool Secure Store Level + Restart the SDM Server THEN : first time
    I am able to connect to DB for ConfigTool and I am also Able to Connect to JSPM, Change the PW and then for the Next Time( even though no changes made to SAPSR3DB ) the Oracle User SAPSR3DB Acc gets locked again - immediately and o repeated bases eventhough it is unlocked at the DB Level !!!
    Being ABAP + JAVA Is there anything else I need to do while I reset the  PW of J2EE Admin ?
    I have referred the notes 701654, 669848 and as it is ABAP+JAVA I don'e need to go for SAP* Emergency User Activation.
    #2
    Can we update the ABAP Kernel ( CAR Files ) through the JSPM ?
    Your inputs are very much appreciated.
    Thanks,
    Best Regards,
    - Rupen

    Hello,
    I think JSPM can be used to update only the support packs and not SAP Kernel.
    Also,
    In the Oracle directory, there is a script which changes the database password.
    Don't recollect the name though.
    Regards,
    Siddhesh

  • SAP ACC 7.2 Doubts

    Dear SAPTechies,
    We are planning to bring in ACC 7.2 to our non production environment (HP UNIX).
    On analysis found that the managed systems are supported since 4.6C
    but can anybody tell that what is the supported oracle database versions for those managed system as
    we could not find that information anywhere and all we could find is the supported oracle version for ACC installation is 10.0.2.
    Immediate response highly appreciated.
    Best Regards,
    Viswanathan Subramanian

    Hi Ervin,
    The PAM document talks about the supported database version for ACC NW CE (Managing System) only.
    But, my question is what is the supported oracle database version level for managed/satellite systems as I can get only the
    supported SAP system version information from SAP.
    Br,
    Viswanathan Subramanian

  • Probable bug on Excel 2010

    It's more of a heads up for you guys since I didn't find anything about it on the internet. 
    Edited to explain a bit better:  I posted this after noticing that in some situations some cells from Excel when converted for C# (using FromOADate) will seemingly lose one second, a cell with the date "10/19/2014 12:15 PM" would turn into
    "10/19/2014 12:14:59 PM" inside a C# application.
    I'm using version 14.0.7128.5000 (32-bit) and if I auto-increment dates, and if both dates used for the auto-increment have 12pm time in it, the auto-increment will lose 5 milliseconds per cell, at least that's what I get when trying to read those cells
    on C# using openxml.  The values will show up normally on excel but when I convert them using FromOADate they will seem like they have one second less (but it's actually only 5 milliseconds less per cell dragged).
    To reproduce this bug I use the following steps:
    - Cell A2 - 10/19/2014 12:19 PM
    - Cell A3 - 10/19/2014 12:18 PM
    - Select both cells
    - click on the little square on the bottom right of the cell selection
    - drag it down
    - try to read the fields A4 and below on C# using openxml
    The first two cells written by hand will remain with the correct values but the cells A4 and below will "lose" 5 milliseconds for each cell.
    Cells will display the correct value on excel but will have less milliseconds than they should for a FromOADate conversion.
    The dates don't even need to be on the same day, you just need to have both dates having a 12PM time in it.
    My locale is pt-BR or something, I can look into it more accurately if needed, in case you can't reproduce this bug.
    Cheers.

    If Excel is to slow for you, use database (MSSQL/MySQL/Oracle..or ACC), or work using VBA on array to paste in Worksheet when you done.
    Oskar Shon, Office System MVP - www.VBATools.pl
    if Helpful; Answer when a problem solved

  • Getting a datasource from a persistence-unit

    Is there any way to get the name of the datasource (non-jta or jta) from a persistence unit via the EntityManagerFactory or EntityManager instances?
    We need to do some JDBC work (for exotic data types) and are currently parsing the persistence.xml file ourselves to get the data source name (which is an awful thing to do) but would much rather be able to say Connection conn = Utility.getConnection(EntityManger em) or even String datasource = Utility.getDataSource(EntityManager em).
    Thanks, Mark

    Mark,
    Hi, I tried non-JTA code on OC4J.
    Try the following change acc.getDatasourceConnection() - tested on OC4J 10.1.3.4 using a RESOURCE_LOCAL non-JTA connection to Oracle 10g entityManager on a servlet.
    I get the same oracle.jdbc.driver.T4CConnection@18d702e connection to my Oracle 10 db from either the .getConnection() or .getDatasouceConnection() call - verify your persistence.xml properties
    <property name="eclipselink.target-server" value="OC4J"/>
    <property name="eclipselink.jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="eclipselink.jdbc.platform" value="org.eclipse.persistence.platform.database.oracle.OraclePlatform"/>
         if (acc != null) {
         //conn = acc.getConnection(); // returns null (I get the same T4CConnection)
         conn = (Connection)acc.getDatasourceConnection(); // returns oracle.jdbc.driver.T4CConnection
    [EL Finer]: 2008.09.30 17:03:07.905--ServerSession(24691161)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--client acquired
    [EL Finer]: 2008.09.30 17:03:13.061--UnitOfWork(18699935)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--acquire unit of work: 11546616
    08/09/30 17:03:20 __Connection: oracle.jdbc.driver.T4CConnection@18d702e
    I suspect you are running a RESOURCE_LOCAL entitymanager on your servlet client (not on an EJB) that defines all database properties like 3) below.
    like
    public class FrontController extends HttpServlet implements Servlet {
         public EntityManagerFactory emf = Persistence.createEntityManagerFactory("unified");
         public EntityManager entityManager = emf.createEntityManager();
    not
    @Local @Stateless
    public class ApplicationService implements ApplicationServiceLocal {
         @PersistenceContext(unitName="unified",type=PersistenceContextType.TRANSACTION)     
         private EntityManager entityManager;
    1) JTA on OC4J - NOPE
    Debugging in to UnitOfWorkImpl - I see the oracle.oc4j.sql.ManagedDataSource@202088
    However, I think this is still a tx datasource because usesExternalTransactionController = true
    uow     UnitOfWorkImpl (id=534)     
         project     Project (id=573)     
              datasourceLogin     DatabaseLogin (id=582)     
                   connector     JNDIConnector (id=592)     
                        dataSource     ManagedDataSource (id=599)     
                             m_connectionManger     OracleConnectionManager (id=613)     
                             m_connectionRetryInterval     1     
                             m_dataSourceName     "OracleDS" (id=619)     
                             m_debug     ManagedDataSourceDebugInfo (id=620)     
                             m_dmsConnectionStatMap     WeakHashMap<K,V> (id=622)     
                             m_loginTimeout     0     
                             m_logWriter     null     
                             m_managedConnectionFactory     ManagedConnectionFactoryImpl (id=624)     
                             m_manageLocalTransactions     true     
                             m_manageSqlObjects     "basic" (id=626)     
                             m_maxConnectAttempts     3     
                             m_mBean     ManagedJDBCDataSource (id=632)     
                             m_password     null     
                             m_reference     null     
                             m_unStattedConnections     WeakHashMap<K,V> (id=698)     
                             m_unStattedConnectionsLock     Object[0] (id=658)     
                             m_url     null     
                             m_user     null     
                   usesExternalTransactionController     true     
    Using your getConnection(EntityManager em) code:
    acc     DatabaseAccessor (id=537)     
         datasourceConnection     null     
    using:
    <persistence-unit name="unified" transaction-type="JTA">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <non-jta-data-source>jdbc/OracleDS</non-jta-data-source>
    <properties>
    <property name="eclipselink.target-server" value="OC4J"/>
    2) non-JTA on OC4J - NOPE
    using..
    entityManager.getTransaction().begin(); // non-JTA
    System.out.println("__Connection: " + getConnection(entityManager));
    on..
    <persistence-unit name="unified" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <non-jta-data-source>jdbc/OracleDS</non-jta-data-source>
    does not work with...
         @PersistenceContext(unitName="unified",type=PersistenceContextType.TRANSACTION)     
         private EntityManager entityManager;
    08/09/30 16:45:59 Exception: Cannot use resource level transactions with a container managed EntityManager
    3) non-JTA, non container managed on OC4J - YES
    using..
         // Local non-JTA application managed EMF and EM
         public EntityManagerFactory emf = Persistence.createEntityManagerFactory("unified");
         public EntityManager entityManager = emf.createEntityManager();
    persistence.xml
    <persistence-unit name="unified" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <properties>
    <property name="eclipselink.target-server" value="OC4J"/>
    <property name="eclipselink.logging.level" value="FINEST"/>
    <property name="eclipselink.session-name" value="eclipselinkwls"/>
    <property name="eclipselink.jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="eclipselink.jdbc.platform" value="org.eclipse.persistence.platform.database.oracle.OraclePlatform"/>
    <property name="eclipselink.jdbc.url" value="jdbc:oracle:thin:@x.x.x.x:1521:orcl"/>
    <property name="eclipselink.jdbc.user" value="scott"/>
    <property name="eclipselink.jdbc.password" value="password...."/>
    uow     UnitOfWorkImpl (id=518)     
         platform     Oracle10Platform (id=544)     
         project     Project (id=527)     
              aliasDescriptors     null     
              datasourceLogin     DatabaseLogin (id=533)     
                   cacheTransactionIsolation     5     
                   connectionHealthValidatedOnError     true     
                   connector     DefaultConnector (id=542)     
                        connectDirectly     true     
                        databaseURL     "jdbc:oracle:thin:@10.156.53.19:1521:orcl" (id=555)     
                        driver     OracleDriver (id=556)     
                        driverClass     Class<T> (oracle.jdbc.driver.OracleDriver) (id=557)     
                        driverClassName     "oracle.jdbc.driver.OracleDriver" (id=558)     
                        driverURLHeader     "" (id=560)     
    oracle.jdbc.driver.T4CConnection@18d702e
    acc     DatabaseAccessor (id=571)     
         activeBatchWritingMechanism     ParameterizedSQLBatchWritingMechanism (id=575)     
         datasourceConnection     T4CConnection (id=579)     
              database     "x.x.x.x:1521:orcl" (id=638)     
              databaseMetaData     OracleDatabaseMetaData (id=639)     
              databaseProductVersion     "Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production\nWith the Partitioning, OLAP and Data Mining options" (id=641)     
              thinVsessionProgram     "JDBC Thin Client" (id=736)     
              thinVsessionTerminal     "unknown" (id=737)     
              timeout     null     
              timestamptzInGmt     true     
              txnLevel     2     
              txnMode     0     
              url     "jdbc:oracle:thin:@x.x.x.x:1521:orcl" (id=738)     
              useFetchSizeWithLongColumn     false     
              userName     "SCOTT" (id=739)     
              usingXA     false     
              ver     T4C7Oversion (id=740)     
              versionNumber     10201     
              walletLocation     null     
              whichDMS     2     
              wrapper     null     
              xaWantsError     false     
    With the following change...
         public Connection getConnection(EntityManager em) {
         Connection conn = null;
         if (em != null && em.isOpen()) {
         JpaEntityManager jem = (JpaEntityManager)em.getDelegate();
         if (jem != null) {
         Session session = jem.getActiveSession();
         if (session != null) {
         UnitOfWorkImpl uow = (UnitOfWorkImpl)session.acquireUnitOfWork();
         if (uow != null) {
         Accessor acc = uow.getAccessor();
         if (acc != null) {
         //conn = acc.getConnection(); // returns null (I get the same T4CConnection)
         conn = (Connection)acc.getDatasourceConnection(); // returns oracle.jdbc.driver.T4CConnection
         return conn;
    we get...
    [EL Finer]: 2008.09.30 17:03:07.905--ServerSession(24691161)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--client acquired
    [EL Finer]: 2008.09.30 17:03:13.061--UnitOfWork(18699935)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--acquire unit of work: 11546616
    08/09/30 17:03:20 __Connection: oracle.jdbc.driver.T4CConnection@18d702e
    thank you
    [email protected]

  • OEM DBControl Ports In Use

    Hello...
    I've been having trouble connecting to OEM EM (http://host:1158/em). The database and applications are running just fine, but I cannot connect to OEM...the web page just times out. I'm running 10gR2 (10.2.0.1) on Linux RHEL4.
    After reading some posts, I decided to drop and recreate my OEM Repository.
    emca -config dbcontrol db -repos recreateAlthough the repository created successfully, I got an error saying that dbcontrol could not start up as ports were in use. This is the only database instance running on this machine. I'm confused as to why it would be saying this.
    Here's the output from the command, the logs, and a netstat -l listing.
    Any help would be appreciated!
    Thx
    Ken
    INFO: Repository successfully created
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Cannot start Database Control. The following ports are already in use: [Database Control HTTP port:1158 EM agent port:3938 RMI port for Database Control:5520 JMS port for Database Control:5540].
    Refer to the log file at /home/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/emca/apex/emca_2007-08-20_05-34-00-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /home/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/emca/apex/emca_2007-08-20_05-34-00-PM.log for more details.
    [oracle@clthcmmb03 ~]$
    LOG FILE Extract:
    CONFIG: Successfully deployed state dirs for clthcmmb03
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.EMAgentConfig performConfiguration
    CONFIG: Successfully updated agent config files
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /home/oracle/oracle/product/10.2.0/db_1/sysman/config/emd.properties.emca.tmp to /home/oracle/oracle/product/10.2.0/db_1/sysman/config/emd.properties
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /home/oracle/oracle/product/10.2.0/db_1/sysman/config/emd.properties.emca.tmp has been copied to /home/oracle/oracle/product/10.2.0/db_1/sysman/config/emd.properties
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /home/oracle/oracle/product/10.2.0/db_1/sysman/emd/targets.xml.emca.tmp to /home/oracle/oracle/product/10.2.0/db_1/sysman/emd/targets.xml
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /home/oracle/oracle/product/10.2.0/db_1/sysman/emd/targets.xml.emca.tmp has been copied to /home/oracle/oracle/product/10.2.0/db_1/sysman/emd/targets.xml
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Cannot start Database Control. The following ports are already in use: [Database Control HTTP port:1158 EM agent port:3938 RMI port for Database Control:5520 JMS port for Database Control:5540].
    Refer to the log file at /home/oracle/oracle/product/10.2.0/db_1/cfgtoollogs/emca/apex/emca_2007-08-20_05-34-00-PM.log for more details.
    Aug 20, 2007 5:46:44 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Cannot start Database Control. The following ports are already in use: [Database Control HTTP port:1158 EM agent port:3938 RMI port for Database Control:5520 JMS port for Database Control:5540].
    at oracle.sysman.emcp.EMDBPostConfig.areDbcPortsFree(EMDBPostConfig.java:1661)
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:451)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:177)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:146)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    NETSTAT -l
    [oracle@clthcmmb03 ~]$ netstat -l
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address Foreign Address State
    tcp 0 0 clthcmmb03:7200 *:* LISTEN
    tcp 0 0 *:7777 *:* LISTEN
    tcp 0 0 *:smux *:* LISTEN
    tcp 0 0 *:mysql *:* LISTEN
    tcp 0 0 *:netbios-ssn *:* LISTEN
    tcp 0 0 *:5900 *:* LISTEN
    tcp 0 0 clthcmmb03:2381 *:* LISTEN
    tcp 0 0 0.0.0.6:2381 *:* LISTEN
    tcp 0 0 172.23.183.169:2381 *:* LISTEN
    tcp 0 0 *:sunrpc *:* LISTEN
    tcp 0 0 *:10000 *:* LISTEN
    tcp 0 0 *:1521 *:* LISTEN
    tcp 0 0 *:krb5_prop *:* LISTEN
    tcp 0 0 *:6003 *:* LISTEN
    tcp 0 0 clthcmmb03:6100 *:* LISTEN
    tcp 0 0 *:ftp *:* LISTEN
    tcp 0 0 clthcmmb03:ipp *:* LISTEN
    tcp 0 0 *:6200 *:* LISTEN
    tcp 0 0 *:32792 *:* LISTEN
    tcp 0 0 clthcmmb03:smtp *:* LISTEN
    tcp 0 0 *:microsoft-ds *:* LISTEN
    tcp 0 0 clthcmmb03:2301 *:* LISTEN
    tcp 0 0 0.0.0.6:2301 *:* LISTEN
    tcp 0 0 172.23.183.169:2301 *:* LISTEN
    tcp 0 0 *:http *:* LISTEN
    tcp 0 0 *:ssh *:* LISTEN
    udp 0 0 *:2563 *:*
    udp 0 0 clthcmmb03:1028 *:*
    udp 0 0 clthcmmb03:1029 *:*
    udp 0 0 clthcmmb03:1030 *:*
    udp 0 0 172.23.183.169:netbios-ns *:*
    udp 0 0 *:netbios-ns *:*
    udp 0 0 172.23.183.169:netbios-dgm *:*
    udp 0 0 *:netbios-dgm *:*
    udp 0 0 *:2458 *:*
    udp 0 0 clthcmmb03:25375 *:*
    udp 0 0 clthcmmb03:25376 *:*
    udp 0 0 *:snmp *:*
    udp 0 0 *:snmptrap *:*
    udp 0 0 *:2083 *:*
    udp 0 0 *:2084 *:*
    udp 0 0 clthcmmb03:25393 *:*
    udp 0 0 *:748 *:*
    udp 0 0 *:kerberos_master *:*
    udp 0 0 *:sunrpc *:*
    udp 0 0 *:ipp *:*
    udp 0 0 172.23.183.169:ntp *:*
    udp 0 0 clthcmmb03:ntp *:*
    udp 0 0 *:ntp *:*
    udp 0 0 *:ntp *:*
    Active UNIX domain sockets (only servers)
    Proto RefCnt Flags Type State I-Node Path
    unix 2 [ ACC ] STREAM LISTENING 7579 /var/lib/mysql/mysql.sock
    unix 2 [ ACC ] STREAM LISTENING 15701 /var/tmp/.oracle/sEXTPROC1
    unix 2 [ ACC ] STREAM LISTENING 8173 /tmp/.font-unix/fs7100
    unix 2 [ ACC ] STREAM LISTENING 13725 /tmp/.gdm_socket
    unix 2 [ ACC ] STREAM LISTENING 15703 /var/tmp/.oracle/s#6840.1
    unix 2 [ ACC ] STREAM LISTENING 13832 /tmp/.X11-unix/X0
    unix 2 [ ACC ] STREAM LISTENING 15706 /var/tmp/.oracle/s#6840.2
    unix 2 [ ACC ] STREAM LISTENING 14807 /tmp/mapping-oracle
    unix 2 [ ACC ] STREAM LISTENING 14268 /tmp/ssh-dybiGw6580/agent.6580
    unix 2 [ ACC ] STREAM LISTENING 14295 /tmp/orbit-oracle/linc-19f0-0-398f676f54732
    unix 2 [ ACC ] STREAM LISTENING 14304 /tmp/orbit-oracle/linc-19b4-0-3c90bd7268e43
    unix 2 [ ACC ] STREAM LISTENING 14462 /tmp/.ICE-unix/6580
    unix 2 [ ACC ] STREAM LISTENING 14471 /tmp/keyring-uFau6k/socket
    unix 2 [ ACC ] STREAM LISTENING 14481 /tmp/orbit-oracle/linc-19f5-0-2a2e23d663ad1
    unix 2 [ ACC ] STREAM LISTENING 14275 @/tmp/dbus-uEKexk6EGd
    unix 2 [ ACC ] STREAM LISTENING 14501 /tmp/orbit-oracle/linc-19f7-0-20e59b5678786
    unix 2 [ ACC ] STREAM LISTENING 14597 /tmp/orbit-oracle/linc-1a15-0-3bae216a82e63
    unix 2 [ ACC ] STREAM LISTENING 14627 /tmp/orbit-oracle/linc-1a20-0-45f53a962d1b1
    unix 2 [ ACC ] STREAM LISTENING 14663 /tmp/orbit-oracle/linc-1a24-0-4a81afb83fc8
    unix 2 [ ACC ] STREAM LISTENING 14668 /tmp/orbit-oracle/linc-1a22-0-4a81afb84243
    unix 2 [ ACC ] STREAM LISTENING 14692 /tmp/orbit-oracle/linc-1a26-0-4a81afba2502
    unix 2 [ ACC ] STREAM LISTENING 14716 /tmp/orbit-oracle/linc-1a28-0-4a81afbc1f69
    unix 2 [ ACC ] STREAM LISTENING 14768 /tmp/orbit-oracle/linc-1a31-0-2d401161d8d3
    unix 2 [ ACC ] STREAM LISTENING 14821 /tmp/orbit-oracle/linc-1a2c-0-5b393ea916ecc
    unix 2 [ ACC ] STREAM LISTENING 14837 /tmp/orbit-oracle/linc-1a3b-0-5b393ea92aa98
    unix 2 [ ACC ] STREAM LISTENING 14875 /tmp/orbit-oracle/linc-1a3d-0-4d4825aea283
    unix 2 [ ACC ] STREAM LISTENING 14908 /tmp/orbit-oracle/linc-1a3f-0-4d4825ae6dc91
    unix 2 [ ACC ] STREAM LISTENING 14976 /tmp/orbit-oracle/linc-1a42-0-4d4825ae8e4db
    unix 2 [ ACC ] STREAM LISTENING 15555 /tmp/orbit-oracle/linc-1a70-0-7c3ecf6b622e4
    unix 2 [ ACC ] STREAM LISTENING 3250446 /tmp/ksocket-oracle/kdeinit__0
    unix 2 [ ACC ] STREAM LISTENING 3250448 /tmp/ksocket-oracle/kdeinit-:0
    unix 2 [ ACC ] STREAM LISTENING 3250454 /tmp/.ICE-unix/dcop16694-1187024927
    unix 2 [ ACC ] STREAM LISTENING 3250475 /tmp/ksocket-oracle/klauncherjAx6La.slave-socket
    unix 2 [ ACC ] STREAM LISTENING 3682455 /tmp/orbit-oracle/linc-1c7e-0-56225ca3e7baf
    unix 2 [ ACC ] STREAM LISTENING 1256092055 /tmp/orbit-oracle/linc-ca7-0-368a06bee8b42
    unix 2 [ ACC ] STREAM LISTENING 7762 /dev/gpmctl
    unix 2 [ ACC ] STREAM LISTENING 12341085 /tmp/mcop-oracle/clthcmmb03-7563-46c0a1a3
    unix 2 [ ACC ] STREAM LISTENING 14516 @/tmp/fam-oracle-
    unix 2 [ ACC ] STREAM LISTENING 7145 /var/run/acpid.socket
    unix 2 [ ACC ] STREAM LISTENING 11484 /var/run/dbus/system_bus_socket
    [oracle@clthcmmb03 ~]$

    ...so should I just change port 1158 to something else in emoms.properties, emd.properties, and http-web-site.xml? Are there any other ports I should remap as well?
    I still don't understand why I should have to do this when this is a fresh install of Linux and Oracle. It doesn't make sense to me why this is happening. It was working initially until I rebooted one day and then it all stopped.
    I did drop and recreate the OEM repository but that didn't fix anything.
    Please let me know your thoughts. Thx!
    Ken

  • Is it possible to integrate multiple instances with single OAM (Oracle Acce

    Hi All,
    Please could anyone clarify,is it possible to integrate multiple instance with single OAM(Oracle Access Manager).
    We have two instance in development environment, Among them one is already integrated with OAM 11g,Now we want to integrate the second one with OAM 11g. For this already configured OAM is enough or we need to configure the another OAM separately.
    Application Version is 12.1.1
    Database Version : 11.1.0.7
    OS : RHEL 5.3 64 bit
    Thanks in advance.

    Hi Hussein ,
    I Ran below script,
    ant -f txkEBSAuth.xml \
    -Dwlshosturl=appora.corp.hexaware.com:7021 \
    -Dwlsuser=weblogic \
    -Dwlspwd=password1 \
    -DuseDefaults=true \
    -DforceDataSource=true \
    -DdataSourceName=DEV \
    -DdataSourceJNDIName=jndi/DEV \
    -DasadminUser=SSO11GLOGIN \
    -DasadminPassword=welcome1 \
    -DdbcFile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/DEV.dbc \
    -DserverName=AdminServer \
    -DdeploymentName=ebsauth_DEV \
    -DfndauthWarFile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/fndauth.war \
    -DplanPath=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/plan/plan.xml \
    -DforceDeployment=true \
    -DSSOServerRelease=11 \
    -DSSOServerURL=http://appora.corp.hexaware.com:14100 \
    -DWebgateLogoutURL=http://appora.corp.hexaware.com:7780/public/oacleanup.html \
    -DlogConfigfile=/u06/oamfmw/Middleware/appsutil/accessgate/DEV/sample/logging.properties
    -bash: ant: command not found
    Thanks in advance

  • HELP! Can not install Oracle 8.1.5 w/ RedHat 6.1!

    I can not get Oracle 8.1.5 to install onto Linux RedHat 6.1. The
    Oracle installation script generates several errors. I have
    tried several attempts, using different options, but they all
    generate errors.
    Please help. The Oracle Installation scripts appear to be very
    buggy... or perhaps they are incompatible with the standard
    RedHat 6.1 release. Either way, it is very frustrating.
    I have documented one of my (failed) installation attempts below.
    Does anyone have any words of wisdom?
    I am installing Oracle onto a Dell Latitude CPi PC w/ 128MB RAM,
    a 366MHz Pentium II, and RedHat 6.1 (using the standard Linux
    2.2.12-2 kernel). RedHat was installed using the standard "Gnome
    Workstation" configuration.
    The Oralce CD is labeled:
    "Oralce 8i Enterprise Edition
    Release 8.1.5
    for Linux
    (c) Oracle Corporation 1999"
    I got this CD about one week ago at Oracle OpenWorld '99 in Los
    Angeles... it should be their "latest & greatest" version so far.
    1. Pre-Installation and ./runInstall
    I created an "oracle" Unix account w/ groups "oinstall" (the
    primary group) and "dba" (a secondary group).
    I created directories /u01 through /u04, belonging to oracle.
    I setup .cshrc and sourced it, containing:
    umask 022
    setenv DISPLAY `hostname`:0
    xhost +
    setenv ORACLE_BASE /u01/app/oracle
    setenv ORACLE_HOME ${ORACLE_BASE}/product/8.1.5
    setenv ORACLE_SID cprtest
    setenv PATH ${ORACLE_HOME}/bin:${PATH}
    setenv LD_LIBRARY_PATH ${ORACLE_HOME}/lib
    setenv NLS_LANG US7ASCII
    I downloaded jre116_v5 and installed to /usr/local/jre.
    Finally, I executed (from the "oracle" Unix account):
    cd /mnt/cdrom
    ./runInstall
    Problem: I got the error (from ./runInstall):
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.
    Please wait...
    Error in CreateOUIProcess(): -1
    : Bad address
    Workaround: Executed the following commands instead:
    cd /mnt/cdrom/install/linux
    ./runIns.sh
    3. runIns.sh and root.sh
    I selected the following options (from ./runIns.sh):
    Source: /mnt/cdrom/stage/products.jar
    Destination: /u01/app/oracle/product/8.1.5
    Oracle 8i Enterprise Edition 8.1.5.0.0
    Typical (585MB)
    Installable Components: Oralce Intelligent Agent 8.1.5.0.0
    Global Database Name: cprtest.parkrussell.com
    SID: cprtest
    Directory for Database Files: /u02
    Then (when instructed by ./runIns.sh), I attempted to execute
    (from the
    "root" Unix account):
    cd /u01/app/oracle/product/8.1.5
    ./root.sh
    Problem: I got the error:
    "bash: ./root.sh: Permission denied"
    The execute bit was not set.
    Workaround: I executed:
    chmod a+x root.sh
    ./root.sh
    5. Configuration Tools
    The Oracle Installer (./runIns.sh) attempted to execute:
    A. Net8 Configuration Agent
    B. Oracle Database Configuration Agent
    Problem: The "Oracle Database Configuration Agent" failed with
    the following error message:
    "One or more tools have failed. It is recommended but not
    required that these tools succeed for this installation.
    You can now select these tools, read its details to examine
    why they have failed, fix those problems, and retry them.
    Or, you can click "Next" to continue."
    When I selected the "Oracle Database Configuration Agent" for
    more info, I got the following additional details (as the cause
    of the error):
    "A required command line argument is missing."
    The log file
    "/u01/app/oracle/oraInventory/logs/installActions.log" recorded:
    "Command which is being spawned is /usr/local/jre/bin/jre
    -Duser.dir=/u01/app/oracle/product/8.1.5/assistants/dbca/jlib
    -classpath
    /usr/local/jre/lib/rt.jar:/u01/app/oracle/product/8.1.5/jlib/ewt-3_1_10.jar:/u01/app/oracle/produc
    /8.1.5/jlib/share-1_0_6.jar:/u01/app/oracle/product/8.1.5/assistants/dbca/jlib/DBAssist.jar:/u01/a
    p/oracle/product/8.1.5/assistants/jlib/jnls.jar:/u01/app/oracle/product/8.1.5/assistants/jlib/ACC.
    AR:/u01/app/oracle/product/8.1.5/jlib/help-3_0_7.jar:/u01/app/oracle/product/8.1.5/jlib/oracle_ice
    4_03_3.jar:/u01/app/oracle/product/8.1.5/jlib/HotJavaBean.jar:/u01/app/oracle/product/8.1.5/jlib/n
    tcfg.jar:/usr/local/jre/lib/i18n.jar
    DBCreateWizard /createtype seed /numusers NO_VALUE /apptype
    NO_VALUE /cartridges NO_VALUE /options NO_VALUE /demos NO_VALUE
    /seedloc NO_VALUE /sid cprtest /orahome
    /u01/app/oracle/product/8.1.5 /orabase /u01/app/oracle /dbloc
    /u02 /clususer NO_VALUE /cluspswd NO_VALUE /nodeinfo NO_VALUE
    /gdbName cprtest.parkrussell.com
    Invalid Exit Code. The following result code will be used for
    configuration tool: 1
    Configuration tool Oracle Database Configuration Assistant
    failed"
    Workaround: There is obviously nothing I can do to fix this
    problem. It appears to be an internal bug in ./runIns.sh.
    Therefore, I selected "Next" and executed "dbassist" directly.
    6. dbassist
    I executed:
    dbassist
    Problem: I got the following error:
    "JNLS Execution:oracle.ntpg.jnls.JNLSException
    Unable to find any National Character Sets. Please
    check your Oracle installation."
    Workaround: Press "OK" and ignore the error.
    7. dbassist (cont.)
    I selected the following options:
    Create database
    Typical
    Copy existing database files from the CD
    Global Database Name: cprtest.parkrussell.com
    SID: cprtest
    Problem: I got the following error:
    "CD-ROM drive not detected on this system.
    Database not created."
    (Note: I've been running the installation scripts from the
    CDROM drive this entire time. "df" shows the CDROM drive
    mounted on /mnt/cdrom. "ls /mnt/cdrom" works too.)
    Workaround: Abort (which generated the additional error: "Unable
    to create database. DBCA-00003: No CD-ROM drive detected.") and
    run dbassist again, this time using different parameters.
    8. dbassist, again
    I executed "dbassist" again and selected the following options:
    Create database
    Typical
    Create new database files
    Hybrid
    Concurrently connected users: 5
    Options: Oralce interMedia, Oralce JServer, and iM demos
    Global Database Name: cprtest2.parkrussell.com
    SID: cprtest2
    Create database now
    Problem: I got the following error:
    "ORA-01012: not logged on"
    Workaround: Try, try again.
    9. dbassist, one last time
    Executed "dbassist" once more and selected the following options:
    Create database
    Typical
    Create new database files
    Hybrid
    Concurrently connected users: 5
    Options: Oralce interMedia, Oralce JServer, and interMedia
    demos
    Global Database Name: cprtest3.parkrussell.com
    SID: cprtest3
    Output creation script
    Then, I executed (from the "oracle" Unix account):
    cd /u01/app/oracle/product/8.1.5/install
    setenv ORACLE_SID cprtest3
    ./sqlcprtest3.sh
    Problem: I got the following output:
    "Oracle Server Manager Release 3.1.5.0.0 - Production
    (c) Copyright 1997, Oracle Corporation. All Rights Reserved.
    Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    With the Partitioning and Java options
    PL/SQL Release 8.1.5.0.0 - Production
    SVRMGR> SVRMGR> Connected.
    SVRMGR> ORACLE instance started.
    ORA-01012: not logged on
    SVRMGR> 2> 3> 4> 5> 6> 7>
    8> 9> CREATE DATABASE "cprtest3"
    ORA-01012: not logged on
    SVRMGR> Disconnected."
    Workaround: Beats me.
    10. sqlplus
    I attempted to execute sqlplus, but got the following error
    message:
    "/u01/app/oracle/product/8.1.5/bin/sqlplus: Permission denied."
    The execute bit was not set.
    Workaround: I executed:
    chmod a+x /u01/app/oracle/product/8.1.5/bin/sqlplus
    sqlplus
    I gave up for now... there were just too many things wrong with
    this installation, starting with the very first command I was
    supposed to execute (./runInstaller).
    I can't fathom why Oracle's installation script has so many bugs.
    Am I just doing something terribly wrong?
    Please help.
    null

    I'm using enlightenment version 0.15.5-41, which is more recent
    than the 0.15.5-37 version (containing the Oracle installer
    patch) that you recommended. Unfortunately, it fails when using
    this version.
    I also tried installing Oracle using twm, with enlightenment
    disabled. This didn't help either.
    Furthermore, the errors that I'm encountering in the OUI are
    not just toward the end of the installation. They happen from
    the very beginning, right after I enter "./runInstall", and
    continue every step of the way.
    Calvin Mitchell (guest) wrote:
    : Check out my thread: "Assistants Failure Toward end of Oracle
    : Install" to see where i've gone with this.
    : if your running Enlightenment as your window manager you need
    to
    : upgrade to 0.15.5-37, that will solve the OUI error.
    : Let me know if you solve any of your problems.
    : Chris Russell (guest) wrote:
    : : I can not get Oracle 8.1.5 to install onto Linux RedHat 6.1.
    : The
    : : Oracle installation script generates several errors. I have
    : : tried several attempts, using different options, but they all
    : : generate errors.
    : : Please help. The Oracle Installation scripts appear to be
    very
    : : buggy... or perhaps they are incompatible with the standard
    : : RedHat 6.1 release. Either way, it is very frustrating.
    : : I have documented one of my (failed) installation attempts
    : below.
    : : Does anyone have any words of wisdom?
    : : I am installing Oracle onto a Dell Latitude CPi PC w/ 128MB
    : RAM,
    : : a 366MHz Pentium II, and RedHat 6.1 (using the standard Linux
    : : 2.2.12-2 kernel). RedHat was installed using the standard
    : "Gnome
    : : Workstation" configuration.
    : : The Oralce CD is labeled:
    : : "Oralce 8i Enterprise Edition
    : : Release 8.1.5
    : : for Linux
    : : (c) Oracle Corporation 1999"
    : : I got this CD about one week ago at Oracle OpenWorld '99 in
    Los
    : : Angeles... it should be their "latest & greatest" version so
    : far.
    : : 1. Pre-Installation and ./runInstall
    : : I created an "oracle" Unix account w/ groups "oinstall" (the
    : : primary group) and "dba" (a secondary group).
    : : I created directories /u01 through /u04, belonging to oracle.
    : : I setup .cshrc and sourced it, containing:
    : : umask 022
    : : setenv DISPLAY `hostname`:0
    : : xhost +
    : : setenv ORACLE_BASE /u01/app/oracle
    : : setenv ORACLE_HOME ${ORACLE_BASE}/product/8.1.5
    : : setenv ORACLE_SID cprtest
    : : setenv PATH ${ORACLE_HOME}/bin:${PATH}
    : : setenv LD_LIBRARY_PATH ${ORACLE_HOME}/lib
    : : setenv NLS_LANG US7ASCII
    : : I downloaded jre116_v5 and installed to /usr/local/jre.
    : : Finally, I executed (from the "oracle" Unix account):
    : : cd /mnt/cdrom
    : : ./runInstall
    : : Problem: I got the error (from ./runInstall):
    : : Initializing Java Virtual Machine from
    : /usr/local/jre/bin/jre.
    : : Please wait...
    : : Error in CreateOUIProcess(): -1
    : : : Bad address
    : : Workaround: Executed the following commands instead:
    : : cd /mnt/cdrom/install/linux
    : : ./runIns.sh
    : : 3. runIns.sh and root.sh
    : : I selected the following options (from ./runIns.sh):
    : : Source: /mnt/cdrom/stage/products.jar
    : : Destination: /u01/app/oracle/product/8.1.5
    : : Oracle 8i Enterprise Edition 8.1.5.0.0
    : : Typical (585MB)
    : : Installable Components: Oralce Intelligent Agent 8.1.5.0.0
    : : Global Database Name: cprtest.parkrussell.com
    : : SID: cprtest
    : : Directory for Database Files: /u02
    : : Then (when instructed by ./runIns.sh), I attempted to execute
    : : (from the
    : : "root" Unix account):
    : : cd /u01/app/oracle/product/8.1.5
    : : ./root.sh
    : : Problem: I got the error:
    : : "bash: ./root.sh: Permission denied"
    : : The execute bit was not set.
    : : Workaround: I executed:
    : : chmod a+x root.sh
    : : ./root.sh
    : : 5. Configuration Tools
    : : The Oracle Installer (./runIns.sh) attempted to execute:
    : : A. Net8 Configuration Agent
    : : B. Oracle Database Configuration Agent
    : : Problem: The "Oracle Database Configuration Agent" failed
    with
    : : the following error message:
    : : "One or more tools have failed. It is recommended but not
    : : required that these tools succeed for this installation.
    : : You can now select these tools, read its details to
    examine
    : : why they have failed, fix those problems, and retry them.
    : : Or, you can click "Next" to continue."
    : : When I selected the "Oracle Database Configuration Agent" for
    : : more info, I got the following additional details (as the
    cause
    : : of the error):
    : : "A required command line argument is missing."
    : : The log file
    : : "/u01/app/oracle/oraInventory/logs/installActions.log"
    : recorded:
    : : "Command which is being spawned is /usr/local/jre/bin/jre
    : : -Duser.dir=/u01/app/oracle/product/8.1.5/assistants/dbca/jlib
    : : -classpath
    /usr/local/jre/lib/rt.jar:/u01/app/oracle/product/8.1.5/jlib/ewt-
    : 3_1_10.jar:/u01/app/oracle/product/8.1.5/jlib/share-
    1_0_6.jar:/u01/app/oracle/product/8.1.5/assistants/dbca/jlib/DBAs
    sist.jar:/u01/app/oracle/product/8.1.5/assistants/jlib/jnls.jar:/
    u01/app/oracle/product/8.1.5/assistants/jlib/ACC.JAR:/u01/app/ora
    : cle/product/8.1.5/jlib/help-
    : 3_0_7.jar:/u01/app/oracle/product/8.1.5/jlib/oracle_ice-
    4_03_3.jar:/u01/app/oracle/product/8.1.5/jlib/HotJavaBean.jar:/u0
    1/app/oracle/product/8.1.5/jlib/netcfg.jar:/usr/local/jre/lib/i18
    : n.jar
    : : DBCreateWizard /createtype seed /numusers NO_VALUE /apptype
    : : NO_VALUE /cartridges NO_VALUE /options NO_VALUE /demos
    NO_VALUE
    : : /seedloc NO_VALUE /sid cprtest /orahome
    : : /u01/app/oracle/product/8.1.5 /orabase /u01/app/oracle /dbloc
    : : /u02 /clususer NO_VALUE /cluspswd NO_VALUE /nodeinfo NO_VALUE
    : : /gdbName cprtest.parkrussell.com
    : : Invalid Exit Code. The following result code will be used
    for
    : : configuration tool: 1
    : : Configuration tool Oracle Database Configuration Assistant
    : : failed"
    : : Workaround: There is obviously nothing I can do to fix this
    : : problem. It appears to be an internal bug in ./runIns.sh.
    : : Therefore, I selected "Next" and executed "dbassist"
    directly.
    : : 6. dbassist
    : : I executed:
    : : dbassist
    : : Problem: I got the following error:
    : : "JNLS Execution:oracle.ntpg.jnls.JNLSException
    : : Unable to find any National Character Sets. Please
    : : check your Oracle installation."
    : : Workaround: Press "OK" and ignore the error.
    : : 7. dbassist (cont.)
    : : I selected the following options:
    : : Create database
    : : Typical
    : : Copy existing database files from the CD
    : : Global Database Name: cprtest.parkrussell.com
    : : SID: cprtest
    : : Problem: I got the following error:
    : : "CD-ROM drive not detected on this system.
    : : Database not created."
    : : (Note: I've been running the installation scripts from the
    : : CDROM drive this entire time. "df" shows the CDROM drive
    : : mounted on /mnt/cdrom. "ls /mnt/cdrom" works too.)
    : : Workaround: Abort (which generated the additional error:
    : "Unable
    : : to create database. DBCA-00003: No CD-ROM drive detected.")
    : and
    : : run dbassist again, this time using different parameters.
    : : 8. dbassist, again
    : : I executed "dbassist" again and selected the following
    options:
    : : Create database
    : : Typical
    : : Create new database files
    : : Hybrid
    : : Concurrently connected users: 5
    : : Options: Oralce interMedia, Oralce JServer, and iM demos
    : : Global Database Name: cprtest2.parkrussell.com
    : : SID: cprtest2
    : : Create database now
    : : Problem: I got the following error:
    : : "ORA-01012: not logged on"
    : : Workaround: Try, try again.
    : : 9. dbassist, one last time
    : : Executed "dbassist" once more and selected the following
    : options:
    : : Create database
    : : Typical
    : : Create new database files
    : : Hybrid
    : : Concurrently connected users: 5
    : : Options: Oralce interMedia, Oralce JServer, and interMedia
    : : demos
    : : Global Database Name: cprtest3.parkrussell.com
    : : SID: cprtest3
    : : Output creation script
    : : Then, I executed (from the "oracle" Unix account):
    : : cd /u01/app/oracle/product/8.1.5/install
    : : setenv ORACLE_SID cprtest3
    : : ./sqlcprtest3.sh
    : : Problem: I got the following output:
    : : "Oracle Server Manager Release 3.1.5.0.0 - Production
    : : (c) Copyright 1997, Oracle Corporation. All Rights
    Reserved.
    : : Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
    : : With the Partitioning and Java options
    : : PL/SQL Release 8.1.5.0.0 - Production
    : : SVRMGR> SVRMGR> Connected.
    : : SVRMGR> ORACLE instance started.
    : : ORA-01012: not logged on
    : : SVRMGR> 2> 3> 4> 5> 6> 7>
    : : 8> 9> CREATE DATABASE "cprtest3"
    : : ORA-01012: not logged on
    : : SVRMGR> Disconnected."
    : : Workaround: Beats me.
    : : 10. sqlplus
    : : I attempted to execute sqlplus, but got the following error
    : : message:
    : : "/u01/app/oracle/product/8.1.5/bin/sqlplus: Permission
    : denied."
    : : The execute bit was not set.
    : : Workaround: I executed:
    : : chmod a+x /u01/app/oracle/product/8.1.5/bin/sqlplus
    : : sqlplus
    : : I gave up for now... there were just too many things wrong
    with
    : : this installation, starting with the very first command I was
    : : supposed to execute (./runInstaller).
    : : I can't fathom why Oracle's installation script has so many
    : bugs.
    : : Am I just doing something terribly wrong?
    : : Please help.
    null

  • Error while opening a component in ACC

    I am getting error while trying to open component in ACC. I can the component is running, but when tried to open it (either thro Open component or by double clicking on it) am getting the following error.
    Any idea on the cause of this error?
    Server exception:
    java.lang.ClassNotFoundException: com.package.MyComponent
    at atg.nucleus.SimpleComponentState.readObject(SimpleComponentState.java:593)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:306)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:155)
    at atg.rmi.context.ContextualSkeletonImpl_Stub.invoke(Unknown Source)
    at atg.rmi.context.ContextualStub.invokeSkeleton(ContextualStub.java:121)
    at atg.security.proxy.UserSessionProxy$SessionStubHandler.invoke(UserSessionProxy.java:180)
    at atg.rmi.context.ContextualStub.invoke(ContextualStub.java:95)
    at $Proxy2.getConfigInfo(Unknown Source)
    at atg.ui.component.model.ComponentClientImpl.getConfigInfo(ComponentClientImpl.java:352)
    at atg.ui.component.ComponentEditor.showComponentEditor(ComponentEditor.java:214)
    at atg.ui.component.ComponentEditor.showComponentEditor(ComponentEditor.java:198)
    at atg.ui.component.ComponentBrowser.editSelectedComponent(ComponentBrowser.java:748)
    at atg.ui.component.ComponentBrowser$EditAction.actionPerformed(ComponentBrowser.java:735)
    at atg.ui.common.DevTree$MousePopupAdapter.applyDefaultAction(DevTree.java:266)
    at atg.ui.common.DevTree$MousePopupAdapter.mouseClicked(DevTree.java:289)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:253)
    at java.awt.Component.processMouseEvent(Component.java:6266)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6028)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4247)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Client exception:
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
    java.lang.ClassNotFoundException: com.package.MyComponent
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:178)
    at atg.rmi.context.ContextualSkeletonImpl_Stub.invoke(Unknown Source)
    at atg.rmi.context.ContextualStub.invokeSkeleton(ContextualStub.java:121)
    at atg.security.proxy.UserSessionProxy$SessionStubHandler.invoke(UserSessionProxy.java:180)
    at atg.rmi.context.ContextualStub.invoke(ContextualStub.java:95)
    at $Proxy2.getConfigInfo(Unknown Source)
    at atg.ui.component.model.ComponentClientImpl.getConfigInfo(ComponentClientImpl.java:352)
    at atg.ui.component.ComponentEditor.showComponentEditor(ComponentEditor.java:214)
    at atg.ui.component.ComponentEditor.showComponentEditor(ComponentEditor.java:198)
    at atg.ui.component.ComponentBrowser.editSelectedComponent(ComponentBrowser.java:748)
    at atg.ui.component.ComponentBrowser$EditAction.actionPerformed(ComponentBrowser.java:735)
    at atg.ui.common.DevTree$MousePopupAdapter.applyDefaultAction(DevTree.java:266)
    at atg.ui.common.DevTree$MousePopupAdapter.mouseClicked(DevTree.java:289)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:253)
    at java.awt.Component.processMouseEvent(Component.java:6266)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6028)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4630)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4247)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2478)
    at java.awt.Component.dispatchEvent(Component.java:4460)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.lang.ClassNotFoundException: com.package.MyComponent
    at atg.nucleus.SimpleComponentState.readObject(SimpleComponentState.java:593)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:306)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:155)
    ... 33 more
    Edited by: Gopinath Ramasamy on Sep 3, 2012 1:32 PM

    If you have everything else in place then you may also try to check RMI specific java system property "java.rmi.server.codebase". Try adding the JAR containing your classes into the server's RMI codebase system property as "-Djava.rmi.server.codebase=http://myapp/classes.jar" in the java options of your server startup script. But you should first check what is the existing codebase value and then can specify additional JARs if you feel they should be made available for download to client. Refer http://docs.oracle.com/javase/1.5.0/docs/guide/rmi/codebase.html
    You also mentioned about accessing component through REST call. Can you elaborate a little more on the whole environment and scenario that how/where exactly you are using ACC to view that component?

  • Unable to boot bankapp servers with Oracle 8.1.7 in windows2000

    Hello,I tried to run bankapp examples with oracle 8.1.7 in windows2000. But when
    I booted the servers using tmboot, there are some errors.(1)I used the following
    RM entries:Oracle_XA;xaosw;D:\Oracle\Ora81\precomp\lib\msvc\oraSQL8.lib D:\Oracle\Ora81\precomp\lib\msvc\oraSQX8.lib
    D:\Oracle\Ora81\RDBMS\xa\ORAXA8.lib (2)The OPENINFO string in the ubbshm file
    is:DEFAULT:TMSNAME=TMS_ORA TMSCOUNT=2 LMID=SITE1
    BANKB1     GRPNO=1 OPENINFO="Oracle_XA:Oracle_XA+Acc=P/scott/tiger+SesTm=100+LogDir=.+MaxCur=5"(3)the
    follow is the error message when I booted the servers:
    .. 174841.GLOBALDB!BALC.852.2572.0: 07-26-2001: Tuxedo Version 8.0 32-bit Windows.
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:262: INFO: Standard main starting
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open
    returned XAER_RMERR
    174841.GLOBALDB!BALC.852.2572.0: tpsvrinit: failed to open database due to
    174841.GLOBALDB!BALC.852.2572.0: tpopen failed, tperrno: 16
    174841.GLOBALDB!BALC.852.2572.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    174841.GLOBALDB!tmboot.480.548.-2: CMDTUX_CAT:825: ERROR: Process BALC at SITE1
    failed with /T tperrno (TPERMERR - resource manager error) ...
    Can anyone help? Thanks a lot!
    Best Regards
    Lily

    I found the answer myself in an earlier post.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by The Oracle Reports Team:
    Reports 6i will connect to Oracle8i, however you need to connect over Net8 - i.e. on the database side, you need to set up the TNS listener to accept connections, and on the Reports side (which, incidentally, needs to be installed in a separate Oracle_home) you need to configure the tnsnames.ora file to connect to the 'remote' database (since it is in a different oracle_home, to all intents and purposes it may as well be on another machine - it's all considered 'remote').
    Regards
    The Oracle Reports Team http://technet.oracle.com <HR></BLOCKQUOTE>
    null

  • SAP MMC  disk + work Stop(Ecc6( Adap+jav),win 2003 -32 bit , oracle-10.2)

    Hi Friends,
    I hope somebody can help.
    I have an Ides Ecc6(java+adap) installation on Oracle 10..*.os win 2003 32 bit
    Then I try to start the System in mmc the dispatcher is stopping (first yeloow then grey) and no error  messages
    when is see sys log in SAP MMC
    erro: SAP-Basis System: Initialization           DB-Connect Failed, Return Code  000256
    when i try R3trans-d
    Log:
    C:\Documents and Settings\accadm>r3trans -d
    This is r3trans version 6.14 (release 700 - 15.06.07 - 15:50:00)
    unicode enabled version
    2EETW000 sap_dext called with msgnr "2":
    2EETW000 -
    db call info -
    2EETW000 function:   db_ntab
    2EETW000 fcode:      NT_RDTDESCR
    2EETW000 tabname:    TADIR
    2EETW000 len (char): 5
    2EETW000 key:        TADIR
    2EETW000 retcode:    2
    r3trans finished (0012)
    Dev_wo.lo file
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Thu Apr 16 14:07:43 2009
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\ACC\DVEBMGS00\exe\dboraslib.dll' ...
    B  Library 'D:\usr\sap\ACC\DVEBMGS00\exe\dboraslib.dll' loaded
    B  Version of 'D:\usr\sap\ACC\DVEBMGS00\exe\dboraslib.dll' is "700.08", patchlevel (0.107)
    B  New connection 0 created
    M sysno      00
    M sid        ACC
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    111
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        3724
    M
    M  kernel runs with dp version 229000(ext=109000) (@(#) DPLIB-INT-VERSION-229000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3724) [dpxxdisp.c   1301]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Thu Apr 16 14:07:44 2009
    M  DpShMCreate: sizeof(wp_adm)          18672     (1436)
    M  DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1536)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 06810040, size: 4892312)
    M  DpShMCreate: allocated sys_adm at 06810040
    M  DpShMCreate: allocated wp_adm at 06812090
    M  DpShMCreate: allocated tm_adm_list at 06816980
    M  DpShMCreate: allocated tm_adm at 068169B0
    M  DpShMCreate: allocated wp_ca_adm at 06C1FDF0
    M  DpShMCreate: allocated appc_ca_adm at 06C25BB0
    M  DpShMCreate: allocated comm_adm at 06C27AF0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 06CA89B0
    M  DpShMCreate: allocated gw_adm at 06CA89F0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 06CA8A20
    M  DpShMCreate: allocated wall_adm at 06CA8A28
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host oiam

    M Thu Apr 16 14:07:46 2009
    M  calling db_connect ...
    C  Prepending D:\usr\sap\ACC\DVEBMGS00\exe to Path.
    C  Oracle Client Version: '10.2.0.1.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@ACC on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06DF1478   06DF6A14   06DF629C
    C  Attaching to DB Server ACC (con_hdl=0,svchp=06DF61E8,srvhp=06E07DD4)
    C  Starting user session (con_hdl=0,svchp=06DF61E8,srvhp=06E07DD4,usrhp=06E53768)
    C  Now '/@ACC' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=06DF61E8,usrhp=06E53768)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@ACC on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1   06DF1478   06DF6A14   06DF629C
    C  Starting user session (con_hdl=0,svchp=06DF61E8,srvhp=06E07DD4,usrhp=06E53768)
    C  Now 'SAPSR3/<pwd>@ACC' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance ACC is running on OIAM with ORACLE version 10.2.0.1.0 since APR 16, 2009, 14:07:26
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20090416 140746 OIAM           
    C  OCI-call failed with -1=OCI_ERROR
    C     SQL error 376: 'ORA-00376: file 25 cannot be read at this time
    C  ORA-01110: data file 25: 'D:\ORACLE\ACC\SAPDATA1\SR3_22\SR3.DATA22''
    C  *** ERROR => Error 376 in stmt_fetch() from oci_execute_stmt(), orpc=0
    [dbsloci.c    12714]
    C  *** ERROR => ORA-376 occurred when executing SQL stmt (parse error offset=0)
    [dbsloci.c    12733]
    C  sc_p=06D44E98,no=0,idc_p=00000000,con=0,act=1,slen=26,smax=256,#vars=0,stmt=06E1C138,table=SVERS                        
    C  SELECT VERSION FROM SVERS ;
    C  sc_p=06D44E98,no=0,idc_p=00000000,con=0,act=1,slen=26,smax=256,#vars=0,stmt=06E1C138,table=SVERS                        
    C  prep=0,lit=0,nsql=0,lobret=0,#exec=1,dbcnt=0,upsh_p=00000000,ocistmth_p=06E0FC68
    C  IN : cols=0,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=-1,rsize=0,vmax=0,bound=0,iobuf_p=00000000,vda_p=00000000
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  OUT: cols=1,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=0,upto=-1,rsize=144,vmax=32,bound=1,iobuf_p=003F2DC8,vda_p=06E1C3A8
    C       lobs=0,lmax=0,lpcnt=0,larr=00000000,lcurr_p=00000000,rret=0
    C  SELECT VERSION FROM SVERS ;
    B  ***LOG BZA=> table SVERS      does not exist on database            [dblink#3 @ 1299] [dblink  1299 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 004096) [thxxhead.c   1426]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10283]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    req.vm = no VM
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server oiam_ACC_00 on host oiam (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Apr 16 14:07:46 2009
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10486
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3724) [dpnttool.c   327]
    thanks for support
    keshava

    Hi Rohit
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        ACC
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    111
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        3452
    Fri Apr 17 14:17:27 2009
    kernel runs with dp version 229000(ext=109000) (@(#) DPLIB-INT-VERSION-229000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3452) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 111 successfully loaded
         shared lib "dw_xtc.dll" version 111 successfully loaded
         shared lib "dw_stl.dll" version 111 successfully loaded
         shared lib "dw_gui.dll" version 111 successfully loaded
         shared lib "dw_mdm.dll" version 111 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Fri Apr 17 14:17:32 2009
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0225.qqq.nxst) took 5 seconds
    Fri Apr 17 14:17:36 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >oiam_ACC_00                             <
    DpShMCreate: sizeof(wp_adm)          18672     (1436)
    DpShMCreate: sizeof(tm_adm)          4232256     (21056)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1536)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06810040, size: 4892312)
    DpShMCreate: allocated sys_adm at 06810040
    DpShMCreate: allocated wp_adm at 06812090
    DpShMCreate: allocated tm_adm_list at 06816980
    DpShMCreate: allocated tm_adm at 068169B0
    DpShMCreate: allocated wp_ca_adm at 06C1FDF0
    DpShMCreate: allocated appc_ca_adm at 06C25BB0
    DpShMCreate: allocated comm_adm at 06C27AF0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 06CA89B0
    DpShMCreate: allocated gw_adm at 06CA89F0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 06CA8A20
    DpShMCreate: allocated wall_adm at 06CA8A28
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    Fri Apr 17 14:17:37 2009
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3652
      argv[0] = D:\usr\sap\ACC\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\ACC\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\ACC\SYS\profile\ACC_DVEBMGS00_oiam
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1045
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=ACC
      argv[7] = -DSAPMYNAME=oiam_ACC_00
      argv[8] = -DSAPPROFILE=D:\usr\sap\ACC\SYS\profile\ACC_DVEBMGS00_oiam
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1629]
    ***LOG Q0K=> DpMsAttach, mscon ( oiam) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >oiam_ACC_00                             <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 111
    Release check o.K.
    Fri Apr 17 14:17:38 2009
    DpJ2eeLogin: j2ee state = CONNECTED
    Fri Apr 17 14:18:25 2009
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Fri Apr 17 14:19:53 2009
    J2EE server info
      start = TRUE
      state = ACTIVE
      pid = 3652
      http = 50000
      https = 50001
      load balance = 1
      start_lazy = 0
      start_control = SAP J2EE startup framework

  • Installation of Oracle APPS 11 on Windows XP Professional

    Dear all,
    I downloaded all the zip files needed for Oracle APPS 11 from edelivery.oracle.com
    Now I'm trying to install the package but I get stuck on an error. I already installed DeVC++ (in folder C:\VC98) and installed ActivePerl.
    During rapidwiz alle the zipfiles are being unzipped and after that I get the following error:
    RW50004: Error code received when running external process. Check log file for details.
    Running database install driver for VIS instance
    The log file shows me the following:
    Hope you can help me with this.
    Greetings,
    Charif
    Oracle Applications Rapid Install Wizard Install log
    >> Using Rapid Wizard Version : 11.5.10.35
    >> Install session started : Fri May 02 12:05:34 CEST 2008
    >> Rapid Wizard source location : E:\oracleextract2\startCD\Disk1\rapidwiz
    >> Command Line arguments for this execution :
    =================================================================
    Install Session Information
    Host Name : server.charif.nl
    Host Operating System : Windows
    User running Install : Administrator
    =================================================================
    InstUpgPanel
         User action : Install Oracle Applications
         Install type : Standard Install
    InstallPanel
         User action : Create configuration file
         Description : To create a new intance cofiguration.
    NumNodesPanel
         Install type : Single node Install
         Description : Installs all the services on a single node.
    InstallSidPanel
         Database type : Vision Demo Database
         Database name : VIS
    RdbmsPanel
         Derived Mount Points :
              Base Install directory : c:\oracle
              Oracle Home : c:\oracle\visdb\9.2.0
              Data Top (SYS) : c:\oracle\visdata
              Data Top (LOG) : c:\oracle\visdata
              Data Top (TXN) : c:\oracle\visdata
              Data Top (ARCHIVE) : c:\oracle\visdata
    MtierInfoPanel
         Configuration Information for Node - server - Admin Server / Concurrent Mgr / Forms Server / Web Server
              Derived Mount Points :
                   MKS directory : C:\cygwin\bin
                   MSDEV directory : C:\VC98
                   Base Install directory : c:\oracle
                   APPL_TOP Mount point : c:\oracle\visappl
                   APPL_TOP aux. 1 : c:\oracle\visappl
                   APPL_TOP aux. 2 : c:\oracle\visappl
                   APPL_TOP aux. 3 : c:\oracle\visappl
                   COMMON_TOP : c:\oracle\viscomn
                   8.0.6 ORACLE_HOME : c:\oracle\visora\8.0.6
                   iAS ORACLE_HOME : c:\oracle\visora\iAS
                   Temp Directory : c:\oracle\viscomn\temp
    PortPanel
              Selected port pool :
                   Domain Name : charif.nl
                   Database Port : 1521
                   RPC Port : 1626
                   Reports Port : 7000
                   Web Listener Port : 8000
                   OProcMgr Port : 8100
                   Web PLSQL Port : 8200
                   Servlet Port : 8800
                   Forms Listener Port : 9000
                   Metrics Server Data Port : 9100
                   Metrics Server Req. Port : 9200
                   JTF Fulfillment Server Port : 9300
                   Map Viewer Servlet Port : 9800
                   OEM Web Utility Port : 10000
                   VisiBroker OrbServer Agent Port : 10100
                   MSCA Server Port : 10200
                   MSCA Dispatcher Port : 10300
                   Java Object Cache Port : 12345
                   OACORE Servlet Port Range : 16000-16009
                   Discoverer Servlet Port Range : 17000-17009
                   Forms Servlet Port Range : 18000-18009
                   XMLSVCS Servlet Port Range : 19000-19009
    AppsConfig temp dir set to: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    ConfigFilePanel
              Setting temp directory to : C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp <-> C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
              Writing configuration file to : C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\config.txt
    Port Availability Check :
    Database Port Value = 1521...... Available
    RPC Port Value = 1626...... Available
    Forms Listener Port Value = 9000...... Available
    Metrics Server Port Value = 9100...... Available
    Metrics Client Port Value = 9200...... Available
    Forms Servlet Port Range Value = 18000...... Available
    Forms Servlet Port Range Value = 18001...... Available
    Forms Servlet Port Range Value = 18002...... Available
    Forms Servlet Port Range Value = 18003...... Available
    Forms Servlet Port Range Value = 18004...... Available
    Forms Servlet Port Range Value = 18005...... Available
    Forms Servlet Port Range Value = 18006...... Available
    Forms Servlet Port Range Value = 18007...... Available
    Forms Servlet Port Range Value = 18008...... Available
    Forms Servlet Port Range Value = 18009...... Available
    Report Listener Port Value = 7000...... Available
    Web Listener Port Value = 8000...... Available
    Web Listener PLSQL Port Value = 8200...... Available
    Servlet Port Value = 8800...... Available
    JTF Fulfillment Server Port Value = 9300...... Available
    Map Viewer Servlet Port Value = 9800...... Available
    OEM Web Utility Port Value = 10000...... Available
    VisiBroker OrbServer Agent Port Value = 10100...... Available
    MSCA Server Port Value = 10200...... Available
    MSCA Dispatcher Port Value = 10300...... Available
    OACORE Servlet Port Range Value = 16000...... Available
    OACORE Servlet Port Range Value = 16001...... Available
    OACORE Servlet Port Range Value = 16002...... Available
    OACORE Servlet Port Range Value = 16003...... Available
    OACORE Servlet Port Range Value = 16004...... Available
    OACORE Servlet Port Range Value = 16005...... Available
    OACORE Servlet Port Range Value = 16006...... Available
    OACORE Servlet Port Range Value = 16007...... Available
    OACORE Servlet Port Range Value = 16008...... Available
    OACORE Servlet Port Range Value = 16009...... Available
    Discoverer Servlet Port Range Value = 17000...... Available
    Discoverer Servlet Port Range Value = 17001...... Available
    Discoverer Servlet Port Range Value = 17002...... Available
    Discoverer Servlet Port Range Value = 17003...... Available
    Discoverer Servlet Port Range Value = 17004...... Available
    Discoverer Servlet Port Range Value = 17005...... Available
    Discoverer Servlet Port Range Value = 17006...... Available
    Discoverer Servlet Port Range Value = 17007...... Available
    Discoverer Servlet Port Range Value = 17008...... Available
    Discoverer Servlet Port Range Value = 17009...... Available
    XMLSVCS Servlet Port Range Value = 19000...... Available
    XMLSVCS Servlet Port Range Value = 19001...... Available
    XMLSVCS Servlet Port Range Value = 19002...... Available
    XMLSVCS Servlet Port Range Value = 19003...... Available
    XMLSVCS Servlet Port Range Value = 19004...... Available
    XMLSVCS Servlet Port Range Value = 19005...... Available
    XMLSVCS Servlet Port Range Value = 19006...... Available
    XMLSVCS Servlet Port Range Value = 19007...... Available
    XMLSVCS Servlet Port Range Value = 19008...... Available
    XMLSVCS Servlet Port Range Value = 19009...... Available
    Operating System Check
    command : cmd.exe /c E:\oracleextract2\startCD\Disk1\rapidwiz\bin\checkOS.cmd
    E:\oracleextract2\startCD\Disk1\rapidwiz>echo off
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\Administrator\Application Data
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=SERVER
    ComSpec=C:\WINDOWS\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\Administrator
    LOGONSERVER=\\SERVER
    NUMBER_OF_PROCESSORS=1
    OS=Windows_NT
    Path=C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem; C:\cygwin\bin\;
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 8, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0f08
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    SESSIONNAME=Console
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    USERDOMAIN=SERVER
    USERNAME=Administrator
    USERPROFILE=C:\Documents and Settings\Administrator
    windir=C:\WINDOWS
    Operating System patch/version test has succeeded
    O/S User and Group Check
    Domain=SERVER
    ,Username=Administrator
    ,PC-Name=SERVER
    User belongs to the Administrators Group.
    Port Uniqueness Check :
    All ports are unique.
    File System Check :
    Database ORACLE_HOME created:
    Mount Point = c:\oracle\visdb\9.2.0
    Database ORACLE_HOME admin folder created:
    Mount Point = c:\oracle\visdb\9.2.0\appsutil
    Database ORACLE_HOME temp folder created:
    Mount Point = c:\oracle\visdb\9.2.0\appsutil\temp
    Database Install Log Directory created:
    Mount Point = c:\oracle\visdb\9.2.0\appsutil\log\VIS_server
    Database Install Out Directory created:
    Mount Point = c:\oracle\visdb\9.2.0\appsutil\out\VIS_server\templbac
    Database System File Directory created:
    Mount Point = c:\oracle\visdata
    Database Log File Directory available:
    Mount Point = c:\oracle\visdata
    Database Transaction File Directory available:
    Mount Point = c:\oracle\visdata
    Database Archive File Directory available:
    Mount Point = c:\oracle\visdata
    APPL_TOP created:
    Mount Point = c:\oracle\visappl
    APPL_TOP admin created:
    Mount Point = c:\oracle\visappl\admin
    APPL_TOP mount 2 available:
    Mount Point = c:\oracle\visappl
    APPL_TOP mount 3 available:
    Mount Point = c:\oracle\visappl
    APPL_TOP mount 4 available:
    Mount Point = c:\oracle\visappl
    COMMON_TOP created:
    Mount Point = c:\oracle\viscomn
    JAVA_TOP created:
    Mount Point = c:\oracle\viscomn\java
    PORTAL_TOP created:
    Mount Point = c:\oracle\viscomn\portal
    Temp Directory created:
    Mount Point = c:\oracle\viscomn\temp
    APPL_TOP admin Install Log Directory created:
    Mount Point = c:\oracle\visappl\admin\VIS_server\log
    APPL_TOP admin Install Out Directory created:
    Mount Point = c:\oracle\visappl\admin\VIS_server\out\templbac
    Apps ORACLE_HOME created:
    Mount Point = c:\oracle\visora\iAS
    Tools ORACLE_HOME created:
    Mount Point = c:\oracle\visora\8.0.6
    File Space Check :
    Disk space on system acceptable :
    Database ORACLE_HOME = c:\oracle\visdb\9.2.0
    required = 2800.0
    actual = 133092.33984375
    Disk space on system acceptable :
    Database System File Directory = c:\oracle\visdata
    required = 12009.0
    actual = 130292.33984375
    Disk space on system acceptable :
    Database Log File Directory = c:\oracle\visdata
    required = 160.0
    actual = 118283.33984375
    Disk space on system acceptable :
    Database Transaction File Directory = c:\oracle\visdata
    required = 28438.0
    actual = 118123.33984375
    Disk space on system acceptable :
    Database Archive File Directory = c:\oracle\visdata
    required = 20186.0
    actual = 89685.33984375
    Disk space on system acceptable :
    APPL_TOP = c:\oracle\visappl
    required = 5388.0
    actual = 69499.33984375
    Disk space on system acceptable :
    APPL_TOP mount 2 = c:\oracle\visappl
    required = 2664.0
    actual = 64111.33984375
    Disk space on system acceptable :
    APPL_TOP mount 3 = c:\oracle\visappl
    required = 4667.0
    actual = 61447.33984375
    Disk space on system acceptable :
    APPL_TOP mount 4 = c:\oracle\visappl
    required = 2157.0
    actual = 56780.33984375
    Disk space on system acceptable :
    COMMON_TOP = c:\oracle\viscomn
    required = 2207.0
    actual = 54623.33984375
    Disk space on system acceptable :
    Apps ORACLE_HOME = c:\oracle\visora\iAS
    required = 1130.0
    actual = 52416.33984375
    Disk space on system acceptable :
    Tools ORACLE_HOME = c:\oracle\visora\8.0.6
    required = 2425.0
    actual = 51286.33984375
    Host/Domain Check
    command : ping -n 1 server
    Pingen naar server.charif.nl [192.168.160.132] met 32 byte gegevens:
    Antwoord van 192.168.160.132: bytes=32 tijd=5 ms TTL=128
    Ping-statistieken voor 192.168.160.132:
    Pakketten: verzonden = 1, ontvangen = 1, verloren = 0
    (0% verlies).De gemiddelde tijd voor het uitvoeren van ‚‚n bewerking in milliseconden:
    Minimum = 5ms, Maximum = 5ms, Gemiddelde = 5ms
    host ping has succeeded
    command : ping -n 1 server.charif.nl
    Pingen naar server.charif.nl [192.168.160.132] met 32 byte gegevens:
    Antwoord van 192.168.160.132: bytes=32 tijd<1 ms TTL=128
    Ping-statistieken voor 192.168.160.132:
    Pakketten: verzonden = 1, ontvangen = 1, verloren = 0
    (0% verlies).De gemiddelde tijd voor het uitvoeren van ‚‚n bewerking in milliseconden:
    Minimum = 0ms, Maximum = 0ms, Gemiddelde = 0ms
    host.domain ping has succeeded
    OS Patch Checks
    running command : OSPatchCheck.checkPatch()
    OS = Windows XP OSVersion = 5.1
    No Patch Information available for this Platform
    System Utilities Check
    command : cmd.exe /c E:\oracleextract2\startCD\Disk1\rapidwiz\bin\adchkutl.cmd C:\cygwin\bin C:\VC98
    There was an error while running the command - cmd.exe /c E:\oracleextract2\startCD\Disk1\rapidwiz\bin\adchkutl.cmd C:\cygwin\bin C:\VC98
    C:\VC98\bin\vcvars32.bat wordt niet herkend als een interne
    of externe opdracht, programma of batchbestand.
    E:\oracleextract2\startCD\Disk1\rapidwiz>echo off
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    /usr/bin/cc
    'cc' is available.
    /usr/bin/link
    'link' is available.
    ERRORCODE = 0 ERRORCODE_END
    System Utilities Availability test has succeeded
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    DoInstallPanel - User continued install at warning dialog.
    Starting from Rapid Install Full Stage area E:\oracleextract2\oraDB\Disk1
    RapidWiz location: E:\oracleextract2\startCD\Disk1\rapidwiz
    Install Media location: E:\oracleextract2\startCD\Disk1
    APPL_TOP location: c:\oracle\visappl
    Database ORACLE_HOME: c:\oracle\visdb\9.2.0
    Database SID: VIS
    Database Context Name : VIS_server
    Creating 9.2.0 DB Context from E:\oracleextract2\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp to c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    instantiate file:
    source : E:\oracleextract2\startCD\Disk1\rapidwiz\etc\adxdbctx.tmp
    dest : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    instantiate file:
    source : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    dest : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    instantiate file:
    source : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    dest : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    instantiate file:
    source : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    dest : c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    instantiate file:
    source : c:\oracle\visdb\9.2.0\temp\restart.xml
    dest : c:\oracle\visdb\9.2.0\temp\restart.xml
    instantiate file:
    source : c:\oracle\visdb\9.2.0\temp\restart.xml
    dest : c:\oracle\visdb\9.2.0\temp\restart.xml
    Creating APPL_TOP Context from E:\oracleextract2\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp to c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : E:\oracleextract2\startCD\Disk1\rapidwiz\etc\adxmlctx.tmp
    dest : c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : c:\oracle\visappl\admin\VIS_server.xml
    dest : c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : c:\oracle\visappl\admin\VIS_server.xml
    dest : c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : c:\oracle\visappl\admin\VIS_server.xml
    dest : c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : c:\oracle\visappl\admin\VIS_server.xml
    dest : c:\oracle\visappl\admin\VIS_server.xml
    instantiate file:
    source : c:\oracle\viscomn\temp\restart.xml
    dest : c:\oracle\viscomn\temp\restart.xml
    instantiate file:
    source : c:\oracle\viscomn\temp\restart.xml
    dest : c:\oracle\viscomn\temp\restart.xml
    Processing DriverFile = E:\oracleextract2\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for E:\oracleextract2\startCD\Disk1\rapidwiz\template\adridb.drv
    Processing DriverFile = E:\oracleextract2\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for E:\oracleextract2\startCD\Disk1\rapidwiz\template\adriapps.drv
    Total number of processes in Current Install 5
    Processing DriverFile = E:\oracleextract2\startCD\Disk1\rapidwiz\template\adridb.drv
    Running Instantiation Drivers for E:\oracleextract2\startCD\Disk1\rapidwiz\template\adridb.drv
    Creation of Directory - C:\oracle\visdb\9.2.0\temp\VIS_server Succeeded.
    instantiate file:
    source : E:\oracleextract2\startCD\Disk1\rapidwiz\template\adrun9i.cmd
    dest : c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd
    backup : c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd to c:\oracle\visdb\9.2.0\appsutil\out\VIS_server\templbac\adrun9i.cmd
    instantiate file:
    source : E:\oracleextract2\startCD\Disk1\rapidwiz\template\adrundb.cmd
    dest : c:\oracle\visdb\9.2.0\temp\VIS_server\adrundb.cmd
    backup : c:\oracle\visdb\9.2.0\temp\VIS_server\adrundb.cmd to c:\oracle\visdb\9.2.0\appsutil\out\VIS_server\templbac\adrundb.cmd
    Step 0 of 5
    Command: c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd
    Processing Step 1 of 5
    Executing: c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd APPS APPS
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM $Header: adrun9i.cmd 115.31 2004/08/19 21:47:16 psaddi ship $
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM ###############################################################
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig. It will be read and
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM overwritten. If you were instructed to edit this file, or if you are not
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM able to use the settings created by AutoConfig, refer to Metalink document
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM 165195.1 for assistance.
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM ###############################################################
    E:\oracleextract2\startCD\Disk1\rapidwiz>REM
    E:\oracleextract2\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('DATE /T') DO (set date=%a )
    E:\oracleextract2\startCD\Disk1\rapidwiz>(set date=vr 02-05-2008 )
    E:\oracleextract2\startCD\Disk1\rapidwiz>FOR /F "delims==" %a IN ('TIME /T') DO (set time=%a )
    E:\oracleextract2\startCD\Disk1\rapidwiz>(set time=12:07 )
    E:\oracleextract2\startCD\Disk1\rapidwiz>ECHO STARTED INSTALL PHASE : 9I RDBMS : vr 02-05-2008 12:07
    STARTED INSTALL PHASE : 9I RDBMS : vr 02-05-2008 12:07
    E:\oracleextract2\startCD\Disk1\rapidwiz>SET JRE_PATH=E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\bin\java
    E:\oracleextract2\startCD\Disk1\rapidwiz>SET JRE_CP=.;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\lib\rt.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\lib\i18n.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\jnls.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\acc.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\netcfg.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\java
    E:\oracleextract2\startCD\Disk1\rapidwiz>SET XML_FILE=c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml
    E:\oracleextract2\startCD\Disk1\rapidwiz>SET PATH=E:\oracleextract2\startCD\Disk1\rapidwiz\unzip\NT;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem; C:\cygwin\bin\;
    E:\oracleextract2\startCD\Disk1\rapidwiz>SET EC=ERRORCODE
    E:\oracleextract2\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=1 )
    E:\oracleextract2\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Install 9i will only happen, if database is "db920"
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "db920" == "db920" goto :INSTALL_DB
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Installing 9i RDBMS
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "FALSE" == "c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd" (if not "FALSE" == "FALSE" (goto :FALSE ) else (goto :runProcess_1 ) )
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo "runProcess_1"
    "runProcess_1"
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Setting the driver file name
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>SET DRVNAME=gdb920.drv
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM install 9i
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo "Statusstring Installing 9i - E:\oracleextract2\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    "Statusstring Installing 9i - E:\oracleextract2\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv"
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\bin\java -mx512M -classpath .;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\RapidWiz.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\lib\rt.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jre\NT\1.4.2\lib\i18n.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\ewt-3_4_9.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\swingall-1_1_1.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\share-1_1_11.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\jnls.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\acc.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\help-3_1_8.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\oracle_ice-4_06_6.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\netcfg.jar;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\xmlparserv2.zip;E:\oracleextract2\startCD\Disk1\rapidwiz\jlib\java oracle.apps.ad.autoconfig.InstantiateFile -e c:\oracle\visdb\9.2.0\appsutil\VIS_server.xml -d E:\oracleextract2\startCD\Disk1\rapidwiz\driver\db\driver\gdb920.drv -pwd no_password_here -log c:\oracle\visdb\9.2.0\appsutil\log\VIS_server\dbInstall.log -nthreads 1 -verbose
    Enter the location of the CD labeled Oracle Applications Rapid Install - RDBMS Disk 1 :
    Checking Disk contents in - E:\oracleextract2\startCD\Disk1\rapidwiz
    Checking Disk contents in - E:\oracleextract2\oraDB\Disk1
    Checking Disk contents in - E:\oracleextract2\oraDB\Disk1
    UnzipCount:114
    Processing Disk1....
    Processing Disk2....
    Processing Disk3....
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 0 == 0 goto :DBINSTALL_OK
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo "runProcess_2"
    "runProcess_2"
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Update the oracle.key
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>call c:\oracle\visdb\9.2.0\appsutil\bin\adgenhnm.exe c:\oracle\visdb\9.2.0
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 1 == 0 goto :UPDKEY_OK
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo "Cannot update oracle.key for database ORACLE_HOME"
    "Cannot update oracle.key for database ORACLE_HOME"
    There was an error while running the command - c:\oracle\visdb\9.2.0\temp\VIS_server\adrun9i.cmd APPS APPS
    Toegang geweigerd.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    Het proces heeft geprobeerd naar een niet-bestaande sluis te schrijven.
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for VIS instance

    Dear hsawwan.
    dbinfrun.log doesn't exist
    and dbinstall.log shows the following (no errors?)
    Path Obtained by Instantiate FileE:\oracleextract2\oraDB\Disk1& Disk number = 1
    Processing E:\oracleextract2\oraDB\Disk1\db\driver\db920.drv file
    ================================================================
    Processing the contents of : Disk1
    Processing the driver file : E:\oracleextract2\oraDB\Disk1\db\driver\Disk1.drv
    UNZIPPING THE DISK1 CONTENTS
    UNZIP used: UnZip 5.52 of 28 February 2005, by Info-ZIP. Maintained by C. Spieler. Send
    Unzip0 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh49_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip0
    .end std out.
    .end err out.
    Unzip0 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh49_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip1 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh48_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip1
    .end std out.
    .end err out.
    Unzip1 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh48_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip2 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh50_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip2
    .end std out.
    .end err out.
    Unzip2 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh50_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip3 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh49_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip3
    .end std out.
    .end err out.
    Unzip3 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh49_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip4 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes0.zip at c:\oracle\visdb\9.2.0\
    Unzip4
    .end std out.
    .end err out.
    Unzip4 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip5 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh48_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip5
    .end std out.
    .end err out.
    Unzip5 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh48_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip6 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes1.zip at c:\oracle\visdb\9.2.0\
    Unzip6
    .end std out.
    .end err out.
    Unzip6 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip7 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh47_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip7
    .end std out.
    .end err out.
    Unzip7 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh47_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip8 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh63_oui.zip at c:\oracle\visdb\9.2.0\
    Unzip8
    .end std out.
    .end err out.
    Unzip8 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh63_oui.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip9 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh69_sysman.zip at c:\oracle\visdb\9.2.0\
    Unzip9
    .end std out.
    .end err out.
    Unzip9 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh69_sysman.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip10 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh54_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip10
    .end std out.
    .end err out.
    Unzip10 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh54_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip11 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh13_appsutil.zip at c:\oracle\visdb\9.2.0\
    Unzip11
    .end std out.
    .end err out.
    Unzip11 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh13_appsutil.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip12 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh51_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip12
    .end std out.
    .end err out.
    Unzip12 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh51_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip13 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh21_bin.zip at c:\oracle\visdb\9.2.0\
    Unzip13
    .end std out.
    .end err out.
    Unzip13 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh21_bin.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip14 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh45_network.zip at c:\oracle\visdb\9.2.0\
    Unzip14
    .end std out.
    .end err out.
    Unzip14 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh45_network.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip15 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh51_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip15
    .end std out.
    .end err out.
    Unzip15 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh51_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip16 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh3_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip16
    .end std out.
    .end err out.
    Unzip16 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh3_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip17 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh53_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip17
    .end std out.
    .end err out.
    Unzip17 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh53_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip18 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh11_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip18
    .end std out.
    .end err out.
    Unzip18 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh11_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip19 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes.zip at c:\oracle\visdb\9.2.0\
    Unzip19
    .end std out.
    .end err out.
    Unzip19 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh23_classes.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip20 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh12_appsoui.zip at c:\oracle\visdb\9.2.0\
    Unzip20
    .end std out.
    .end err out.
    Unzip20 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh12_appsoui.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip21 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh54_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip21
    .end std out.
    .end err out.
    Unzip21 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh54_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip22 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes.zip at c:\oracle\visdb\9.2.0\
    Unzip22
    .end std out.
    .end err out.
    Unzip22 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip23 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip23
    .end std out.
    .end err out.
    Unzip23 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip24 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh29_demo.zip at c:\oracle\visdb\9.2.0\
    Unzip24
    .end std out.
    .end err out.
    Unzip24 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh29_demo.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip25 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes0.zip at c:\oracle\visdb\9.2.0\
    Unzip25
    .end std out.
    .end err out.
    Unzip25 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip26 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip26
    .end std out.
    .end err out.
    Unzip26 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip27 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh1_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip27
    .end std out.
    .end err out.
    Unzip27 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh1_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip28 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh53_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip28
    .end std out.
    .end err out.
    Unzip28 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh53_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip29 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh46_oci.zip at c:\oracle\visdb\9.2.0\
    Unzip29
    .end std out.
    .end err out.
    Unzip29 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh46_oci.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip30 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh5_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip30
    .end std out.
    .end err out.
    Unzip30 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh5_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip31 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh50_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip31
    .end std out.
    .end err out.
    Unzip31 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh50_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip32 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh13_appsutil0.zip at c:\oracle\visdb\9.2.0\
    Unzip32
    .end std out.
    .end err out.
    Unzip32 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh13_appsutil0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip33 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh62_ord.zip at c:\oracle\visdb\9.2.0\
    Unzip33
    .end std out.
    .end err out.
    Unzip33 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh62_ord.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip34 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes1.zip at c:\oracle\visdb\9.2.0\
    Unzip34
    .end std out.
    .end err out.
    Unzip34 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh22_classes1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip35 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip35
    .end std out.
    .end err out.
    Unzip35 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh52_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip36 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh65_rdbms.zip at c:\oracle\visdb\9.2.0\
    Unzip36
    .end std out.
    .end err out.
    Unzip36 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh65_rdbms.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip37 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh19_bin.zip at c:\oracle\visdb\9.2.0\
    Unzip37
    .end std out.
    .end err out.
    Unzip37 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh19_bin.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip38 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh42_jre.zip at c:\oracle\visdb\9.2.0\
    Unzip38
    .end std out.
    .end err out.
    Unzip38 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh42_jre.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip39 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh64_rdbms.zip at c:\oracle\visdb\9.2.0\
    Unzip39
    .end std out.
    .end err out.
    Unzip39 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh64_rdbms.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip40 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh61_Omwb.zip at c:\oracle\visdb\9.2.0\
    Unzip40
    .end std out.
    .end err out.
    Unzip40 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh61_Omwb.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip41 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh32_javavm.zip at c:\oracle\visdb\9.2.0\
    Unzip41
    .end std out.
    .end err out.
    Unzip41 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh32_javavm.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip42 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh25_ctx.zip at c:\oracle\visdb\9.2.0\
    Unzip42
    .end std out.
    .end err out.
    Unzip42 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh25_ctx.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip43 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh20_bin0.zip at c:\oracle\visdb\9.2.0\
    Unzip43
    .end std out.
    .end err out.
    Unzip43 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh20_bin0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip44 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh20_bin.zip at c:\oracle\visdb\9.2.0\
    Unzip44
    .end std out.
    .end err out.
    Unzip44 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh20_bin.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip45 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh70_ultrasearch.zip at c:\oracle\visdb\9.2.0\
    Unzip45
    .end std out.
    .end err out.
    Unzip45 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh70_ultrasearch.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip46 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh7_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip46
    .end std out.
    .end err out.
    Unzip46 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh7_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip47 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh27_ctx.zip at c:\oracle\visdb\9.2.0\
    Unzip47
    .end std out.
    .end err out.
    Unzip47 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh27_ctx.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip48 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh24_classes.zip at c:\oracle\visdb\9.2.0\
    Unzip48
    .end std out.
    .end err out.
    Unzip48 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh24_classes.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip49 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh28_demo.zip at c:\oracle\visdb\9.2.0\
    Unzip49
    .end std out.
    .end err out.
    Unzip49 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk1\db\stage\dboh28_demo.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip50 - Start of native unzipping E:\oracleextract2\oraDB\Disk1\db\stage\dboh36_javavm.zip at c:\oracle\visdb\9.2.0\
    AutoConfig is exiting with status 0
    Processing disk file : disk.label in E:\oracleextract2\oraDB\Disk2
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk2
    Processing the driver file : E:\oracleextract2\oraDB\Disk2\db\driver\Disk2.drv
    UNZIPPING THE DISK2 CONTENTS
    Unzip51 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh16_assistants.zip at c:\oracle\visdb\9.2.0\
    Unzip51
    .end std out.
    .end err out.
    Unzip51 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh16_assistants.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip52 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh17_assistants.zip at c:\oracle\visdb\9.2.0\
    Unzip52
    .end std out.
    .end err out.
    Unzip52 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh17_assistants.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip53 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh51_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip53
    .end std out.
    .end err out.
    Unzip53 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh51_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip54 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh50_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip54
    .end std out.
    .end err out.
    Unzip54 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh50_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip55 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh14_assistants.zip at c:\oracle\visdb\9.2.0\
    Unzip55
    .end std out.
    .end err out.
    Unzip55 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh14_assistants.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip56 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh4_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip56
    .end std out.
    .end err out.
    Unzip56 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh4_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip57 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh2_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip57
    .end std out.
    .end err out.
    Unzip57 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh2_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip58 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh8_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip58
    .end std out.
    .end err out.
    Unzip58 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh8_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip59 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh6_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip59
    .end std out.
    .end err out.
    Unzip59 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh6_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip60 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh18_bin.zip at c:\oracle\visdb\9.2.0\
    Unzip60
    .end std out.
    .end err out.
    Unzip60 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh18_bin.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip61 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh0_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip61
    .end std out.
    .end err out.
    Unzip61 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh0_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip62 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh40_jlib.zip at c:\oracle\visdb\9.2.0\
    Unzip62
    .end std out.
    .end err out.
    Unzip62 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh40_jlib.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip63 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh55_oem_webstage.zip at c:\oracle\visdb\9.2.0\
    Unzip63
    .end std out.
    .end err out.
    Unzip63 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh55_oem_webstage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip64 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh26_ctx.zip at c:\oracle\visdb\9.2.0\
    Unzip64
    .end std out.
    .end err out.
    Unzip64 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh26_ctx.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip65 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh10_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip65
    .end std out.
    .end err out.
    Unzip65 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh10_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip66 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh47_oem_webstage0.zip at c:\oracle\visdb\9.2.0\
    Unzip66
    .end std out.
    .end err out.
    Unzip66 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh47_oem_webstage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip67 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh65_rdbms0.zip at c:\oracle\visdb\9.2.0\
    Unzip67
    .end std out.
    .end err out.
    Unzip67 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh65_rdbms0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip68 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh38_jlib.zip at c:\oracle\visdb\9.2.0\
    Unzip68
    .end std out.
    .end err out.
    Unzip68 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh38_jlib.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip69 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh66_rdbms.zip at c:\oracle\visdb\9.2.0\
    Unzip69
    .end std out.
    .end err out.
    Unzip69 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh66_rdbms.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip70 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh57_olap.zip at c:\oracle\visdb\9.2.0\
    Unzip70
    .end std out.
    .end err out.
    Unzip70 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh57_olap.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip71 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh45_network0.zip at c:\oracle\visdb\9.2.0\
    Unzip71
    .end std out.
    .end err out.
    Unzip71 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh45_network0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip72 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh64_rdbms0.zip at c:\oracle\visdb\9.2.0\
    Unzip72
    .end std out.
    .end err out.
    Unzip72 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh64_rdbms0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip73 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh21_bin0.zip at c:\oracle\visdb\9.2.0\
    Unzip73
    .end std out.
    .end err out.
    Unzip73 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh21_bin0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip74 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh29_demo0.zip at c:\oracle\visdb\9.2.0\
    Unzip74
    .end std out.
    .end err out.
    Unzip74 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh29_demo0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip75 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh37_javavm.zip at c:\oracle\visdb\9.2.0\
    Unzip75
    .end std out.
    .end err out.
    Unzip75 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh37_javavm.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip76 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh52_oem_webstage2.zip at c:\oracle\visdb\9.2.0\
    Unzip76
    .end std out.
    .end err out.
    Unzip76 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh52_oem_webstage2.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip77 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh46_oci0.zip at c:\oracle\visdb\9.2.0\
    Unzip77
    .end std out.
    .end err out.
    Unzip77 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh46_oci0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip78 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh19_bin0.zip at c:\oracle\visdb\9.2.0\
    Unzip78
    .end std out.
    .end err out.
    Unzip78 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh19_bin0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip79 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh48_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip79
    .end std out.
    .end err out.
    Unzip79 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh48_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip80 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh68_sysman.zip at c:\oracle\visdb\9.2.0\
    Unzip80
    .end std out.
    .end err out.
    Unzip80 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk2\db\stage\dboh68_sysman.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip81 - Start of native unzipping E:\oracleextract2\oraDB\Disk2\db\stage\dboh35_javavm.zip at c:\oracle\visdb\9.2.0\
    AutoConfig is exiting with status 0
    Processing disk file : disk.label in E:\oracleextract2\oraDB\Disk3
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk3
    Processing the driver file : E:\oracleextract2\oraDB\Disk3\db\driver\Disk3.drv
    UNZIPPING THE DISK3 CONTENTS
    Unzip82 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh67_sysman.zip at c:\oracle\visdb\9.2.0\
    Unzip82
    .end std out.
    .end err out.
    Unzip82 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh67_sysman.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip83 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh66_rdbms0.zip at c:\oracle\visdb\9.2.0\
    Unzip83
    .end std out.
    .end err out.
    Unzip83 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh66_rdbms0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip84 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh59_olap.zip at c:\oracle\visdb\9.2.0\
    Unzip84
    .end std out.
    .end err out.
    Unzip84 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh59_olap.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip85 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh56_olap.zip at c:\oracle\visdb\9.2.0\
    Unzip85
    .end std out.
    .end err out.
    Unzip85 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh56_olap.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip86 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh60_Omwb.zip at c:\oracle\visdb\9.2.0\
    Unzip86
    .end std out.
    .end err out.
    Unzip86 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh60_Omwb.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip87 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh39_jlib.zip at c:\oracle\visdb\9.2.0\
    Unzip87
    .end std out.
    .end err out.
    Unzip87 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh39_jlib.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip88 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh22_classes2.zip at c:\oracle\visdb\9.2.0\
    Unzip88
    .end std out.
    .end err out.
    Unzip88 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh22_classes2.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip89 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh27_ctx0.zip at c:\oracle\visdb\9.2.0\
    Unzip89
    .end std out.
    .end err out.
    Unzip89 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh27_ctx0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip90 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh9_.patch_storage.zip at c:\oracle\visdb\9.2.0\
    Unzip90
    .end std out.
    .end err out.
    Unzip90 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh9_.patch_storage.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip91 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh61_Omwb0.zip at c:\oracle\visdb\9.2.0\
    Unzip91
    .end std out.
    .end err out.
    Unzip91 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh61_Omwb0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip92 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh15_assistants.zip at c:\oracle\visdb\9.2.0\
    Unzip92
    .end std out.
    .end err out.
    Unzip92 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh15_assistants.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip93 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh58_olap.zip at c:\oracle\visdb\9.2.0\
    Unzip93
    .end std out.
    .end err out.
    Unzip93 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh58_olap.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip94 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh11_.patch_storage0.zip at c:\oracle\visdb\9.2.0\
    Unzip94
    .end std out.
    .end err out.
    Unzip94 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh11_.patch_storage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip95 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh7_.patch_storage0.zip at c:\oracle\visdb\9.2.0\
    Unzip95
    .end std out.
    .end err out.
    Unzip95 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh7_.patch_storage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip96 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh53_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip96
    .end std out.
    .end err out.
    Unzip96 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh53_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip97 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh70_ultrasearch0.zip at c:\oracle\visdb\9.2.0\
    Unzip97
    .end std out.
    .end err out.
    Unzip97 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh70_ultrasearch0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip98 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh62_ord0.zip at c:\oracle\visdb\9.2.0\
    Unzip98
    .end std out.
    .end err out.
    Unzip98 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh62_ord0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip99 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh69_sysman0.zip at c:\oracle\visdb\9.2.0\
    Unzip99
    .end std out.
    .end err out.
    Unzip99 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh69_sysman0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip100 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh47_oem_webstage1.zip at c:\oracle\visdb\9.2.0\
    Unzip100
    .end std out.
    .end err out.
    Unzip100 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh47_oem_webstage1.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip101 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh63_oui0.zip at c:\oracle\visdb\9.2.0\
    Unzip101
    .end std out.
    .end err out.
    Unzip101 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh63_oui0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip102 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh12_appsoui0.zip at c:\oracle\visdb\9.2.0\
    Unzip102
    .end std out.
    .end err out.
    Unzip102 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh12_appsoui0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip103 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh31_inventory.zip at c:\oracle\visdb\9.2.0\
    Unzip103
    .end std out.
    .end err out.
    Unzip103 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh31_inventory.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip104 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh5_.patch_storage0.zip at c:\oracle\visdb\9.2.0\
    Unzip104
    .end std out.
    .end err out.
    Unzip104 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh5_.patch_storage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip105 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh40_jlib0.zip at c:\oracle\visdb\9.2.0\
    Unzip105
    .end std out.
    .end err out.
    Unzip105 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh40_jlib0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip106 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh3_.patch_storage0.zip at c:\oracle\visdb\9.2.0\
    Unzip106
    .end std out.
    .end err out.
    Unzip106 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh3_.patch_storage0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip107 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh23_classes2.zip at c:\oracle\visdb\9.2.0\
    Unzip107
    .end std out.
    .end err out.
    Unzip107 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh23_classes2.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip108 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh34_javavm.zip at c:\oracle\visdb\9.2.0\
    Unzip108
    .end std out.
    .end err out.
    Unzip108 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh34_javavm.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip109 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh44_lib.zip at c:\oracle\visdb\9.2.0\
    Unzip109
    .end std out.
    .end err out.
    Unzip109 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh44_lib.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..DUnzip91 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh61_Omwb0.zip at c:\oracle\visdb\9.2.0\
    Unzip91
    .end std out.
    .end err out.
    Unzip91 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh61_Omwb0.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip92 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh15_assistants.zip at c:\oracle\visdb\9.2.0\
    Unzip92
    .end std out.
    .end err out.
    Unzip92 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh15_assistants.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip93 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh58_olap.zip at c:\oracle\visdb\9.2.0\
    Unzip93
    .end std out.
    .end err out.
    Unzip93 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh58_olap.zip -d c:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip94 - Start of native unzipping E:\oracleextract2\oraDB\Disk3\db\stage\dboh11_.patch_storage0.zip at c:\oracle\visdb\9.2.0\
    Unzip94
    .end std out.
    .end err out.
    Unzip94 - Completed native unzipping unzip -qn E:\oracleextract2\oraDB\Disk3\db\stage\dboh11_.patch_storage0.zip -

  • Cannot connect properly to Oracle on Linux from Windows

    Good day all,
    I’ve got 2 virtual machines running on my Mac:
    -     Centos 5.4 with Oracle 11gR2
    -     Windows 2003 server with Oracle 10gR2
    From Linux box I have access to Oracle database on Windows box (both directly and via a database link), however from Windows I have problems accessing the oracle database on the Linux box.
    From Windows, if I try to set up a connection using Oracle’s SQL Developer using connection type “Basic”, I get “IO Error: The Network Adapter could not establish the connection”. When I use “TNS”, then it works.
    From the linux box it all works fine as the “oracle” user, but when I log on as another user (in this case “informatica”) it doesn’t work properly any more.
    To sketch what both environments look like.
    Windows:
    -     Machine name WS2003Ora10g
    -     Etc/hosts
    o     127.0.0.1 localhost
    o     #loopback adapter
    o     192.168.12.100     localhost
    o     #network adapter
    o     192.168.12.10     WS2003Ora10g
    o     # external machine
    o     192.168.12.110     ilmserver
    -     system variables
    o     TNS_ADMIN, set to network/admin path in Oracle home dir
    listener
    C:\Documents and Settings\Administrator>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 24-AUG-2011 17:38:06
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production
    Start Date 24-AUG-2011 16:29:33
    Uptime 0 days 1 hr. 8 min. 33 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\listener.ora
    Listener Log File C:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WS2003Ora10g)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "ora10gr2" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    Service "ora10gr2XDB" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    Service "ora10gr2_XPT" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    The command completed successfully
    C:\Documents and Settings\Administrator>lsnrctl services
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 24-AUG-2011 17:40:43
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "ora10gr2" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:25 refused:0 state:ready
    LOCAL SERVER
    Service "ora10gr2XDB" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1002 state:ready
    DISPATCHER <machine: WS2003ORA10G, pid: 2852>
    (ADDRESS=(PROTOCOL=tcp)(HOST=WS2003Ora10g)(PORT=1031))
    Service "ora10gr2_XPT" has 1 instance(s).
    Instance "ora10gr2", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:25 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    Linux
    -     Machine name ilmserver
    -     Etc/hosts
    o     127.0.0.1          localhost.localdomain localhost
    o     ::1          localhost6.localdomain6 localhost6
    o     192.168.12.1     routerip     rtrip
    o     192.168.12.110     ilmserver     ilmsvr
    o     192.168.12.10     WS2003Ora10g     winora
    system variables (in bashprofile)_
    o     export PATH=$PATH:/usr/java/jdk1.7.0/bin
    o     export PATH=$PATH:/usr/sbin
    o     export PATH=$PATH:/sbin
    o     export JAVA_HOME=/usr/java/jdk1.7.0
    o     PATH=$PATH:$HOME/bin
    o     export PATH
    o     export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    o     export ORACLE_BASE=/home/oracle/app/oracle
    o     export ORACLE_SID=orcl
    o     export TNS_ADMIN=$ORACLE_HOME/network/admin
    o     export ORACLE_HOSTNAME=ilmserver
    o     export PATH=$PATH:$ORACLE_HOME/bin
    Both the "oracle" and the "informatica" user have these environment variables.
    listener
    Logged in as “oracle” user:*
    [oracle@ilmserver ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 24-AUG-2011 19:12:35
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 24-AUG-2011 17:30:39
    Uptime 0 days 1 hr. 41 min. 55 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File /home/oracle/app/oracle/diag/tnslsnr/ilmserver/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    [oracle@ilmserver ~]$ lsnrctl services
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 24-AUG-2011 19:13:28
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:19 refused:0 state:ready
    LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: ilmserver, pid: 9648>
    (ADDRESS=(PROTOCOL=tcp)(HOST=ilmserver)(PORT=52395))
    The command completed successfully
    But logged in as “informatica” user I get following:
    [informatica@ilmserver ~]$ lsnrctl status
    bash: lsnrctl: command not found
    [informatica@ilmserver ~]$ lsnrctl services
    bash: lsnrctl: command not found
    even though the oracle bin directory sits in PATH.
    Pinging from windows:
    C:\Documents and Settings\Administrator>ping ilmserver
    Pinging ilmserver [192.168.12.110] with 32 bytes of data:
    Reply from 192.168.12.110: bytes=32 time=1ms TTL=64
    Reply from 192.168.12.110: bytes=32 time<1ms TTL=64
    Reply from 192.168.12.110: bytes=32 time<1ms TTL=64
    Reply from 192.168.12.110: bytes=32 time<1ms TTL=64
    Ping statistics for 192.168.12.110:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 1ms, Average = 0ms
    That works fine.
    Telnet from Windows:
    C:\Documents and Settings\Administrator>telnet 192.168.12.110 1521
    Connecting To 192.168.12.110...Could not open connection to the host, on port 1521: Connect failed
    This result is the same for either just having port 1521 open, or turning the Linux firewall off altogether. Also same when using IP address.
    Just to be complete, here are the results from the Linux box.
    *[oracle@ilmserver informatica]$ ping WS2003Ora10g*
    PING WS2003Ora10g (192.168.12.10) 56(84) bytes of data.
    64 bytes from WS2003Ora10g (192.168.12.10): icmp_seq=1 ttl=128 time=1.63 ms
    64 bytes from WS2003Ora10g (192.168.12.10): icmp_seq=2 ttl=128 time=0.222 ms
    64 bytes from WS2003Ora10g (192.168.12.10): icmp_seq=3 ttl=128 time=0.255 ms
    64 bytes from WS2003Ora10g (192.168.12.10): icmp_seq=4 ttl=128 time=0.258 ms
    --- WS2003Ora10g ping statistics ---
    4 packets transmitted, 4 received, 0% packet loss, time 3000ms
    rtt min/avg/max/mdev = 0.222/0.593/1.639/0.604 ms
    *[oracle@ilmserver ~]$ telnet WS2003Ora10g 1521*
    Trying 192.168.12.10...
    Connected to WS2003Ora10g (192.168.12.10).
    Escape character is '^]'.
    ... works for all users.
    Checking out the port situation on Linux:
    [informatica@ilmserver ~]$ netstat -an | grep 1521
    tcp 0 0 127.0.0.1:1521 0.0.0.0:* LISTEN
    tcp 0 0 127.0.0.1:1521 127.0.0.1:43782 ESTABLISHED
    tcp 0 0 127.0.0.1:1521 127.0.0.1:44290 ESTABLISHED
    tcp 0 0 127.0.0.1:58289 127.0.0.1:1521 TIME_WAIT
    tcp 0 0 127.0.0.1:58287 127.0.0.1:1521 TIME_WAIT
    tcp 0 0 127.0.0.1:1521 127.0.0.1:43792 ESTABLISHED
    tcp 0 0 127.0.0.1:54116 127.0.0.1:1521 ESTABLISHED
    tcp 0 0 127.0.0.1:1521 127.0.0.1:44283 ESTABLISHED
    tcp 0 0 ::ffff:127.0.0.1:54123 ::ffff:127.0.0.1:1521 ESTABLISHED
    tcp 0 0 ::ffff:127.0.0.1:30135 ::ffff:127.0.0.1:1521 ESTABLISHED
    unix 2 [ ACC ] STREAM LISTENING 129262 /var/tmp/.oracle/sEXTPROC1521
    [ the sequence of dots means I took out a whole lot or lines with virtually the same information, only different port(s) ]
    What’s noticeable is that port 1521 seems solely assigned to the localhost IP-address, 127.0.0.1.
    Another thing I noticed is that from a different user in Linux, so not “oracle”, using SQL Developer I cannot access the local Oracle database via TNS. When choosing TNS the dropdown box for “Network Alias” – which normally is populated with entries from TNSNAMES.ORA – is completely empty. On a “users and groups” level I basically assigned all the groups the oracle user is member of, to the other user (called informatica).
    And to make it even more interesting, at first it worked using “Basic” (in SQL Developer), but since implementing the TNS_ADMIN environment variable, it doesn’t work at all !!!
    Trying it via SQLPLUS as the “informatica” doesn’t work either:
    [informatica@ilmserver ~]$ sqlplus system
    bash: sqlplus: command not found
    I’ve assigned the “dba” group to “informatica”, or rather, I have assigned all groups to the “informatica” user as the “oracle” user has.
    Needless to say I am no Linux expert, rather a quite inexperienced Linux-user.
    So bottom line, the situation I’d like to be able to create is the following:
    •     Linux Oracle DB accessible from “informatica” (or any other) user on Linux, via both TNS and java-based
    •     Linux Oracle DB accessible from remote machine (running Windows 2003 server) via both TNS and java-based
    •     And for Informatica to work properly, it says it needs the TNS_ADMIN environment variable, so the “informatica” user must have full Oracle connectivity with TNS_ADMIN in place.
    Any help is greatly appreciated.
    Thanks, Patrick

    Hi Billy,
    Thanks for your elaborate answer.
    Not sure whether I can use it though, since the application using the oracle database (i.e. Informatica ILM 5.3.2) appears to have a specific need for TNS.
    I thought I had a solution (not the prettiest for sure) by just copying TNSNAMES.ORA to an accessible location, change ownership to "informatica" user, have TNS_ADMIN point to it, and Bob should be my uncle. Well... he isn't!
    In SQL Developer when I choose TNS as connection type, the drop down box is STILL empty.....aaaaahhhh!!!!!
    I was advised to play around with primary groups, so I tried oinstall and dba as primary groups for informatica user, all to no avail.
    And I can't even test it with SQLPLUS because I don't have access to it as "informatica".
    Who knows what the exact reason for that is... I know I'm a far cry from an experienced linux user, but I assumed that having the Oracle Home bin directory in PATH, and assigning the oinstall group to informatica user, would ensure access to to any executable in there. Well... NOT!!!
    +[informatica@ilmserver ~]$ sqlplus system@orcl+
    bash: sqlplus: command not found
    This is driving me nuts. Thought that finding a solution for this wouldn't be this hard, but essentially I've been digging for 3 days now.
    To provide more background, here are the env.variables:
    [informatica@ilmserver ~]$ env
    SSH_AGENT_PID=21054
    HOSTNAME=ilmserver
    DESKTOP_STARTUP_ID=
    TERM=xterm
    SHELL=/bin/bash
    HISTSIZE=1000
    GTK_RC_FILES=/etc/gtk/gtkrc:/home/informatica/.gtkrc-1.2-gnome2
    WINDOWID=262nnnnn
    USER=informatica
    LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    ORACLE_SID=orcl
    GNOME_KEYRING_SOCKET=/tmp/keyring-LXptz1/socket
    ORACLE_HOSTNAME=ilmserver
    ORACLE_BASE=/home/oracle/app/oracle
    SSH_AUTH_SOCK=/tmp/ssh-CFDat21018/agent.21018
    SESSION_MANAGER=local/ilmserver:/tmp/.ICE-unix/21018
    USERNAME=informatica
    TNS_ADMIN=/var/temp
    MAIL=/var/spool/mail/informatica
    PATH=/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/informatica/bin:/usr/java/jdk1.7.0/bin:/usr/sbin:/sbin:/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
    DESKTOP_SESSION=default
    GDM_XSERVER_LOCATION=local
    INPUTRC=/etc/inputrc
    PWD=/home/informatica
    JAVA_HOME=/usr/java/jdk1.7.0
    XMODIFIERS=@im=none
    LANG=en_US.UTF-8
    GDMSESSION=default
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    SHLVL=2
    HOME=/home/informatica
    GNOME_DESKTOP_SESSION_ID=Default
    LOGNAME=informatica
    CVS_RSH=ssh
    DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-axxxxxxxxo,guid=xxxxxxxxxxxxxxxxxxxxxxx
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    DISPLAY=:0.0
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    G_BROKEN_FILENAMES=1
    COLORTERM=gnome-terminal
    XAUTHORITY=/tmp/.gdmKEYS0V
    Thanks, Patrick

  • Oracle 9.0.1 HP-UX 11.00 assistance needed

    I am trying to install oracle9i (9.0.1) on an HPUX 11.0 Box (64 bit). I have completed the installation without error. However I am unable to execute the sqlplus command.
    Here is some relevant info (Note I found no errors in the /opt/oracle/oraInventory/logs/installActions.log file)
    $ whoami
    oracle
    $ id
    uid=102(oracle) gid=101(dba)
    $ env
    _=/usr/bin/env
    MANPATH=/usr/share/man/%L:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/usr/dt/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/samba/man:/opt/gnome/man:/opt/aCC/share/man/%L:/opt/aCC/share/man:/opt/langtools/share/man/%L:/opt/langtools/share/man:/opt/graphics/common/man:/opt/OV/man
    SHLIB_PATH=/opt/oracle/product/9.0.1/lib32
    PATH=/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/nettladm/bin:/opt/fc/bin:/opt/fcms/bin:/opt/upgrade/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/hparray/bin:/opt/gnome/bin:/opt/aCC/bin:/opt/langtools/bin:/opt/graphics/common/bin:.:/usr/loacl/bin
    COLUMNS=80
    ORACLE_BASE=/opt/oracle
    EDITOR=vi
    LOGNAME=oracle
    ORACLE_SID=openview
    ERASE=^H
    DISPLAY=hp_eunic:1.0
    SHELL=/usr/bin/ksh
    ORACLE_TERM=ansi
    HOME=/home/oracle
    TERM=dtterm
    ORACLE_HOME=/opt/oracle/product/9.0.1
    PWD=/opt/oracle/oraInventory/logs
    TZ=MST7MDT
    LINES=24
    $ ll /opt/oracle/product/9.0.1/bin/sqlplus
    -rwxr-x--x 1 oracle dba 12981232 Feb 8 03:09 /opt/oracle/product/9.0.1/bin/sqlplus
    $ /opt/oracle/product/9.0.1/bin/sqlplus
    ksh: /opt/oracle/product/9.0.1/bin/sqlplus: cannot execute

    Mike,
    you need add parameter $ORACLE_HOME/bin to your PATH parameter.and set following environment variable:
    ORA_NLS33 $ORACLE_HOME/ocommon/nls/admin/data
    SHLIB_PATH $ORACLE_HOME/lib32:$ORACLE_HOME/rdbms/lib32
    LD_LIBRARY_BASE $ORACLE_HOME/lib
    LD_LIBRARY_BASE /opt/java1.4/lib
    LD_LIBRARY_PATH $ORACLE_HOME/lib:/lib:$ORACLE_HOME/rdbms/lib:/usr/lib
    JAVA_HOME /opt/java1.4
    CLASSPATH $ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdms/jlib:$ORA
    CLE_HOME/network/jlib
    you may try it !

  • Open Hub Destination to Oracle database

    Hello All ,
    I am supposed to send data from my SAP BI (7.0) system to and Oracle Database using open hub destination. I have to use the option " Third Party " as destination while creating the Open Hub Destination .
    From my reading and acc to Basis I  realised that I need a 3rd party ETL tool in between BI and Oracle system to write data into the Oracle system since oracle is not SAP RFC aware . The 3rd party ETL that I am supposed to use in this is Business Objects - Data Integrator(BO-DI) . If anyone has implemented this type of Open hub service please throw  some light on this issue as to how to setup the 3rd party ETL in between and how to proceed .  Any how to document would also be useful .
    Thanks and Regards,
    Riddhi

    Hi,
    Pls go thru this links,
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/79f902dfb06fc9e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/79f902dfb06fc9e10000000a1553f6/frameset.htm
    Hope it helps u,
    Thanks & Regards,
    SD

Maybe you are looking for

  • Boot camp and windows XP..can't use the "option" key to dual boot

    Hi All I'm a Mac newbie, but I know LOTS about windows XP. I set up windows XP to run on my brand new (5 days old) macbook. I can use bootcamp to boot from OS/X to windows XP, and everything works well o both systems (I also loaded fusion, didn't lik

  • MWA/MSCA Customization ERROR

    Dear all, My requirement is to Customize a Page where i have FListener & Page file but not able to find Function File I have checked the the menu>function>it adress to a different Function File... where on condition it is pointing to different Page .

  • Can't convert adobe to word

    I just bought the basic service in order to convert file from Adobe to word and I cannot convert my first file. I keep being offered to buy the service again or I a pop up shows stating that there is a technical. Please advise what to do. NS

  • Separation of Traffic with 2 x 10Gbps NICs?

    We have a 9 blade Hyper-V cluster and unfortunately, each blade was only specced out with 2 x 10Gbps NICs. Right now each is configured in a team, with Live Migration, VM, and iSCSI traffic all flowing equally. I'm going to separate them out tonight

  • Error message: Helvetica Medium outline font missing when creating PDF's

    Error message: Helvetica Medium outline font missing when creating PDF's. Where can I downlaod it and why is it suddenly happening?