Registration of an Oracle 9ibook

I made registration 4 days ago to get the registration key for my Oracle 9i book.
Answer should come in a few minutes, but I never received the mail with my key.
Somebody can help me to know how I can get it ?
Thanks
Dany

I could be wrong, but I don't think there is an easy way to do that. You can look at the licensing doc and see what features there are, and you can look at the scripts in $ORACLE_HOME/rdbms/admin for some more clues. I think in the case of ASO, it is installed by default but you have to configure it.
Is there some more specific thing you are after, maybe you can get a better answer?

Similar Messages

  • Registration Key for Oracle 10g

    Iam trying get a registration key for Oracle 10g
    but after choosing DVD or CD Option and hit Continue
    button I get this message:
    We're sorry.
    An unexpected exception has occurred when contacting Database. Cannot proceed further.
    You can change or re-visit previous page(s) by starting a new session.
    If you have questions regarding registration, please contact us.
    Paddy

    I have been unsucesfull in getting the Oracle 10g regitration keys. After I update my profile and hit continue I get a page not found error. Any help will be appreciated.

  • How to run SSO registration tool in Oracle SOA Suite 10g

    Hi,
    I want to enable SSO for applications running in SOA Suite.
    All the documentation discuss about enabling OSSO in Oracle Infrastructure or Oracle Identity Server but not for SOA Suite.
    The biggest issue is SOA Suite doesnot has ORASSO application in it, so please guide me how to implement O-SSO in SOA Suite.

    When you refer to the SOA suite, are you talking about the HTTP Server and OC4J or the BPEL products?
    For HTTP server and OC4J, implementation is done like that of a AS10g middle tier. You need to run the SSO registration tool and configure the containers to use SSO. To do this you need to have a IDM 10.1.4 installed somewhere else.
    Regards,
    Luis

  • XML registration problem In Oracle

    Hi Friends,
    First of all thanks in advance for reading my post. Also, congratulate you all to this modified forum.
    AS redirected from Oracle SQL/PLSQL forum i've to post it here once again. Sorry for the duplicate posting in this forum. :(
    My main objective to publish XML through oracle by using some external dtd. I'm new to this - so don't have any clear idea regarding this. I've prepared one xml file using some dtd. Here are the details -
    OE>>
    OE>>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:03.41
    OE>>And, dtd script is as follows -
    Name of the dtd is StandardInterfaces.xsd
    <!DOCTYPE EmpSchedule_V2 [
    <!ELEMENT EmpSchedule_V2 (period+, EmployeeList+) >
    <!ELEMENT period (start,end) >
    <!ELEMENT start (#PCDATA) >
    <!ELEMENT end   (#PCDATA) >
    <!ELEMENT EmployeeList (emp)+ >
    <!ELEMENT emp (Employee_ID,First,Sal,HireDate) >
    <!ELEMENT Employee_ID (#PCDATA) >
    <!ELEMENT First (#PCDATA) >
    <!ELEMENT Sal (#PCDATA) >
    <!ELEMENT HireDate (#PCDATA) >
    ]>And, the xml is as follows -
    Name of the xml is - emp.xml
    <?xml version="1.0" encoding= "UTF-8" ?>
    <EmpSchedule_V2 xmlns= "http://localhost/satid/StandardInterfaces.xsd" >
    <period>
    <start>2006-03-12Z</start>
    <end>2006-03-15Z</end>
    </period>
    <EmployeeList>
    <emp>
    <Employee_ID>7369</Employee_ID>
    <First>Raja</First>
    <Sal>28000</Sal>
    <HireDate>2006-03-12Z</HireDate>
    </emp>
    </EmployeeList>
    </EmpSchedule_V2>I've configured my IIS Server 7.0 in my pc.
    And, when i'm executing like -
    http://localhost/satid/emp.xmlWhere satid is the virtual directory in the IIS Server - it is showing the xml. The actual path is - E:\public\schemas .
    Now, if i want to register it from oracle oe schema which has all the required privs - is throwing some error message.
    GRANT dba, xdbadmin TO OE;And, now i've tried almost all of the given technique, but unable to proceed any further.
    BEGIN
      DBMS_XMLSCHEMA.registerURI(
                                   'http://localhost/satid/StandardInterfaces.xsd',
                                   '/satid/StandardInterfaces.xsd',
                                   LOCAL=>TRUE,
                                   GENTYPES=>TRUE,
                                   GENBEAN=>FALSE,
                                   GENTABLES=>TRUE
    END;or,
    DECLARE
      v_return  BOOLEAN;
    BEGIN
      v_return := dbms_xdb.createFolder('/satid/');
      COMMIT;
    END;And,
    BEGIN
      DBMS_XMLSchema.registerSchema(
                                     schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
                                     schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd')
    END; In the given two cases, both the server(IIS Server And OC4J) is running. I've checked it by the following command -
    http://Sat-PC:5560/
    http://localhost/satid/And, the error comes as -
    OE>BEGIN
      2    DBMS_XMLSchema.registerSchema(
      3      schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
      4      schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd'));
      5  END;
      6  /
    BEGIN
    ERROR at line 1:
    ORA-31001: Invalid resource handle or path name "/satid/StandardInterfaces.xsd"
    ORA-06512: at "SYS.XDBURITYPE", line 4
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 167
    ORA-06512: at line 2
    Elapsed: 00:00:01.03
    OE>
    OE>
    OE>DECLARE
      2    v_return  BOOLEAN;
      3  BEGIN
      4    v_return := dbms_xdb.createFolder('/satid/');
      5    COMMIT;
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:08.42
    OE>
    OE>
    OE>BEGIN
      2    DBMS_XMLSchema.registerSchema(
      3      schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
      4      schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd'));
      5  END;
      6  /
    BEGIN
    ERROR at line 1:
    ORA-31001: Invalid resource handle or path name "/satid/StandardInterfaces.xsd"
    ORA-06512: at "SYS.XDBURITYPE", line 4
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 167
    ORA-06512: at line 2
    Elapsed: 00:00:00.00
    OE>
    OE>Now, my question is - will i have to configure OC4J? If yes, can anyone point me the exact document. I've tried to find over internet. But, so much content come up with this topic - that makes me more confused.
    In other case, can anyone tell me how to use IIS Server 7.0 in this regard?
    Or, if you have any other suggestion kindly share that with me.
    Thanks for being so patience to read my post. I'll be waiting for your reply.
    Regards.

    Hi Frinds,
    I've tried in this way to register one customised XML schema. But, unable to register.
    OE>>
    OE>>CREATE OR REPLACE PROCEDURE XML_REG
      2  IS
      3    l_temp  clob;
      4    l_text  varchar2(900);
      5  BEGIN
      6    l_temp := httpuritype('http://localhost/satyakid/StandardInterfaces.xsd').getclob;
      7    l_text := substr(l_temp, 1, 900);
      8    dbms_output.put_line(l_text);
      9   
    10    DBMS_XMLSCHEMA.registerSchema('StandardInterfaces.xsd', l_text);
    11  END XML_REG;
    12  /
    Procedure created.
    Elapsed: 00:00:00.23
    OE>>
    OE>>
    OE>>exec XML_REG;
    <!DOCTYPE EmpSchedule_V2 [
    <!ELEMENT EmpSchedule_V2 (period+, EmployeeList+) >
    <!ELEMENT period (start,end) >
    <!ELEMENT start (#PCDATA) >
    <!ELEMENT end   (#PCDATA) >
    <!ELEMENT EmployeeList (emp)+ >
    <!ELEMENT emp (Employee_ID,First,Sal,HireDate) >
    <!ELEMENT Employee_ID (#PCDATA) >
    <!ELEMENT First (#PCDATA) >
    <!ELEMENT Sal (#PCDATA) >
    <!ELEMENT HireDate (#PCDATA) >
    ]>
    BEGIN XML_REG; END;
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00007: unexpected end-of-file encountered
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14
    ORA-06512: at "OE.XML_REG", line 10
    ORA-06512: at line 1
    Elapsed: 00:00:00.22
    OE>>
    OE>>
    OE>>
    OE>>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.84
    OE>>Where am i missing?
    Please advice.
    Regards.

  • Oracle 9i Database Registration Key Needed

    Greetings, please email the registration key for the Oracle 9i database software installation so that I may proceed. I received a page not found error when attempting to register.

    hello sir,
    i am a student of information technology from one of the most reputed engineering collage of India.
    i also got the same problem while the registration for the oracle 9i, please tell me if you succeeded in registration and if yes then how.
    thanking for responding to my query,
    your's
    atul kaushik

  • Oracle 9i Database Software Registraton Does Not Work

    The link http://www.oracle.com/technology/software/registration/index.html?9ibooks does not work and shows the messgae, "An error occurred while processing the request. Try refreshing your browser. If the problem persists contact the site administrator."
    Please fix the link or give instructions to get the registration key.
    Thank you,
    Robert Hunter
    [email protected]

    This program is defunct. We suggest that you download Oracle Database 10g Express Edition:
    http://www.oracle.com/technology/products/database/xe/index.html
    ...which is free, with no reg key required.
    Cheers, OTN

  • Download registration key fails

    I have got the Oracle Database 10g CDs. When trying to install i have to get a registration key from Oracle. Clicking on the button "Click here to get your password" I have to log in and continuing I am directed to a site where I can choose between CD or DVD. Then I end in "Sorry this page was not found". It has been the same for some days now.
    I really would like to install Oracle ;-)
    What can I do?
    thanx
    Hans-Peter

    ...got the same problem. Then I called Tech line, they passed me around...ended up to a Sales rep, and he asked me if I wanted to purchase a license :)

  • Oracle eBusiness R12 wont install on Windows 2003

    I have been trying for 3 days to install the current (downloaded from Oracle Monday 18th Jan 2010) eBusiness suite on Windows 2003 with no success.
    The installation always fails on Step 3 of 5 - Registering Applications Technology Stack with error RW-50004 Running APPL-TOP Intall Driver for VIS instance.
    The log file in E:\oracle\VIS\inst\apps\VIS_oracler12\admin\log\ApplyAppsTechStack_01261228.log contains:
    Started ApplyAppsTechStack at Tue Jan 26 12:28:32 GMT 2010
    Version:
         ApplyAppsTechStack.java     :      120.23
    Executing home registration for s_weboh_oh...
    Registering using Registration Driver
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\ouicli.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\txkstubcfg1013.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\apachectl
    setting permissions: 700
    Executing script in InstantiateFile:
    e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    script returned:
    Timed out( 3750000 ): Interrupted Exception
    Beginning OUI CLI cloning for s_weboh_ohTue Jan 26 12:28:35 2010
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre\bin\java.exe -classpath C:\StageR12\startCD\Disk1\rapidwiz\jlib\java;e:\oracle\VIS\apps\tech_st\10.1.3\oui\jlib\OraInstaller.jar;C:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;C:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e e:\oracle\VIS\inst\apps\VIS_oracler12\appl\admin\VIS_oracler12.xml -nolink -oaVar s_weboh_oh -homestub weboh -log e:\oracle\VIS\inst\apps\VIS_oracler12\admin\log\ohclone.log
    running OUI CLI home cloning:
    e:\oracle\VIS\apps\tech_st\10.1.3\oui\bin\setup.exe -nowait -clone -silent -force -nolink -waitForCompletion session:ORACLE_HOME=e:\oracle\VIS\apps\tech_st\10.1.3 oracle.as.j2ee.top:s_asInstanceName=VIS_oracler12_WEBOH oracle.as.j2ee.top:s_adminName=oc4jadmin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=VIS_oracler12_WEBOH -J-Doracle.installer.noLink=true
    Executing script in InstantiateFile:
    e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    script returned:
    .end std out.
    .end err out.
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\ouicli0.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\txkstubcfg10130.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to e:\oracle\VIS\inst\apps\VIS_oracler12\out\apachectl0
    setting permissions: 700
    e:\oracle\VIS\inst\apps\VIS_oracler12\admin\log\adcvmlog.xml does not exist. Ignore it
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone
    ouicli.pl INSTE8_APPLY -1
    AutoConfig is exiting with status 1
    RC-50013: Fatal: Instantiate driver did not complete successfully.
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    But this does not shed any light.
    I have cygwin installed.
    I have VC++ installed.
    I have tried with the current Active Perl (and without as Oracle seems to now include perl in e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread - so I tested without incase 2 versions were causing a conflict).
    I desperately need help and any assistance would be appreciated!

    Hsawwan,
    I have actually solved it. I did 2 things different this time to all the previous times and I'm not sure which fixed it. But to assist others on here this is what I did:
    1. Used Visual Studio 2005 Standard instead of Visual C++ 2005 Express (we have MSDN so this was rather simple for us)
    2. Used Cygwin 1.5 instead of the current release. As Oracle seems to only work on very old Windows technology I figured that the Cygwin released in 2009 was far too recent. The 1.5 release is on the cygwin site but is only kept around for Windows 9x platforms.
    Also of note is that the mktemp package is not in the current Cygwin release, not even as a obsolete package so i was always missing this. In the 1.5 release it is available if you tick the obsolete package.
    I hope that information helps someone else on here!

  • Problem installing StorADE 2.4 in Oracle Java Web Console 3.1 with CAM 6.6.

    Hi Guys,
    I am having problem installing StorADE 2.4 in Oracle Java Web Console 3.1 with CAM 6.6.
    I am sure I have seen them together in Web Console but doesn't seems to be working... I am getting all sort of javv exception errors...
    Also the installation of StorADE wasn't trivial, I had to create following link for the installation to succeed... and no errors during the installation btw.
    - linked /usr/sbin/smcwebserver -> /usr/sadm/bin/smcwebserver
    - linked /usr/sbin/smreg -> /usr/sadm/bin/smreg
    root # grep -i error /var/sadm/install/Storage_ADE/Install.log
    root #
    last few logs....
    SUNWstadm: Checking the status of the Java Web Console.
    SUNWstadm: Stopping the Java Web Console to register.
    Shutting down Oracle Java(TM) Web Console Version 3.1 ...
    The console is stopped
    SUNWstadm: Registering Storage_A.D.E_2.4 with the Java Web Console.
    Warning: smreg is obsolete and is preserved only for
    compatibility with legacy console applications. Use wcadmin instead.
    Type "man wcadmin" or "wcadmin --help" for more information.
    Registering Storage_A.D.E_2.4.
    SUNWstadm: Enabling the Java Web Console console_debug_log file
    to automatically grow and rollover using the default settings.
    Warning: smreg is obsolete and is preserved only for
    compatibility with legacy console applications. Use wcadmin instead.
    Type "man wcadmin" or "wcadmin --help" for more information.
    SUNWstadm: Enabling the Java Web Console to startup automatically
    during subsequent system boot and gracefully stop during system
    shutdown. If you do not want this capability please execute the
    following command: /usr/sadm/bin/smcwebserver disable
    SUNWstadm: Starting the Java Web Console after registration.
    Starting Oracle Java(TM) Web Console Version 3.1 ...
    The console is running
    To complete the configuration, point your browser to:
    https://<hostname>:6789
    Please refer to the SUNWstadm release notes for additional
    installation, configuration, and usage information.
    Installation of <SUNWstadm> was successful.
    SUNWstazt is already installed
    SUNWstazh is already installed
    SUNWstako is already installed
    SUNWstaja is already installed
    SUNWstafr is already installed
    Installation successful
    | You have installed the following: |
    | |
    | o Storage A.D.E. 2.4 - Enterprise Edition - Success |
    | o Storage A.D.E. 2.4 - Management Station UI - Success |
    | |
    | The UI can be accessed at the URL : https://<hostname>:6789/ |
    Finished at: Friday, 20 August 2010 11:14:55 AM EST
    Note: A log has been saved to: /var/sadm/install/Storage_ADE/Install.log
    Any pointers will be appreciated....
    Thanks,
    Nitin

    Hi Guys,
    I am having problem installing StorADE 2.4 in Oracle Java Web Console 3.1 with CAM 6.6.
    I am sure I have seen them together in Web Console but doesn't seems to be working... I am getting all sort of javv exception errors...
    Also the installation of StorADE wasn't trivial, I had to create following link for the installation to succeed... and no errors during the installation btw.
    - linked /usr/sbin/smcwebserver -> /usr/sadm/bin/smcwebserver
    - linked /usr/sbin/smreg -> /usr/sadm/bin/smreg
    root # grep -i error /var/sadm/install/Storage_ADE/Install.log
    root #
    last few logs....
    SUNWstadm: Checking the status of the Java Web Console.
    SUNWstadm: Stopping the Java Web Console to register.
    Shutting down Oracle Java(TM) Web Console Version 3.1 ...
    The console is stopped
    SUNWstadm: Registering Storage_A.D.E_2.4 with the Java Web Console.
    Warning: smreg is obsolete and is preserved only for
    compatibility with legacy console applications. Use wcadmin instead.
    Type "man wcadmin" or "wcadmin --help" for more information.
    Registering Storage_A.D.E_2.4.
    SUNWstadm: Enabling the Java Web Console console_debug_log file
    to automatically grow and rollover using the default settings.
    Warning: smreg is obsolete and is preserved only for
    compatibility with legacy console applications. Use wcadmin instead.
    Type "man wcadmin" or "wcadmin --help" for more information.
    SUNWstadm: Enabling the Java Web Console to startup automatically
    during subsequent system boot and gracefully stop during system
    shutdown. If you do not want this capability please execute the
    following command: /usr/sadm/bin/smcwebserver disable
    SUNWstadm: Starting the Java Web Console after registration.
    Starting Oracle Java(TM) Web Console Version 3.1 ...
    The console is running
    To complete the configuration, point your browser to:
    https://<hostname>:6789
    Please refer to the SUNWstadm release notes for additional
    installation, configuration, and usage information.
    Installation of <SUNWstadm> was successful.
    SUNWstazt is already installed
    SUNWstazh is already installed
    SUNWstako is already installed
    SUNWstaja is already installed
    SUNWstafr is already installed
    Installation successful
    | You have installed the following: |
    | |
    | o Storage A.D.E. 2.4 - Enterprise Edition - Success |
    | o Storage A.D.E. 2.4 - Management Station UI - Success |
    | |
    | The UI can be accessed at the URL : https://<hostname>:6789/ |
    Finished at: Friday, 20 August 2010 11:14:55 AM EST
    Note: A log has been saved to: /var/sadm/install/Storage_ADE/Install.log
    Any pointers will be appreciated....
    Thanks,
    Nitin

  • How to design a registration page

    Hi,
    I want to design a registration page for oracle EBS R12. Can you guide me to step by step docs for that?
    Thanks

    Hi ,
    For creating a page you can refer this link : https://blogs.oracle.com/prajkumar/entry/oaf_hello_world_tutorial
    For deployment , the link is : https://blogs.oracle.com/prajkumar/entry/deploy_oaf_page
    or
    http://www.focusthread.com/apps_tutorials/oa_framework/OA_Framework_Tutorial_Deployment_in_APPS_Environment.pdf
    There are many other you can go ahead and google for it .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • S/W that is to be downloaded for oracle Apps DBA R12

    Please tell me which S/W should be downloaded from edelivery.oracle.com for installation of oracle applications dba Vision demo database.
    Nagaraju
    Edited by: Nanics7 on Feb 16, 2010 10:14 AM

    Hi,
    Few days ago i have Started learning Oracle Apps DBA. Please tell is this s/w enough for learning APPS DBAPlease see this thread.
    Oracle Apps DBA Advice
    Oracle Apps DBA Advice
    I Think its a trial version. Please let me know how many days of trial version it is ?The software is available for use and will never be expired.
    How much we need to pay for getting Oracle Meta link Access.Contact an Oracle Sales representative, he/she is the best one to answer this question. You may also review these links and see if it helps.
    Oracle Price Lists
    http://www.oracle.com/corporate/pricing/pricelists.html
    My Oracle Support Sign-In and Registration
    https://support.oracle.com/CSP/ui/faq_en.html
    Regards,
    Hussein

  • Oracle E-Business 12.1.1.9 failed on stage of 3/5

    Dear All,
    I am installing the Oracle E-Business 12.1.1.9 on Windows 2003 Sever with SP2
    I have installed Cygwin and MS Visual C++ 2008 and created all disk as per the documentation.
    The installation went well till 2/5 and but 3/5 40% it got thrown the error :
    "RW-50004 : Error code received when running external process. Check log for details
    Running APPL_TOP installed driver for PROD instance"
    Please find below log for your information :
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>REM $Header: adrunias.cmd 120.11 2009/01/19 06:29:11 marderiu noship $
    G:\StageR12\startCD\Disk1\rapidwiz>REM ###############################################################
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>REM This file is automatically generated by AutoConfig. It will be read and
    Statusstring Installing Applications Technology Stack
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>G:\StageR12\startCD\Disk1\rapidwiz\jre\NT\1.6.0\bin\java -mx600M -classpath .;G:\StageR12\startCD\Disk1\rapidwiz\jlib\java;G:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\OraInstaller.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\ewt3.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\share.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\srvm.jar oracle.apps.ad.rapidwiz.util.InstantiateFile -e D:\oracle\PROD\inst\apps\PROD_faorafin\appl\admin\PROD_faorafin.xml -d G:\StageR12\startCD\Disk1\rapidwiz\driver\appsts\driver\gias.drv -pwd no_password_here -log D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\log\ApplyAppsTechStack.log -nthreads 2 -verbose
    Enter the location of the CD labeled Oracle Applications Rapid Install - Tools Disk 1 :
    Checking Disk contents in - G:\StageR12\startCD\Disk1\rapidwiz
    Checking Disk contents in - G:\StageR12\oraAS\Disk1
    Checking Disk contents in - G:\StageR12\oraAS\Disk1
    Unzip Count:60
    Processing Disk1....
    Processing Disk2....
    Processing Disk3....
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 0 == 0 goto :BITS_OK
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo "runProcess_2"
    "runProcess_2"
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Perform the registration for tech stack
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Statusstring Registering Applications Technology Stack
    Statusstring Registering Applications Technology Stack
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>(echo APPS & echo APPS ) | G:\StageR12\startCD\Disk1\rapidwiz\jre\NT\1.6.0\bin\java -mx512M -classpath .;G:\StageR12\startCD\Disk1\rapidwiz\jlib\java;G:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\OraInstaller.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\ewt3.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\share.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\srvm.jar oracle.apps.ad.clone.ApplyAppsTechStack -e D:\oracle\PROD\inst\apps\PROD_faorafin\appl\admin\PROD_faorafin.xml -stage G:\StageR12\startCD\Disk1\rapidwiz -showProgress -phase reg -nopromptmsg
    Log file located at D:\oracle\PROD\inst\apps\PROD_faorafin\admin\log\ApplyAppsTechStack_09010037.log
    | 0% completed
    / 3% completed
    - 3% completed
    \ 3% completed
    \ 3% completed
    | 6% completed RC-50004: Fatal: Error occurred in ApplyAppsTechStack:
    RC-50013: Fatal: Failed to instantiate driver D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 1 == 0 goto :REG_OK
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Cannot execute registration of Applications Techstack
    Cannot execute registration of Applications Techstack
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "" == "TRUE" goto :INSIAS_OK
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>REM $Header: adrunias.cmd 120.11 2009/01/19 06:29:11 marderiu noship $
    G:\StageR12\startCD\Disk1\rapidwiz>for /F "usebackq tokens=1,2 delims=/" %i in ('APPS/APPS') do set APPSUSER=%i && set APPSPASS=%j
    G:\StageR12\startCD\Disk1\rapidwiz>set APPSUSER=APPS && set APPSPASS=APPS
    G:\StageR12\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=2 )
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias0.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat0.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>REM $Header: adrunias.cmd 120.11 2009/01/19 06:29:11 marderiu noship $
    G:\StageR12\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=2 )
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias1.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat1.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=2 )
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias2.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat2.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias3.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat3.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    Processing Step 3 of 5
    Executing: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>REM
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Please refer to the remaining logs on applications node at - D:\oracle\PROD\inst\apps\PROD_faorafin\logs\08312321.log
    Processing DriverFile = G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    Running Instantiation Drivers for G:\StageR12\startCD\Disk1\rapidwiz\template\adriapps.drv
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunias.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunias4.cmd
    instantiate file:
    source : G:\StageR12\startCD\Disk1\rapidwiz\template\adrunat.cmd
    dest : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd
    backup : D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunat.cmd to D:\oracle\PROD\apps\apps_st\appl\admin\PROD_faorafin\out\templbac\adrunat4.cmd
    Step 0 of 5
    Command: D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd
    G:\StageR12\startCD\Disk1\rapidwiz>set APPSUSER=APPS && set APPSPASS=APPS
    G:\StageR12\startCD\Disk1\rapidwiz>IF "5" == "1" (SET THREADS=1 ) ELSE (SET THREADS=2 )
    G:\StageR12\startCD\Disk1\rapidwiz>CD /D C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" == "D:\oracle\PROD\inst\apps\PROD_faorafin\temp\adrunias.cmd" (if not ""runProcess_2"" == "FALSE" (goto :"runProcess_2" ) else (goto :runProcess_1 ) )
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    I want urgent help on this... Can somebody help for this error as my installationed got held up over here only.
    Regards,
    Kishor
    [email protected]

    Dear Hussein,
    Thanks for reply.
    Please find below log file :
    Started ApplyAppsTechStack at Tue Sep 01 00:37:57 GMT+05:30 2009
    Version:
         ApplyAppsTechStack.java     :      120.23
    Executing home registration for s_weboh_oh...
    Registering using Registration Driver
    D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\ouicli.pl
    setting permissions: 700
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\txkstubcfg1013.pl
    setting permissions: 700
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\apachectl
    setting permissions: 700
    Executing script in InstantiateFile:
    D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I D:\oracle\PROD\apps\apps_st\appl\au\12.0.0\perl -I D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    script returned:
    Timed out( 3750000 ): Interrupted Exception
    Beginning OUI CLI cloning for s_weboh_ohTue Sep 1 00:38:01 2009
    D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\jdk\jre\bin\java.exe -classpath G:\StageR12\startCD\Disk1\rapidwiz\jlib\java;D:\oracle\PROD\apps\tech_st\10.1.3\oui\jlib\OraInstaller.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;G:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e D:\oracle\PROD\inst\apps\PROD_faorafin\appl\admin\PROD_faorafin.xml -nolink -oaVar s_weboh_oh -homestub weboh -log D:\oracle\PROD\inst\apps\PROD_faorafin\admin\log\ohclone.log
    running OUI CLI home cloning:
    D:\oracle\PROD\apps\tech_st\10.1.3\oui\bin\setup.exe -nowait -clone -silent -force -nolink -waitForCompletion session:ORACLE_HOME=D:\oracle\PROD\apps\tech_st\10.1.3 oracle.as.j2ee.top:s_asInstanceName=PROD_faorafin_WEBOH oracle.as.j2ee.top:s_adminName=oc4jadmin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=PROD_faorafin_WEBOH -J-Doracle.installer.noLink=true
    Executing script in InstantiateFile:
    D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I D:\oracle\PROD\apps\apps_st\appl\au\12.0.0\perl -I D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    script returned:
    .end std out.
    .end err out.
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\ouicli0.pl
    setting permissions: 700
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\txkstubcfg10130.pl
    setting permissions: 700
    instantiate file:
    source : D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to D:\oracle\PROD\inst\apps\PROD_faorafin\out\apachectl0
    setting permissions: 700
    D:\oracle\PROD\inst\apps\PROD_faorafin\admin\log\adcvmlog.xml does not exist. Ignore it
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\5.8.3\lib -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I D:\oracle\PROD\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I D:\oracle\PROD\apps\apps_st\appl\au\12.0.0\perl -I D:\oracle\PROD\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\clone
    ouicli.pl INSTE8_APPLY -1
    AutoConfig is exiting with status 1
    RC-50013: Fatal: Instantiate driver did not complete successfully.
    D:\oracle\PROD\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    How i can resolve this poblem?
    Regards,
    Kishor

  • Software registration?

    Over in the Download forum we have yet another Re: Problems obtaining Registration Key for Oracle 10g Developer Suite who is looking for the registration key to unlock his Oracle software CD. This one is related to the course book found at http://course.cengage.com/catalog/product.cfm?category=Databases&subcategory=Oracle&isbn=978-1-4188-3629-0
    Does anyone inside Oracle have any idea about that registration key?
    Was this need for unlock registration tied to Oracle, to the publisher, or to the specifics of the 'software on DVD' license?
    Is there a workaround, short of download, for the poor souls who are now looking at an apparently useless DVD?

    what makes you to feel that i am speaking on Oracle
    behalf...You made the following assertions.
    Yes it does a special check to ensure that the email ID which they provide
    is correct at the time they purchase
    the student is asked to register in OTN this ensure that it is not used a
    commercial purpose ........Making sure that the email is correct and making sure the software is not used for commercial purposes are Oracle policies. You made assertions (statements of fact) about policy, something that is normally done by a corporate representative. And that implied you were speaking on behalf of Oracle.
    The difference beng a qualifier such as 'I believe', 'In my experience', 'It seems', and so pn.
    speaking i am following your steps...i also want to
    be ACE member...Go for it. I assume you have read the FAQ ...

  • Adding a new link in R12 registration page

    Hi All
    Shall you please send me the steps for adding a new link in registration page in Oracle istore R12
    Thanks

    Hi;
    Please check:
    http://docs.oracle.com/cd/E18727_01/doc.121/e13575/T349071T350482.htm
    How To Disable The "New User Registration" Link In Istore [ID 1224813.1]
    Regard
    Helios

  • Oracle' Hyperion and Whittman Hart Hyperion Planning Seminar

    Oracle and Whittman Hart Hyperion Planning Seminar
    Date:
    Wednesday, March 26, 2008
    08:00 a.m. – 11:30 a.m.
    Location:
    Ritz Carlton – Dearborn
    300 Town Center Dr
    Dearborn, MI 48126
    eVite and Registration: http://www.oracle.com/dm/08q3field/13137_ev_hyperion_sem_mar08.html

    Hi Sean
    Unfortunately not tried that mix, but beware of this. We had real issues with a recent 9.2 installation on Oracle 10 - had to find a very certain patch fix, and then had a nightmare configuration to get working.
    If it is like that on Sys 9+ then highlights might be a little risky on older versions.
    Any chance you can set up a development env to test this?
    Hope this helps
    Andy King
    http://www.analitica.co.uk

Maybe you are looking for

  • XML simple code help

    Hello Everyone, I am learning XML and I'm trying to make a simple code that will display three different messages on a separate line. I already have the code but there is something that does not let it work. Please if somebody can take a quick look a

  • How do you select alternate tunings for mainstage patches?

    Hi folks, Sometime in the last week, I stumbled onto a menu that had a huge number of alternate tunings for some kind of Mainstage instrument.  But now I can't remember where I saw this.  In particular, I'd like to compare the normal well-tempered sc

  • Incomplete download of OBIEE report with Javascript

    Hi, When I try to download a report ( containing Javascript code ) to excel, it does not do a complete download. The resulting excel sheet only contains a part of the result fetched by the report. I when I try to do the same activity with a report th

  • Salary Stament from ESS

    Hi, I was wondering if there are any possibility to change the size of the font of the statement, because when i print it from SAP GUI it prints with a smaller font and fits perfect in the page, but when it comes to the portal the font gets bigger an

  • How to execute MYSQL stored procedure  using java

    Hello friend I am very new to MYSQL stored procedure how to call external stored procedure , from where i got good tutorials about MYSQL stored procedure and JAVA