SQL Studio 7.8 Windows x86 32bit

SAP MaxDB Database Studio 7.8 for Windows (x86, 32 bit).abst seems to lead to the licence aggreement of the 64bit  and then its download
any suggestions?

despite nobody seems to be interested in that software the link would  be this one:
https://downloads.sdn.sap.com/maxdb/maxdb-tools/maxdb-studio-win-32bit-i386-7_8_01_18.exe

Similar Messages

  • Bug on Oracle 11.2.0.1 on Windows x86 32bit

    Hello,
    I have a very strange behavior on a database Oracle 11.2.0.1 on a Windows x86 32bit machine.
    I have 2 simple query on a small table with different condition.
    If I run the 2 query separately, they extract 2 data correcty, but if I run a unique query with the 2 previous condition in OR, the result is the same as if I run the query with AND operator.
    Here is the example from DOS :
         C:\Users\bianchi>sqlplus zcssysman/****@sm11
         SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 10:58:00 2010
         Copyright (c) 1982, 2010, Oracle. All rights reserved.
         Connesso a:
         Oracle Database 11g Release 11.2.0.1.0 - Production
         SQL> --
         SQL> -- Crea tabella di test
         SQL> --
         SQL> create table SARBI
         2 (
         3 PP CHAR(10),
         4 DFIN DATE
         5 );
         Tabella creata.
         SQL> --
         SQL> -- Aggiunge records
         SQL> --
         SQL> insert into SARBI (PP, DFIN)
         2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> commit;
         Commit completato.
         SQL> --
         SQL> -- Data maggiore/uguale di sysdate
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI a WHERE
         3 ( DFIN >= SYSDATE );
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
         SQL> --
         SQL> -- Data uguale a 17/11/2009
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAA 0 17-NOV-09
         AAAlEYAAEAAFlZ7AAB 1 17-NOV-09
         AAAlEYAAEAAFlZ7AAC 2 17-NOV-09
         SQL> --
         SQL> -- Entrambe le condizioni in OR
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN >= SYSDATE OR
         4 DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlEYAAEAAFlZ7AAD 3 31-DIC-10
         SQL>
    Here is the same query on a DB Oracle 10.2.example from DOS :
         C:\Users\bianchi>sqlplus zcssysman/******@sm10
         SQL*Plus: Release 11.2.0.1.0 Production on Lun Nov 8 11:00:45 2010
         Copyright (c) 1982, 2010, Oracle. All rights reserved.
         Connesso a:
         Oracle Database 10g Release 10.2.0.4.0 - Production
         SQL> --
         SQL> -- Crea tabella di test
         SQL> --
         SQL> create table SARBI
         2 (
         3 PP CHAR(10),
         4 DFIN DATE
         5 );
         Tabella creata.
         SQL> --
         SQL> -- Aggiunge records
         SQL> --
         SQL> insert into SARBI (PP, DFIN)
         2 values ('0 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('1 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('2 ', to_date('17-11-2009', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('3 ', to_date('31-12-2010', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> insert into SARBI (PP, DFIN)
         2 values ('4 ', to_date('31-12-2008', 'dd-mm-yyyy'));
         Creata 1 riga.
         SQL> commit;
         Commit completato.
         SQL> --
         SQL> -- Data maggiore/uguale di sysdate
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI a WHERE
         3 ( DFIN >= SYSDATE );
         ROWID PP DFIN
         AAAlC6AAIAACneNAAD 3 31-DIC-10
         SQL> --
         SQL> -- Data uguale a 17/11/2009
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlC6AAIAACneNAAA 0 17-NOV-09
         AAAlC6AAIAACneNAAB 1 17-NOV-09
         AAAlC6AAIAACneNAAC 2 17-NOV-09
         SQL> --
         SQL> -- Entrambe le condizioni in OR
         SQL> --
         SQL> SELECT a.rowid, a.*
         2 FROM SARBI A WHERE
         3 ( DFIN >= SYSDATE OR
         4 DFIN = TO_DATE('20091117','YYYYMMDD'));
         ROWID PP DFIN
         AAAlC6AAIAACneNAAA 0 17-NOV-09
         AAAlC6AAIAACneNAAB 1 17-NOV-09
         AAAlC6AAIAACneNAAC 2 17-NOV-09
         AAAlC6AAIAACneNAAD 3 31-DIC-10
         SQL>
    Can you help me ? I look for 11.2.0.2 patch set, but it seems that was not yet avaliable ...
    Thanks to all

    Doesn't happen with VARCHAR column :
    SQL> connect hemant
    Enter password:
    Connected.
    SQL> create table X (col_1  number, col_2 varchar2(5));
    Table created.
    SQL> insert into X values (1,'A');
    1 row created.
    SQL> insert into X values (2,'J');
    1 row created.
    SQL> insert into X values (3,'P');
    1 row created.
    SQL> insert into X values (4,'T');
    1 row created.
    SQL> insert into X values (5,'Z');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select col_1, col_2 from X where col_2 > 'Q';
         COL_1 COL_2
             4 T
             5 Z
    SQL> select col_1, col_2 from X where col_2 = 'P';
         COL_1 COL_2
             3 P
    SQL> select col_1, col_2 from X where
      2  (col_2 > 'Q' OR col_2 = 'P');
         COL_1 COL_2
             3 P
             4 T
             5 Z
    SQL> show parameter optimizer_featu
    NAME                                 TYPE        VALUE
    optimizer_features_enable            string      11.2.0.1
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - ProductionIs it the SYSDATE ?
    SQL> create table y (col_1 number,  col_2 date);
    Table created.
    SQL> insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY');
    insert into y values (1, to_date('01-JAN-2000','DD-MON-YYYY')
    ERROR at line 1:
    ORA-00917: missing comma
    SQL> insert into y values (1,to_date('01-JAN-2000','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (2,to_date('01-JAN-2001','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (3,to_date('01-JUL-2003','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (4,to_date('15-NOV-2010','DD-MON-YYYY'));
    1 row created.
    SQL> insert into y values (5,to_date('12-MAR-2015','DD-MON-YYYY'));
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select col_1, col_2 from y where col_2=to_date('15-NOV-2010','DD-MON-YYYY');
         COL_1 COL_2
             4 15-NOV-10
    SQL> select col_1, col_2  from y where col_2 > to_date('01-APR-2010','DD-MON-YYYY');
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL> select  col_1, col_2 from y where col_2=to_date('01-JUL-2003','DD-MON-YYYY');
         COL_1 COL_2
             3 01-JUL-03
    SQL> select col_1, col_2 from y where
      2  (col_2 > to_date('01-APR-2010','DD-MON-YYYY') OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
         COL_1 COL_2
             3 01-JUL-03
             4 15-NOV-10
             5 12-MAR-15
    SQL> select col_1, col_2 from y where
      2  (col_2 > sysdate OR col_2 = to_date('01-JUL-2003','DD-MON-YYYY'));
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL>
    SQL> select col_1, col_2 from y where
      2  (col_2 > sysdate);
         COL_1 COL_2
             4 15-NOV-10
             5 12-MAR-15
    SQL> select col_1, col_2 from y where
      2  col_2 = to_date('01-JUL-2003','DD-MON-YYYY');
         COL_1 COL_2
             3 01-JUL-03
    SQL> select col_1, col_2 from y where
      2  (col_2 = to_date('01-JUL-2003','DD-MON-YYYY') OR col_2 > sysdate);
         COL_1 COL_2
             3 01-JUL-03
             4 15-NOV-10
             5 12-MAR-15
    SQL>Hemant K Chitale
    http://hemantoracledba.blogspot.com
    Edited by: Hemant K Chitale on Nov 9, 2010 10:50 PM

  • SAProuter.sar patch for windows x86 32bit

    Hi friends,
    I am unable to find SAPRouter.sar patch (Release Kernal 700) for windows x86 32bit. And also tel me the steps for config at system level, as I have done all the req steps at service market.
    Does SAPRouter to be connected in the internal network?
    While creating RFC connnection to SAPOSS I am geting an error.
    If anyone have an idea reg SAPRouter, just msg it.
    Regards,
    nagesh

    Hi Andrews,
    I have seen tht path but I am unable to view for win 32 bit. These are for different OS found in the SAPRouter link.
    SAPROUTER 7.00
    AIX 32bit
    AIX 64bit
    HP-UX on IA64 64bit
    HP-UX on PA-RISC 32bit
    HP-UX on PA-RISC 64bit
    Linux on IA32 32bit
    Linux on IA64 64bit
    Linux on Power 64bit
    Linux on x86_64 64bit
    Linux on zSeries 64bit
    OS/400
    OS/400 V5R2M0
    Solaris on SPARC 32bit
    Solaris on SPARC 64bit
    Solaris on x64_64 64bit
    TRU64 64bit
    Windows Server on IA32 32bit
    Windows Server on IA64 64bit
    Windows Server on x64 64bit
    z/OS 32bit
    z/OS 64bit
    I will be thankful if u send me a message reg this.
    Regards,
    Nageshwar

  • Error when installing itunes version 9 on Windows Vista 32bit

    When trying to install itunes version 9 an error has come up before the installation is complete.
    The error reads -
    An error occurred during the installation of assembly
    'microsoft Vo80.CRT,version = "8.0.50727.4053,"type="wn32",publickey token=1fc8b3b9ale18e3b" process or architecture="x86"
    HRESULT.0x800736133
    Can anyone help me - I am using windows vista 32bit. Have tried turing off ALL security and reinstalling as someone else suggested previously. But still have had no luck
    Thanks

    Thanks Emma!
    Ox800736B3
    Not a lot of documentation on that one, I'm afraid, but there's some general principles troubleshooting we can try with it that might get us moving forwards.
    (1) Do you currently have a copy of the Microsoft Visual C++ 2005 Redistributable Package installed on that PC? If so, try downloading the following security update:
    [Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update|http://www.microsoft.com/downloads/details.aspx?familyid=766a6af7-ec73-4 0ff-b072-9112bab119c2&displaylang=en#filelist]
    Does iTunes install for you after applying that update?
    (2) If no joy there, head into your Windows Update and click on the Update History. Have a lot of Updates also been failing for you recently? If so, doubleclick on the entries for the failed updates to bring up more information on each. What error codes appear for you for the failed updates? (Precise spelling, please.)

  • MICROSOFT vc80.crt TYPE WIN 32 - HRESULT: 0x80070422 - everytime i try to download itunes 10.5.2 on window 7 32bit? - why and how can I do to avoid it ?

    hello
    I am trying to install Itunes 10.5.2 to my laptop running window 7 (32bit)
    I may have tried a zillion time and I am now running out of options.
    -Uninstalled and reinstalled countless time
    -Cleaned C drive of all Apple product countless time
    -All window updates in and installed succesfully
    I always get the same error messages, in the following orders during download
    1)Itunes
    an error occured during the installation of assembly ''Microsoft.vc80.crt.type=''win32'', version=''8.0.50727.6195, public key token=,1fc8b3b9a1e18e3b'', processor architecture=''x86'', please refer to help and Support for more information. HResult: 0x80070422
    2) itunes
    Service 'apple mobile device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services.
    3) ItunesHelper
    Apple application Support was not found
    Apple application support is required to run itunes helper- please uninstall itunes and then install itunes again - error 2
    4)Itunes
    Apple application support was not found.
    AAS is equired to run Itunes. please uninstal itunes then install itunes again
    error 2 (windows error 2)
    thanks for your help if you know the answer.

    Hi all, I know this is a very old thread, but I was battling this issue for awhile and wanted to provide my solution in case future users encounter a similar issue.
    I am running Windows 8. I encountered this issue while trying to install iTunes 11.1 x64 version. After some troubleshooting, I discovered that the real issue was trying to install the Apple Mobile Device service.
    My resolution was installing the Microsoft Visual C++ 2005 Redistributable Package. It is available from Microsoft. A search on Google should reveal it. However, here is the latest link that I used: https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=14431
    Note that redistributable packages for more recent versions of Visual C++ (eg 2008, 2010) will NOT work. Only 2005 version worked for me.
    Good luck!

  • How to install SQL Server Express in Windows 10

    Windows 10 x64.
    Windows 10 running on VirtualBox 4.3.18.
    Setup in not started without any messages.
    There is no Setup.exe in Task Manager.
    There is no errors in Windows Logs (Event Viewer).
    There is no any SQL Server folders in Program Files or Program Files (x86).
    Compatibility with Windows 7, 8 doesn't help.
    Was tested english versions:
    SQL Express 2008 R2 SP1 x64, SQL Express 2008 R2 SP1 with Tools x64,
    SQL Express 2014 x64, SQL Express 2014 with Tools x64.
    How to install any version of SQL Express?
    Thanks in advance.
    So, I can reproduce this problem.
    By default windows have not .Net 3.5 installed, but SQL Server tools need it.
    When I run sql setup on fresh windows it started normally.
    If run .net setup when sql setup already running it's OK.
    But if you exist from sql setup (or not run it) and install .net in Windows Components it's impossible to run SQL setup.

     Do
    you read me?
    I can reproduce this problem.
    By default windows have not .Net 3.5 installed, but SQL Server tools need it.
    When I run sql setup on fresh windows it started normally.
    If run .net setup when sql setup already running it's OK.
    But if you exist from sql setup (or not run it) and install .net in Windows Components it's impossible to run SQL setup.
    to install .net framework 3.5,
    just go to control panel -> programs and features -> turn windows features on and off -> check .net framework 3.5

  • EBS 12.1.1 Windows x86 Rapid Install Errors

    By this point, I am CONVINCED that R12.1.1 is broken for windows x86, in the form that it is delivered at edelivery. I have tried installing it on 2k3 and XP all with the exact same errors. I have also tried the latest rapid install/StartCD version 12.1.1.10 released on 29th June with the EXACT same results.The following are the most common problems:
    1) After starting Rapid Install, the first step is to cache the StartCD in the Temp directory under windows. Just as this step is about to complete you get the following error:
    Windows cannot find '.\jre\NT\1.5.0\bin\java'. Make sure you typed the name correctly, and then try again. To search for a file, click the Start button, and then click Search.
    2) Sooooo, I copied a JRE 1.5.X folder contents into the new \jre\NT\1.5.0 folder under rapidwiz, the absence of which was causing the above error. This allowed me to go past this error only to stumble on this next error. At this point, Rapid Install just stops abruptly. The error as stated in the rapidwiz log is as follows:
    Starting from CD area C:\temp\07261549
    RW-50010: Error: - script has returned an error: 2
    Returning - 0
    Funny thing is, one of the bug fixes in 12.1.1.10 is the above error. I dont know what was fixed, but I do not see a difference in the behavior.
    NOTE: I tried keeping the 1.6.0 JRE that comes with the startcd in to the newly created 1.5.0 folder with the same results.
    I can't help thinking that the two errors are related, ie., my fix for bypassing the first error might be causing the second error.
    As most of you are likely to ask some standard questions, I'll just post their answers before you do.
    1) My setup is a VM under VMWare Workstation 6.5 with a single network adapter that is a Host Only networked adapter with a static IP.
    2) It does not matter if I do a Express Install or otherwise.
    3) Errors are repeatable on multiple hardware platforms, my host system is an 8 core opteron server with 16GB RAM. My VMs have 3GB RAM and 2 virtual processors assigned. Errors were repeatable on a laptop with a turion x2 processor and one with an Intel Core 2 Duo.
    4) I am using CYGWIN and it was installed using the Metalink note describing how CYGWIN needs to be installed/configured for oracle applications install.
    5) R 11.5.10.2 was successfully installed on all VMs/Laptops.
    6) There are no spaces in any of the paths.
    7) The staging area was created with StageR12 as the root folder under a Local Hard Drive to the VM/Machine.
    8) I get ABSOLUTELY no warnings/errors with my Rapid Install during the pre-requisites check phase. Following is a sample log:
    Oracle Applications Rapid Install Wizard Install log
    Using Rapid Wizard Version : 12.1.1.10
    Install session started : Sun Jul 26 15:54:42 EDT 2009
    Rapid Wizard source location : C:\temp\07261549\rapidinstall
    Command Line arguments for this run :
    =================================================================
    Install Session Information
    Host Name : oapps
    Host Operating System : Windows (32-bit)
    User running Install : Administrator
    =================================================================
    InstUpgPanel
    User action : Install Oracle Applications
    Install type : Standard Install
    Disabling OCM Configuration
    InstallPanel
    User action : Create configuration
    Description : Creates a new instance configuration.
    InstUpgPanel
    User action : Install Oracle Applications
    Install type : Express Install
    Disabling OCM Configuration
    Derived ports from port pool: 0
    Derived ports from port pool: 20
    Database Port : 1541
    RPC Port : 1646
    Web SSL Port : 4463
    ONS Local Port : 6120
    ONS Remote Port : 6220
    ONS Request Port : 6520
    Web Listener Port : 8020
    Active Web Port : 8020
    Forms Port : 9020
    Metrics Server Data Port : 9120
    Metrics Server Request Port : 9220
    JTF Fulfillment Server Port : 9320
    MSCA Server Port : 10320-10325
    MCSA Telnet Server Port : 10320,10322,10324
    MSCA Dispatcher Port : 10860
    Java Object Cache Port : 12365
    OC4J JMS Port Range for Oacore : 23100-23104
    OC4J JMS Port Range for Forms : 23600-23604
    OC4J JMS Port Range for Home : 24100-24104
    OC4J JMS Port Range for Oafm : 24600-24604
    OC4J AJP Port Range for Oacore : 21600-21604
    OC4J AJP Port Range for Forms : 22100-22104
    OC4J AJP Port Range for Home : 22600-22604
    OC4J AJP Port Range for Oafm : 25100-25104
    OC4J RMI Port Range for Oacore : 20100-20104
    OC4J RMI Port Range for Forms : 20600-20604
    OC4J RMI Port Range for Home : 21100-21104
    OC4J RMI Port Range for Oafm : 25600-25604
    DB ONS Local Port : 6320
    DB ONS Remote Port : 6420
    Oracle Connection Manager Port : 1541
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    ExpressInstallPanel
    Writing configuration file to: O:\oracle\VISN\db\tech_st\11.1.0\appsutil\conf_VISN.txt
    Adding ports for Server0_oapps
    Setting port s_db_ons_localport to 6320
    Setting port s_db_ons_remoteport to 6420
    Setting port s_cmanport to 1541
    Adding ports for Server1_oapps
    Setting port s_rpcport to 1646
    Setting port s_webssl_port to 4463
    Setting port s_ons_localport to 6120
    Setting port s_ons_remoteport to 6220
    Setting port s_ons_requestport to 6520
    Setting port s_webport to 8020
    Setting port s_active_webport to 8020
    Setting port s_formsport to 9020
    Setting port s_metdataport to 9120
    Setting port s_metreqport to 9220
    Setting port s_jtfuf_port to 9320
    Setting port s_mwaPortNo to 10320-10325
    Setting port s_mwaTelnetPortNo to 10320,10322,10324
    Setting port s_mwaDispatcherPort to 10860
    Setting port s_java_object_cache_port to 12365
    Setting port s_oacore_jms_portrange to 23100-23104
    Setting port s_forms_jms_portrange to 23600-23604
    Setting port s_home_jms_portrange to 24100-24104
    Setting port s_oafm_jms_portrange to 24600-24604
    Setting port s_oacore_ajp_portrange to 21600-21604
    Setting port s_forms_ajp_portrange to 22100-22104
    Setting port s_home_ajp_portrange to 22600-22604
    Setting port s_oafm_ajp_portrange to 25100-25104
    Setting port s_oacore_rmi_portrange to 20100-20104
    Setting port s_forms_rmi_portrange to 20600-20604
    Setting port s_home_rmi_portrange to 21100-21104
    Setting port s_oafm_rmi_portrange to 25600-25604
    Writing configuration file to: O:\oracle\VISN\apps\apps_st\appl\admin\oapps\conf_VISN.txt
    Adding ports for Server0_oapps
    Setting port s_db_ons_localport to 6320
    Setting port s_db_ons_remoteport to 6420
    Setting port s_cmanport to 1541
    Adding ports for Server1_oapps
    Setting port s_rpcport to 1646
    Setting port s_webssl_port to 4463
    Setting port s_ons_localport to 6120
    Setting port s_ons_remoteport to 6220
    Setting port s_ons_requestport to 6520
    Setting port s_webport to 8020
    Setting port s_active_webport to 8020
    Setting port s_formsport to 9020
    Setting port s_metdataport to 9120
    Setting port s_metreqport to 9220
    Setting port s_jtfuf_port to 9320
    Setting port s_mwaPortNo to 10320-10325
    Setting port s_mwaTelnetPortNo to 10320,10322,10324
    Setting port s_mwaDispatcherPort to 10860
    Setting port s_java_object_cache_port to 12365
    Setting port s_oacore_jms_portrange to 23100-23104
    Setting port s_forms_jms_portrange to 23600-23604
    Setting port s_home_jms_portrange to 24100-24104
    Setting port s_oafm_jms_portrange to 24600-24604
    Setting port s_oacore_ajp_portrange to 21600-21604
    Setting port s_forms_ajp_portrange to 22100-22104
    Setting port s_home_ajp_portrange to 22600-22604
    Setting port s_oafm_ajp_portrange to 25100-25104
    Setting port s_oacore_rmi_portrange to 20100-20104
    Setting port s_forms_rmi_portrange to 20600-20604
    Setting port s_home_rmi_portrange to 21100-21104
    Setting port s_oafm_rmi_portrange to 25600-25604
    Writing configuration file to: O:\oracle\VISN\inst\apps\VISN_oapps\conf_VISN.txt
    Adding ports for Server0_oapps
    Setting port s_db_ons_localport to 6320
    Setting port s_db_ons_remoteport to 6420
    Setting port s_cmanport to 1541
    Adding ports for Server1_oapps
    Setting port s_rpcport to 1646
    Setting port s_webssl_port to 4463
    Setting port s_ons_localport to 6120
    Setting port s_ons_remoteport to 6220
    Setting port s_ons_requestport to 6520
    Setting port s_webport to 8020
    Setting port s_active_webport to 8020
    Setting port s_formsport to 9020
    Setting port s_metdataport to 9120
    Setting port s_metreqport to 9220
    Setting port s_jtfuf_port to 9320
    Setting port s_mwaPortNo to 10320-10325
    Setting port s_mwaTelnetPortNo to 10320,10322,10324
    Setting port s_mwaDispatcherPort to 10860
    Setting port s_java_object_cache_port to 12365
    Setting port s_oacore_jms_portrange to 23100-23104
    Setting port s_forms_jms_portrange to 23600-23604
    Setting port s_home_jms_portrange to 24100-24104
    Setting port s_oafm_jms_portrange to 24600-24604
    Setting port s_oacore_ajp_portrange to 21600-21604
    Setting port s_forms_ajp_portrange to 22100-22104
    Setting port s_home_ajp_portrange to 22600-22604
    Setting port s_oafm_ajp_portrange to 25100-25104
    Setting port s_oacore_rmi_portrange to 20100-20104
    Setting port s_forms_rmi_portrange to 20600-20604
    Setting port s_home_rmi_portrange to 21100-21104
    Setting port s_oafm_rmi_portrange to 25600-25604
    Writing configuration file to: C:\Temp\07261554\conf_VISN.txt
    Adding ports for Server0_oapps
    Setting port s_db_ons_localport to 6320
    Setting port s_db_ons_remoteport to 6420
    Setting port s_cmanport to 1541
    Adding ports for Server1_oapps
    Setting port s_rpcport to 1646
    Setting port s_webssl_port to 4463
    Setting port s_ons_localport to 6120
    Setting port s_ons_remoteport to 6220
    Setting port s_ons_requestport to 6520
    Setting port s_webport to 8020
    Setting port s_active_webport to 8020
    Setting port s_formsport to 9020
    Setting port s_metdataport to 9120
    Setting port s_metreqport to 9220
    Setting port s_jtfuf_port to 9320
    Setting port s_mwaPortNo to 10320-10325
    Setting port s_mwaTelnetPortNo to 10320,10322,10324
    Setting port s_mwaDispatcherPort to 10860
    Setting port s_java_object_cache_port to 12365
    Setting port s_oacore_jms_portrange to 23100-23104
    Setting port s_forms_jms_portrange to 23600-23604
    Setting port s_home_jms_portrange to 24100-24104
    Setting port s_oafm_jms_portrange to 24600-24604
    Setting port s_oacore_ajp_portrange to 21600-21604
    Setting port s_forms_ajp_portrange to 22100-22104
    Setting port s_home_ajp_portrange to 22600-22604
    Setting port s_oafm_ajp_portrange to 25100-25104
    Setting port s_oacore_rmi_portrange to 20100-20104
    Setting port s_forms_rmi_portrange to 20600-20604
    Setting port s_home_rmi_portrange to 21100-21104
    Setting port s_oafm_rmi_portrange to 25600-25604
    Setting temp directory to: C:\Temp\07261554\
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VIS_db.xml
    dest : C:\Temp\07261554\oapps_VIS_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    Port Availability Check :
    -- database node ports --
    Database Port available: Port Value = 1541
    Database Port Value = 1541...... Available
    DB ONS Local Port available: Port Value = 6320
    DB ONS Local Port Value = 6320...... Available
    DB ONS Remote Port available: Port Value = 6420
    DB ONS Remote Port Value = 6420...... Available
    -- apps node ports --
    RPC Port available: Port Value = 1646
    RPC Port Value = 1646...... Available
    Web SSL Port available: Port Value = 4463
    Web SSL Port Value = 4463...... Available
    ONS Local Port available: Port Value = 6120
    ONS Local Port Value = 6120...... Available
    ONS Remote Port available: Port Value = 6220
    ONS Remote Port Value = 6220...... Available
    ONS Request Port available: Port Value = 6520
    ONS Request Port Value = 6520...... Available
    Web Listener Port available: Port Value = 8020
    Web Listener Port Value = 8020...... Available
    Forms Port available: Port Value = 9020
    Forms Port Value = 9020...... Available
    Metrics Server Data Port available: Port Value = 9120
    Metrics Server Data Port Value = 9120...... Available
    Metrics Server Request Port available: Port Value = 9220
    Metrics Server Request Port Value = 9220...... Available
    JTF Fulfillment Server Port available: Port Value = 9320
    JTF Fulfillment Server Port Value = 9320...... Available
    MSCA Server Port available: Port Value = 10320
    MSCA Server Port available: Port Value = 10321
    MSCA Server Port available: Port Value = 10322
    MSCA Server Port available: Port Value = 10323
    MSCA Server Port available: Port Value = 10324
    MSCA Server Port available: Port Value = 10325
    MSCA Server Port Value = 10320-10325...... Available
    MSCA Dispatcher Port available: Port Value = 10860
    MSCA Dispatcher Port Value = 10860...... Available
    Java Object Cache Port available: Port Value = 12365
    Java Object Cache Port Value = 12365...... Available
    OC4J JMS Port Range for Oacore available: Port Value = 23100
    OC4J JMS Port Range for Oacore available: Port Value = 23101
    OC4J JMS Port Range for Oacore available: Port Value = 23102
    OC4J JMS Port Range for Oacore available: Port Value = 23103
    OC4J JMS Port Range for Oacore available: Port Value = 23104
    OC4J JMS Port Range for Oacore Value = 23100-23104...... Available
    OC4J JMS Port Range for Forms available: Port Value = 23600
    OC4J JMS Port Range for Forms available: Port Value = 23601
    OC4J JMS Port Range for Forms available: Port Value = 23602
    OC4J JMS Port Range for Forms available: Port Value = 23603
    OC4J JMS Port Range for Forms available: Port Value = 23604
    OC4J JMS Port Range for Forms Value = 23600-23604...... Available
    OC4J JMS Port Range for Home available: Port Value = 24100
    OC4J JMS Port Range for Home available: Port Value = 24101
    OC4J JMS Port Range for Home available: Port Value = 24102
    OC4J JMS Port Range for Home available: Port Value = 24103
    OC4J JMS Port Range for Home available: Port Value = 24104
    OC4J JMS Port Range for Home Value = 24100-24104...... Available
    OC4J JMS Port Range for Oafm available: Port Value = 24600
    OC4J JMS Port Range for Oafm available: Port Value = 24601
    OC4J JMS Port Range for Oafm available: Port Value = 24602
    OC4J JMS Port Range for Oafm available: Port Value = 24603
    OC4J JMS Port Range for Oafm available: Port Value = 24604
    OC4J JMS Port Range for Oafm Value = 24600-24604...... Available
    OC4J AJP Port Range for Oacore available: Port Value = 21600
    OC4J AJP Port Range for Oacore available: Port Value = 21601
    OC4J AJP Port Range for Oacore available: Port Value = 21602
    OC4J AJP Port Range for Oacore available: Port Value = 21603
    OC4J AJP Port Range for Oacore available: Port Value = 21604
    OC4J AJP Port Range for Oacore Value = 21600-21604...... Available
    OC4J AJP Port Range for Forms available: Port Value = 22100
    OC4J AJP Port Range for Forms available: Port Value = 22101
    OC4J AJP Port Range for Forms available: Port Value = 22102
    OC4J AJP Port Range for Forms available: Port Value = 22103
    OC4J AJP Port Range for Forms available: Port Value = 22104
    OC4J AJP Port Range for Forms Value = 22100-22104...... Available
    OC4J AJP Port Range for Home available: Port Value = 22600
    OC4J AJP Port Range for Home available: Port Value = 22601
    OC4J AJP Port Range for Home available: Port Value = 22602
    OC4J AJP Port Range for Home available: Port Value = 22603
    OC4J AJP Port Range for Home available: Port Value = 22604
    OC4J AJP Port Range for Home Value = 22600-22604...... Available
    OC4J AJP Port Range for Oafm available: Port Value = 25100
    OC4J AJP Port Range for Oafm available: Port Value = 25101
    OC4J AJP Port Range for Oafm available: Port Value = 25102
    OC4J AJP Port Range for Oafm available: Port Value = 25103
    OC4J AJP Port Range for Oafm available: Port Value = 25104
    OC4J AJP Port Range for Oafm Value = 25100-25104...... Available
    OC4J RMI Port Range for Oacore available: Port Value = 20100
    OC4J RMI Port Range for Oacore available: Port Value = 20101
    OC4J RMI Port Range for Oacore available: Port Value = 20102
    OC4J RMI Port Range for Oacore available: Port Value = 20103
    OC4J RMI Port Range for Oacore available: Port Value = 20104
    OC4J RMI Port Range for Oacore Value = 20100-20104...... Available
    OC4J RMI Port Range for Forms available: Port Value = 20600
    OC4J RMI Port Range for Forms available: Port Value = 20601
    OC4J RMI Port Range for Forms available: Port Value = 20602
    OC4J RMI Port Range for Forms available: Port Value = 20603
    OC4J RMI Port Range for Forms available: Port Value = 20604
    OC4J RMI Port Range for Forms Value = 20600-20604...... Available
    OC4J RMI Port Range for Home available: Port Value = 21100
    OC4J RMI Port Range for Home available: Port Value = 21101
    OC4J RMI Port Range for Home available: Port Value = 21102
    OC4J RMI Port Range for Home available: Port Value = 21103
    OC4J RMI Port Range for Home available: Port Value = 21104
    OC4J RMI Port Range for Home Value = 21100-21104...... Available
    OC4J RMI Port Range for Oafm available: Port Value = 25600
    OC4J RMI Port Range for Oafm available: Port Value = 25601
    OC4J RMI Port Range for Oafm available: Port Value = 25602
    OC4J RMI Port Range for Oafm available: Port Value = 25603
    OC4J RMI Port Range for Oafm available: Port Value = 25604
    OC4J RMI Port Range for Oafm Value = 25600-25604...... Available
    OS User and Group Check
    Domain=OAPPS
    ,Username=Administrator
    ,PC-Name=OAPPS
    User belongs to the Administrators Group.
    Port Uniqueness Check :
    -- database node ports --
    -- apps node ports --
    All ports are unique.
    File System Check :
    -- database node mount point --
    Database ORACLE_HOME available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0
    Database ORACLE_HOME admin folder available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil
    Database ORACLE_HOME temp folder available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil\temp
    Database Install Log Directory available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil\log\VISN_oapps
    Database Install Out Directory available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil\out\VISN_oapps\templbac
    Database Install Out Directory available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil\out\VISN_oapps\templbac
    OCM configuration target directory available:
    Mount Point = O:\oracle\VISN\db\tech_st\11.1.0\appsutil\clone
    Database System File Directory available:
    Mount Point = O:\oracle\VISN\db\apps_st\data
    Database Log File Directory available:
    Mount Point = O:\oracle\VISN\db\apps_st\data
    Database Transaction File Directory available:
    Mount Point = O:\oracle\VISN\db\apps_st\data
    Database Archive File Directory available:
    Mount Point = O:\oracle\VISN\db\apps_st\data
    Database OraInventory File Directory available:
    Mount Point = c:\temp
    -- apps node mount point --
    APPL_TOP available:
    Mount Point = O:\oracle\VISN\apps\apps_st\appl
    APPL_TOP admin available:
    Mount Point = O:\oracle\VISN\apps\apps_st\appl\admin
    APPL_TOP mount 2 available:
    Mount Point = O:\oracle\VISN\apps\apps_st\appl
    APPL_TOP mount 3 available:
    Mount Point = O:\oracle\VISN\apps\apps_st\appl
    APPL_TOP mount 4 available:
    Mount Point = O:\oracle\VISN\apps\apps_st\appl
    COMMON_TOP available:
    Mount Point = O:\oracle\VISN\apps\apps_st\comn
    JAVA_TOP available:
    Mount Point = O:\oracle\VISN\apps\apps_st\comn\java\classes
    Temp Directory available:
    Mount Point = O:\oracle\VISN\inst\apps\VISN_oapps\temp
    APPL_TOP admin Install Log Directory available:
    Mount Point = O:\oracle\VISN\inst\apps\VISN_oapps\admin\log
    Apps ORACLE_HOME available:
    Mount Point = O:\oracle\VISN\apps\tech_st\10.1.3
    Tools ORACLE_HOME available:
    Mount Point = O:\oracle\VISN\apps\tech_st\10.1.2
    OCM configuration target directory available:
    Mount Point = O:\oracle\VISN\apps\tech_st\10.1.3\appsutil\clone
    OCM configuration target directory available:
    Mount Point = O:\oracle\VISN\apps\tech_st\10.1.2\appsutil\clone
    Apps ORACLE_HOME OraInventory File Directory available:
    Mount Point = c:\temp
    Tools ORACLE_HOME OraInventory File Directory available:
    Mount Point = c:\temp
    Writing configuration file to: O:\oracle\VISN\db\tech_st\11.1.0\appsutil\conf_VISN.txt
    Adding ports for Server0_oapps
    Setting port s_db_ons_localport to 6320
    Setting port s_db_ons_remoteport to 6420
    Setting port s_cmanport to 1541
    Adding ports for Server1_oapps
    Setting port s_rpcport to 1646
    Setting port s_webssl_port to 4463
    Setting port s_ons_localport to 6120
    Setting port s_ons_remoteport to 6220
    Setting port s_ons_requestport to 6520
    Setting port s_webport to 8020
    Setting port s_active_webport to 8020
    Setting port s_formsport to 9020
    Setting port s_metdataport to 9120
    Setting port s_metreqport to 9220
    Setting port s_jtfuf_port to 9320
    Setting port s_mwaPortNo to 10320-10325
    Setting port s_mwaTelnetPortNo to 10320,10322,10324
    Setting port s_mwaDispatcherPort to 10860
    Setting port s_java_object_cache_port to 12365
    Setting port s_oacore_jms_portrange to 23100-23104
    Setting port s_forms_jms_portrange to 23600-23604
    Setting port s_home_jms_portrange to 24100-24104
    Setting port s_oafm_jms_portrange to 24600-24604
    Setting port s_oacore_ajp_portrange to 21600-21604
    Setting port s_forms_ajp_portrange to 22100-22104
    Setting port s_home_ajp_portrange to 22600-22604
    Setting port s_oafm_ajp_portrange to 25100-25104
    Setting port s_oacore_rmi_portrange to 20100-20104
    Setting port s_forms_rmi_portrange to 20600-20604
    Setting port s_home_rmi_portrange to 21100-21104
    Setting port s_oafm_rmi_portrange to 25600-25604
    File Space Check :
    -- database node space checks --
    Disk space on system acceptable:
    Database ORACLE_HOME = O:\oracle\VISN\db\tech_st\11.1.0
    required = 5600.0
    actual = 446808.046875
    Disk space on system acceptable:
    Database System File Directory = O:\oracle\VISN\db\apps_st\data
    required = 20200.0
    actual = 441208.046875
    Disk space on system acceptable:
    Database Log File Directory = O:\oracle\VISN\db\apps_st\data
    required = 950.0
    actual = 421008.046875
    Disk space on system acceptable:
    Database Transaction File Directory = O:\oracle\VISN\db\apps_st\data
    required = 103350.0
    actual = 420058.046875
    Disk space on system acceptable:
    Database Archive File Directory = O:\oracle\VISN\db\apps_st\data
    required = 64500.0
    actual = 316708.046875

    -- apps node space checks --
    Disk space on system acceptable:
    APPL_TOP = O:\oracle\VISN\apps\apps_st\appl
    required = 5800.0
    actual = 252208.046875
    Disk space on system acceptable:
    APPL_TOP mount 2 = O:\oracle\VISN\apps\apps_st\appl
    required = 2800.0
    actual = 246408.046875
    Disk space on system acceptable:
    APPL_TOP mount 3 = O:\oracle\VISN\apps\apps_st\appl
    required = 8400.0
    actual = 243608.046875
    Disk space on system acceptable:
    APPL_TOP mount 4 = O:\oracle\VISN\apps\apps_st\appl
    required = 3100.0
    actual = 235208.046875
    Disk space on system acceptable:
    COMMON_TOP = O:\oracle\VISN\apps\apps_st\comn
    required = 3200.0
    actual = 232108.046875
    Disk space on system acceptable:
    Apps ORACLE_HOME = O:\oracle\VISN\apps\tech_st\10.1.3
    required = 1400.0
    actual = 228908.046875
    Disk space on system acceptable:
    Tools ORACLE_HOME = O:\oracle\VISN\apps\tech_st\10.1.2
    required = 1400.0
    actual = 227508.046875
    Disk space on system acceptable:
    Temp Directory = O:\oracle\VISN\inst\apps\VISN_oapps\temp
    required = 1024.0
    actual = 226108.046875
    Host/Domain
    command: ping -n 1 oapps
    Pinging oapps.oracle.local http://192.168.163.4 with 32 bytes of data:
    Reply from 192.168.163.4: bytes=32 time=2ms TTL=128
    Ping statistics for 192.168.163.4:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 2ms, Maximum = 2ms, Average = 2ms
    host ping has succeeded
    command: ping -n 1 oapps.oracle.local
    Pinging oapps.oracle.local http://192.168.163.4 with 32 bytes of data:
    Reply from 192.168.163.4: bytes=32 time<1ms TTL=128
    Ping statistics for 192.168.163.4:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    host.domain ping has succeeded
    System Utilities
    command: cmd.exe /c C:\temp\07261549\rapidinstall\bin\adchkutl.cmd C:\cygwin\bin C:\MSVS8\VC
    C:\temp\07261549\rapidinstall>echo off
    Setting environment for using Microsoft Visual Studio 2005 x86 tools.
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    /cygdrive/c/MSVS8/VC/BIN/cl
    'cc' is available.
    /cygdrive/c/MSVS8/VC/BIN/link
    'link' is available.
    ERRORCODE = 0 ERRORCODE_END
    System Utilities Availability test has succeeded
    Database Port : 1541
    RPC Port : 1646
    Web SSL Port : 4463
    ONS Local Port : 6120
    ONS Remote Port : 6220
    ONS Request Port : 6520
    Web Listener Port : 8020
    Active Web Port : 8020
    Forms Port : 9020
    Metrics Server Data Port : 9120
    Metrics Server Request Port : 9220
    JTF Fulfillment Server Port : 9320
    MSCA Server Port : 10320-10325
    MCSA Telnet Server Port : 10320,10322,10324
    MSCA Dispatcher Port : 10860
    Java Object Cache Port : 12365
    OC4J JMS Port Range for Oacore : 23100-23104
    OC4J JMS Port Range for Forms : 23600-23604
    OC4J JMS Port Range for Home : 24100-24104
    OC4J JMS Port Range for Oafm : 24600-24604
    OC4J AJP Port Range for Oacore : 21600-21604
    OC4J AJP Port Range for Forms : 22100-22104
    OC4J AJP Port Range for Home : 22600-22604
    OC4J AJP Port Range for Oafm : 25100-25104
    OC4J RMI Port Range for Oacore : 20100-20104
    OC4J RMI Port Range for Forms : 20600-20604
    OC4J RMI Port Range for Home : 21100-21104
    OC4J RMI Port Range for Oafm : 25600-25604
    DB ONS Local Port : 6320
    DB ONS Remote Port : 6420
    Oracle Connection Manager Port : 1541
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxdbctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_db.xml
    dest : C:\Temp\07261554\oapps_VISN_db.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\temp\07261549\rapidinstall\etc\adxmlctx.tmp
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    instantiate file:
    source : C:\Temp\07261554\oapps_VISN_apps.xml
    dest : C:\Temp\07261554\oapps_VISN_apps.xml
    ExpressInstallPanel
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    DoInstallPanel - User continued install at warning dialog.
    Starting from CD area C:\temp\07261549
    RW-50010: Error: - script has returned an error: 2
    Returning - 0

  • Unicode display in SQL Studio 7.5

    Hello,
    my SQL Studio displays Unicode strings as "??" when I display the contents of a table. The strings are stored correctly and can be retrieved from the DB intact.
    I am testing with chinese.
    Is there a setting to be changed or does the SQL Studio just display 8-bit characters?
    thanks
    Walter

    Hi Roland,
    yes I really tested these four areas and it is exactly the Result Window that does not do it.
    Summing up: We know we use the newest available version of SQL Studio, we checked the country settings in our system, we experimented with the font settings in Studio and one of four areas does not work as expected.
    Looks like an omission to me now (or maybe a bug ).
    Here is how to produce the error:
    - install the MS PinYin IME on your Windows system (this will enable you to enter chinese characters)
    - in SQL Studio, take any table that has a string column.
    - in SQL Dialog, do an
      INSERT INTO table VALUES (1, "kuai4")
      in which you switch to PinYin input to enter the character kuai4
    - you will see the chinese char in the Status Window, too
    - upon
      SELECT * FROM table
      the Result Window will show a "?"
    Thanks
    Walter

  • SQL2005 Server standard in windows 7 32bit

    I installed my sql2005 server in windows 7 32bit and found out that it is used as sql express Server.
    did I installed it the case or I did wrong installation.
    is there a way to upgrade  sql2005 server standard to 2008 version?
    thanks
    Dov

    I installed my sql2005 server in windows 7 32bit and found out that it is used as sql express Server.
    did I installed it the case or I did wrong installation.
    is there a way to upgrade  sql2005 server standard to 2008 version?
    thanks
    Dov
    Hello,
    SQL server express edition can be upgraded to SQL server standard and enterprise but before doing that you need to have valid license for stand and ent Edition.Also let me tell you ,you cannot install Enterprise edition of SQL 2005 on windows 7 but
    you can install Standard edition. Read below article.
    For standard edition I am not 100 % sure because in Microsoft website it is only mentioned that enterprise cannot be installed on win 7
    http://msdn.microsoft.com/en-us/library/ms143506(v=sql.90).aspx
    For upgrade paths supported.
    http://technet.microsoft.com/en-us/library/ms143393(v=sql.90).aspx
    PS: Make sure your SQL server 2005 is patched to SP4 before upgrade
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Unable to connect 10gds to 10g on windows 7 32bit

    hi ,
    I am not able to connect from 10gds (from forms ) to 10g database installed on windows 7 32bit.
    If i try to connect i am getting the following error.
    ORA-00604: error occurred at recursive SQL level string
    ORA-01009: missing mandatory parameter
    Please help me to solve this.
    lea

    901776 wrote:
    hi,
    I have installed
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 and
    Oracle Developer Suite 10g (9.0.4) on windows 7 32 bit.I am getting errors while connecting from forms to database.
    rgds,
    leaHi,
    If possible, try to upgrade your database to 11g, since 10.2.0.1 is really old, and currently unsupported on all platforms...
    Is this a newly installed development database, or is it a production (clone) instance?
    Have you had a chance to look in the alert log on the instance? Is it only your Forms-installation that can't connect?
    //Johan

  • Need help installing sql server 2012 on windows server 2012 core

    Hi Guys 
    I am having trouble installing sql server 2012 on windows server 2012 core. I am doing this on VM and my VM is not connected to internet. 
    This setup is part of preparing lab for sql serve exam 70-462. I would really appreciate your help.
    I am including the links to the log files that were generated after installation. There are following 2 files
    Component Update and
    Detail_Global_Rules
    Thanks

    Hi
    iworkonline,
    Regarding to your original question, you can work around it according to Prashanth’s post or unclick the “Include SQL Server Product Updates" checkbox when installing SQL Server on your VM.
    Regarding to your second question, I make a test using TechNet Virtual Lab and everything works as expected . Below are my steps.
    1. Choose Web client after laughing the Lab.
    2. Choose SQLONE machine and “OPEN CHARMS” as follows, then search SQL Server Management Studio, use it to connect to the default instance (which has been installed in the lab).
    From your description, you get error message “Device not ready”. Could you please post more details? Are you installing SQL Server 2012 on the TechNet Virtual Lab?
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Replacement for MaxDB's SQL Studio

    Is there a better frontend on the market to manage SQLs on MaxDB?
    We had Oracle before with an excellent tool called GOLDEN => http://www.benthicsoftware.com/products.htm
    Do you know any better for MaxDB???
    Thanks.

    Hi Rainer,
    we're ofcourse interested in improving our SQL Studio tool, but let's see if I can help you with what we currently got.
    1. Line numbering of SQL output does not work properly (if you have some 100 recs and you jump to the end if the output list, line numbers disappear)
    Answer:
    I've tried this on a local database with about 2500 results. Jumping from beginning to end or back does always show the correct line number.
    I then tried it on a remote database, with a statement which showed over 10000 results, same thing: line numbers were showing all the time.
    During page-wise jumping, sometimes I had to wait a second or 2, because I had enabled the 'clipped resultset.
    2. There should be an easy way to UN-/COMMENT a complete block of SQL commands.
    Answer:
    If you select a block of text in the SQL Dialog window and <b>right click</b> the highlighted text, there should be an option to (un-)comment it.
    3. If you have several SQL statements, all of them should appear in the output box.
    Answer:
    I'm sorry, I don't really know what you mean here. Do you mean that you specify multiple SQL statements and would like to see all results?
    Hope that helps a bit.
    Thanks & regards,
    Roland
    P.S.: btw. I am using SQL Studio version 7.6.00 Build 27
    Reason for editing: corrected spelling mistakes.

  • Creating tables on SQL studio and viewing the table in the SAP system

    i have just created a table using the SQL studio and wants to use it view it in the SAP system using the SAP logon. till now i have not found a way to create it therefore any help is much appreciated.

    Hmm... you want to see tables via SAPLogon ??
    Ok, let's assume you really want to access tables via ABAP instead.
    For that you've two options:
    1. Create the table in the ABAP dictonary (SE11) exactly like you created it in the database and activate the table.
    After that you can access the table via SE16 or any ABAP as you like.
    2. You don't create the table in the ABAP dictonary and use native SQL to access the data.
    Neither of these options is meant to be the way to do it.
    The correct way would be to design the whole table in the ABAP dictionary and create the table on the database from that.
    regards,
    Lars

  • ITunes 10.5 on Windows 7 (32bit) doesn't display the iTunes store

    Hello there,
    on my Windows 7 (32bit) system, already with iTunes 10.4 I encountered the problem that the iTunes store remained inaccessible - it simply wouldn't load/display. Problem was solved by removing all Apple software, cleaning up the registry, rebooting, reinstalling iTunes 10.4.1, and NOT installing Safari 5.x - because as soon as Safari got installed, the problem would reappear.
    Now with iTunes 10.5, the problem is back. Only that this time it does not matter if Safari is installed or not - the store simply won't come up.
    I've tried the whole support articles suggestions up and down - to no avail.
    It's not a problem of firewall, antivirus, hosts file etc. - the diagnose function says clearly that even https is OK, all settings in the internet options are right, etc. etc. - I've spent days on that, and believe me, I'm sure about it.
    The diagnose function says, however, than QuickTime would not be available. No matter if QuickTime IS installed or not, before or after iTunes 10.5 that says it would neither contain nor need QuickTime anymore.
    After cleaning out all Apple software and its traces, a reboot, and a reinstallation of iTunes 10.4.1, the store is accessible again - only that iTunes 10.4.1 can't use my iPhone with iOS 5 on it.
    So I'm either stuck with an iTunes that CAN access the store, but can NOT sync my iPhone, or with one that CAN syn my iPhone, but can NOT access the store.
    Besides, with iTunes 10.5, the separately installed iCloud control panel app simply won't come up - I can click until I get blue in the face...
    Obviously, for iCloud control panel, although it is only listed as "recommended", it seems it's actually "required" to have Outlook 2007 or 2010 - and I have Outlook 2003 and do NOT intend to switch to a higher MS Office package.
    I got an appointment at the Apple Store nearby now for Wednesday noon - to revert my iPhone to iOS 4. Then I could at least go on using the iPhone until again the first apps won't support iOS 4 any longer, as it happened shortly after the launch of iOS 4 when iOS 3.1.3 wasn't supported any longer.
    Oh, I forgot to mention - during the update/upgrade to iTunes 10.5 / iOS 5, the sync destroyed my recent backup and hung - the only way out was to kill the backup process and continue, which resulted in a "new", blank phone. Lost some years' app data and a lot of important bookmarks that way.
    Needless to say that the iPhone was my last Apple product ...

    Peter Hah
    After spending another two days on pinning down the iTunes 10.5 blank store page problem, here's the solution to be found: https://discussions.apple.com/thread/3372617?start=0&tstart=0
    Look out for "japiohelp".
    In short:
    a) press Windows key + "R", enter "cmd", and press Ctrl+Shift+Enter (= runs as admin)
    b) enter "netsh winsock reset" and pres enter
    c) reboot the computer
    and Bob's your uncle.
    P.

  • How can I login to Oracle Express Ed 11g Rel 2 on windows XP 32bit?

    I installed Oracle Express Ed 11g Release 2 32bit on windows XP 32bit and I can not login ito it. Installation asked for a password to be created at installation which I used to login with.
    The login window is started from a shortcut that installation created on my desktop. I tried to download and install three times. I went thru a SW removable before another download. The login responds with "Invalid Login Credentials"
    I have admin rights to my PC. What could be the issue?
    Please help.
    Thanks.

    What could be the issue? Could be many different causes. Mistyping the password is one, or the database could be offline but in most cases that will give a different error message. Open a command box, Start/Run/cmd and try:
    $ sqlplus /nolog
    connect system
    ... Password ... <the one used with the installer> ... Connected.
    select name from v$database;
    login window is started from a shortcut If you're talking about the Apex page, the one that opens a web browser to http://<hostname>:8080/apex and that one needs Apex credentials, not database user credentials. Apex users can be mapped to database users but that is something done via the apex administrator.
    Two database accounts "out of the box" are SYS and SYSTEM users, those are special- SYS owns the catalog, SYSTEM is a user with dba role privileges, almost as powerful within the database as the SYS user.

Maybe you are looking for

  • Unable to install Oraclei 8.1.7 on P4 machine

    I am unable to install the above version of Oracle on a IBM P4 machine with 256 MB RAM. Got the following message while installing: JRE was not found at: d:\software\Oracle8i\stage\components\Oracle.swd.jre/1.1.7.24/1/Datafiles/Expanded/jre\win32\bin

  • PAL dvd Menu not accepting audio files

    I need some help! I am converting an NTSC DVD to PAL. My menu is a short video loop with audio. But I cannot seem to find an audio format that the menu will accept. I tried to make a .wav and a .ac3 audio file so far but neither is working. I have .m

  • Where are my mailboxes and mail?

    Last night I downloaded OS X 10.8.4 to my iMac and now all of my Mailboxes and mail from yesterday back are not visible.  Where can I find them?

  • ???Exit JAVA app in Win2K LOCKS MACHINE???

    When i hit the X button in the top right to close my apps Win2000 Locks up completly. Why? What do i install to fix this problem? Im running JSDK 1.4.1_01 win 2k dont know what service packs or crap is installed! Someone help, i need to give presenta

  • Controlling the layout of application objects in MIDP

    If I don't want to use the MIDP high level user interface API, can I control the layout and position of application objects in MIDP? thanks in advance, Rani