How to up concurrent manager in R12 EBS installation in windows 2003 server

Hi,
I have installed R12 EBS on windows 2003 server. It was working fine for 2 days.
Then suddenly when I submitted some concurrent program ,
status was "No Manager" i.e. concurrent manager was down.
I dont know how to restart/start concurrent manager .
Any help will be greatly appreciated .
Thanks

Thanks hussein , where do I get application env file. I tried stoping cm from the services and then executed file CMCLEAN.sql and then restarted cm from services menu. However still I can't see cm running in application. I bounced the server also before restartingConfiguration and Environment Files
http://docs.oracle.com/cd/E18727_01/doc.121/e13676/T530334T530337.htm#admu-cef
Did you commit the changes after running cmclean.sql? If yes, please check the CM log file for any errors.
Thanks,
Hussein

Similar Messages

  • Start stop sevices of E Business Suite R12.1.1 in windows 2003

    I have sucessfully installed E Business Suite R12.1.1 in windows 2003 now I see in services window the following services has been added for oracle
    Oracle Fulfillment Server VIS_ansari
    Oracle Process Manager for VIS_ansari
    Oracle VIS VSS Writer Service
    OracleConcMgrVIS_ansari
    OracleJobSchedulerVIS
    OracleServiceVIS
    OracleVIS_ansari_TOOLSASControl
    OracleVIS_ansari_TOOLSProcessManager
    OracleVIS_ansari_TOOLSTNSListenerAPPS_VIS
    Oracle-VIS_ansari_WEBOHProcessManager
    OracleVIS_db111_RDBMSTNSListenerVIS
    I have set startup type of all services to Manual, because I dont want to let operating system start and stop these services , I want to do this task manualy
    Now I want to know how many services I have to start and please specify that in which order I have to start services and do I have to start all services or only some of
    the services which are mentioned above

    Hi,
    The startup sequence is as follows:
    1) Start the database and the database listener
    OracleServiceVIS
    OracleVIS_db111_RDBMSTNSListenerVIS
    2) Start the application services
    Oracle Process Manager for VIS_ansari
    OracleVIS_ansari_TOOLSTNSListenerAPPS_VIS
    OracleConcMgrVIS_ansari
    For the shutdown, stop the application services first, then stop the database and the database listener.
    Note: I am listing the necessary services you have to start/shutdown, starting other services is optional.
    Btw, the statup/stop sequence is outlined in [Oracle Applications Maintenance Procedures|http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121admp.pdf].
    Regards,
    Hussein

  • How do I rename an XE database on a Windows 2003 Server?

    Ok. I'm attempting to rename a freshly installed XE database on a Windows 2003 Server. It looks like there is no getting around the fact that the database gets named "XE" during installation. Because there could potentially be multiple installations of XE in my organization, I thought it'd be a good idea to disambiguate the installations by renaming them to match their function. In this particular case, I'd like to rename the database to "CTXMGMT". It will be a data repository for our Citrix farm administration programs.
    Here is what I've performed thus far:
    1. Installed Oracle 10g XE on one of our Windows 2003 Server, Standard Edition machines.
    2. Verified that the installation was performed correctly by making sure the 'Database Home Page' loads correctly through Internet Explorer, and by performing a few Select statements on the database (i.e. select name from v$database;)
    * * I then began following instructions from this document (http://www.utexas.edu/its/unix/reference/oracledocs/v92/B10501_01/server.920/a96652/ch14.htm#1004735) to rename the database. Note: I'm only trying to change the name of the database, not the ID.
    3. Shutdown the database
    4. Opened the database in MOUNT mode
    5. Ran the NID utility. Here's the actual input/output to/from the NID utility:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>nid target=sys/manager@xe DBNAME=CTXMGMT SETNAME=YES
    DBNEWID: Release 10.2.0.1.0 - Production on Mon Jul 10 15:55:10 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to database XE (DBID=2476560070)
    Connected to server version 10.2.0
    Control Files in database:
    C:\ORACLEXE\ORADATA\XE\CONTROL.DBF
    Change database name of database XE to CTXMGMT? (Y/[N]) => Y
    Proceeding with operation
    Changing database name from XE to CTXMGMT
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - modified
    Datafile C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\UNDO.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\SYSAUX.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\USERS.DBF - wrote new name
    Datafile C:\ORACLEXE\ORADATA\XE\TEMP.DBF - wrote new name
    Control File C:\ORACLEXE\ORADATA\XE\CONTROL.DBF - wrote new name
    Instance shut down
    Database name changed to CTXMGMT.
    Modify parameter file and generate a new password file before restarting.
    Succesfully changed database name.
    DBNEWID - Completed succesfully.
    6. After running the NID utility from a separate DOS Window, I attempt to shutdown the newly renamed database from the first DOS Window I used in steps 3 & 4 from above (i.e. to shutdown the database and then start it in MOUNT mode) but I receive this error:
    ORA-03113: end-of-file on communication channel
    This is somewhat expected since the SQL*Plus connection in this window probably had "the bottom pulled out from under it" when the database was renamed.
    However at this point I'm unsure about what state the database is in. Is it down? Is it up? Logic would sort of dictate that the database was left in the MOUNT state, which is the state it was in when the database name was changed. However, the only way I'm able to get back in to the database is by doing the following
    a. Opened a new DOS window
    b. entered "set ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server"
    c. entered "set ORACLE_SID=XE"
    d. entered " sqlplus "/ as sysdba" "
    e. at SQL> prompt, entered "startup"... which produces:
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 285212672 bytes
    Fixed Size 1287016 bytes
    Variable Size 92277912 bytes
    Database Buffers 188743680 bytes
    Redo Buffers 2904064 bytes
    ORA-01103: database name 'CTXMGMT' in control file is not 'XE'
    SQL>
    From here I don't know what to do. According to the ORA-01103 error message, it looks like I need to change the database name in the control file to "CTXMGMT", but I'm not sure how I should go about that. The control file is a binary file, so I can't just open it up with Notepad and type in a new database name.
    I suspect that even once that is done that the listener.ora (and maybe the tnsnames.ora file?) will have to be edited to include the new "CTXMGMT" name, but I'm not sure how exactly those files should look to incorporate the new database name.
    Also, would the names of services have to be changed in Windows as well? (i.e. Would the Windows service named "OracleServiceXE" have to be renamed to "OracleServiceCTXMGMT" ?)
    In short, I really just need to know how to rename an XE database on Windows appropriately. The steps described above represent as far as I've gotten. If I'm going about it incorrectly could someone shed some light on the correct steps to follow? The more detailed the better. Thanks.
    - Gary

    Okay, I've....
    1) Reinstalled XE, to start from scratch
    2) Went in to SQL*Plus, did a "create pfile from spfile;"
    3) Shutdown the database
    4) Started it up in MOUNT mode
    5) Ran NID, to change the database name from 'XE' to 'CTXMGMT'
    6) Shutdown the database again
    7) Edited the pfile to change the database name (i.e. "db_name='CTXMGMT'")
    8) Started up the database
    And that worked! So that's good... but now my question is:
    How do I change the SID for the database? Currently, the instance name for the database is still 'XE'....
    SQL> select instance_name
    2 from v$instance;
    INSTANCE_NAME
    xe
    I'd like it so a connection could be made to the database with the tnsnames.ora file looking like this:
    CTXMGMT =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(Host = rodin)(Port = 1521))
    (CONNECT_DATA = (SID = CTXMGMT))
    Could someone explain how to get the database to this state? Thanks.
    - Gary

  • Oracle ebs installation on windows 2008 R2

    Hi Hussein,
    I am doing oracle EBS installation on windows 2008. As per installation doc below are the pre-requisite
    The Prerequisites Software are:
    1.Chose and Operating System windows 2008 (32 bit):
    Select the Windows Operating system and install it. After installed OS successfully need to change DNS entries or Active Directories as per your environment.
    2.Install the Microsoft Visual C++ 2008 software.
    See the post for installation of – Microsoft Visual C++ 2008
    3.Install the MKS Toolkit – Versions 9.0 (Patch 3 or higher):
    See the post for installation of – MKS Toolkit.
    I wanted to know that is there any alternate of MKS tool kit as I am unable to get it .
    Regards,
    Raj

    hi Raj
    3.Install the MKS Toolkit – Versions 9.0 (Patch 3 or higher):
    See the post for installation of – MKS Toolkit.
    I wanted to know that is there any alternate of MKS tool kit as I am unable to get it .
    Yes go for cygwin
    please see
    Using Cygwin to Maintain Oracle E-Business Suite Release 12 on Windows[Article ID 414992.1]
    Oracle E-Business Suite R12 Installation Steps on Windows XP
    ;) AppsMAstI :)
    Sharing is Caring

  • How to install 11.5.10 on VMWare with Windows 2003 Server?

    Need help on installing 11.5.10 on VMWare which runs Windows 2003 Server.
    I've XP Pro laptop with 2GB RAM and 80GB HDD and external HD with 250GB. Gathered all required s/w for installation.
    The Win 2003 Server VMWare is sitting on the external HD. I want to install pre-req s/w along with 11.5.10 on the VMWare.
    (1) How do I make the laptop's CD drive and HD visible to the VMWare?
    (2) Can I use the XP laptop HD as staging area and install on VMWare on external HD?
    (3) What are the disadvantages/risks of using the external HD for both staging and actual installation?
    Any help is appreciated.
    FYI - we already have an Oralce 11.5.9 on VMWare. All services are up and running. Able to logon to SQL*Plus and EBS home page. The issue is, we are not able to connect to this Oralce VMWare image from other VMWare image(Siebel), ie, if we do a telnet to oracle vmware image connection establishes and closes immediately. No clue on why this is happening. But this is not happening when we did telnet from a vmware image(plain win 2003 server) that does not have Siebel. All vmware images work fine individually.
    Any inputs?
    Thx,
    Jags

    Need help on installing 11.5.10 on VMWare which runs Windows 2003 Server.
    I've XP Pro laptop with 2GB RAM and 80GB HDD and external HD with 250GB. Gathered all required s/w for installation.
    The Win 2003 Server VMWare is sitting on the external HD. I want to install pre-req s/w along with 11.5.10 on the VMWare.
    (1) How do I make the laptop's CD drive and HD visible to the VMWare?
    (2) Can I use the XP laptop HD as staging area and install on VMWare on external HD?
    (3) What are the disadvantages/risks of using the external HD for both staging and actual installation?
    Any help is appreciated.
    FYI - we already have an Oralce 11.5.9 on VMWare. All services are up and running. Able to logon to SQL*Plus and EBS home page. The issue is, we are not able to connect to this Oralce VMWare image from other VMWare image(Siebel), ie, if we do a telnet to oracle vmware image connection establishes and closes immediately. No clue on why this is happening. But this is not happening when we did telnet from a vmware image(plain win 2003 server) that does not have Siebel. All vmware images work fine individually.
    Any inputs?
    Thx,
    Jags

  • How to connect to Window 2003 server using "connect as"

    How can I set up Lion to easily connect to specified shares in the windows 2003 server. I want to authenticate as a user other than the one I am logged into on my Macbook? I am setting this up for teachers in a school. The macbook may be used by multiple teachers. Best way (simplest) please.

    Hi
    Let's pretend the Windows Server has an IP address of 10.10.10.254
    Go Menu > Connect to Server > smb://10.10.10.254. When prompted enter the account credentials of a user (username and password) that exists on the Windows Server. Alternatively you could use cifs://10.10.10.254. Either one will do. Assuming no 'silliness' on the Windows Network Administrator's part the share should mount.
    For ease of connectivity afterwards you could tick the 'remember password using keychain manager' box. Personally I find keychain manager more trouble than it's worth. However you deal with this as you see fit. If it's multiple users using the same workstation I would not enable the option.
    Once mounted you can view the Server Share on the user's Desktop by enabling the option in the Finder. It should appear as a blue-ish drive icon on the Desktop. Add the icon in that User's Login Items in the Accounts Preferences Pane. Think of it a little like the Windows equivalent of "mapping a network drive".
    Next time that user logs into their local account and provided the workstation is connected to the same network, the share point should mount.
    You could also or alternatively drag the share icon to the right hand side of Dock. Click on it to re-connect to the share after you've disconnected from it.
    HTH?
    Tony

  • How to setup SMBX client for work with Windows 2003 server's shared folders?

    Dear community,
    Some folders within shared folder on Windows 2003 Server is not visible for MacOS 10.8 client.
    How should I set up SMBX? Is there manual?
    I know, there is simple solution to type exact pathname (with those invisible folders) in connection dialog, but it is not usefull for me.
    Thank you  in advance

    Hi,
    Please remove the 3 non-exists DC from environment using the metadata clean-up process using script from below article. then manually delete the records from DNS management console as given below.
    https://gallery.technet.microsoft.com/scriptcenter/d31f091f-2642-4ede-9f97-0e1cc4d577f3
    Manual steps to clear the records.
    Dnsmgmt.msc [Dns Management]
    A.Expand the forward lookup zones\_msdcs folder
    i. Make sure only the actual domain controllers are listed, delete wrong Alias recordsremove wrong name server records
    ii. Select the container [forward lookup zones\_msdcs.domain.com\dc\_sites_\sitename\_tcp] > delete incorrect _ldap and _kerberos records are listed.
    iii. Select the container [forward lookup zones\_msdcs.domain.com\dc\_tcp] and delete incorrect _ldap and _kerberos records
    iv. Expand the [forward lookup zones\_msdcs.domain.com\domains\guid\_tcp] and delete incorrect _ldap entries
    v. Select [forward lookup zones\_msdcs.domain.com\gc] – delete incorrect HostA records
    vi. Expand the [forward lookup zones\_msdcs.domain.com\gc\_sites\sitename\_tcp] – delete incorrect _ldap entries
    vii.Select the [forward lookup zones\_msdcs.domain.com\gc\_tcp] – delete incorrect _ldap entries
    viii. Select the [forward lookup zones\_msdcs.domain.com\pdc\_tcp] – delete incorrect _ldap entries
    B.Expand the forward lookup zones\domain.com folder
    i.Delete Host(A) records of dc’s which are non-existant.
    ii.Correct the NameServer (NS) records
    iii. Follow steps similar to ’ A ii ‘ >> ‘ A viii’
    · Dssite.msc [Sites and Services]
    A.Expand the [Sites\Sitename\Servers] – delete incorrect server’s
    B.Delete incorrect subnet configurations [Sites\Subnets]
    C.Delete incorrect site links [Sites\IP]
    · Make sure the domain controllers are pointing to the correct dns servers in tcp\ip settings.
    · Force replication – ‘repadmin /syncall’

  • How to view failed updates on Windows 2003 Server ?

    Hello,
    Can anyone tell me how I can view what Windows Updates failed and why, on a Windows 2003 server that uses Configuration Manager?
    Thanks
    Stuart 

    You won't find the solution in ConfigMgr. It has done it's job and the updates have been delivered. The fact that the updates cannot install is a Windows problem. You need to be looking at the EVENT logs.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • How to Install 64-bit "Generic / Text Only" print driver on a 32-bit Windows 2003 Server?

    Hi All,
    In a nutshell, I need to Install the 64-bit Generic / Text Only print driver on a 32-bit Windows 2003 Server’s “Generic / Text Only 32-bit print queue.
    The problem is that there is no Driver-Disk to get the drivers. I’ve been able to isolate 14 files related to the 64 bit drivers from a Windows 7 x64 computer and copy them to a temp folder on the Windows 2003 x32 server. When I try to add the 64 bit driver
    to the Windows 2003 x32 server,  it wants a *.inf file, which I don’t have and can’t find.
    Because Microsoft will no longer support Windows XP, my client is replacing all of their Point-of-Sale Windows XP x32 systems with Windows 7 x64. They use Terminal Services (Remote Desktop) to connect to a Windows 2003 x32 server to use the POS system. The
    POS software redirects LPT1 back to the local Generic / Text Only printer. This works great for XP x32.
    When we use the Terminal Services POS software on the new Windows 7 x64 system, none of the labels print out because it’s redirected in 32-bit back to the local Windows 7 x64 Generic / Text Only 64-bit printer.
    This will be a huge issue for me if I can’t get this to work.
    Thanks in advance for any suggestions and help! -Rob

    those may be helpful...
    http://social.technet.microsoft.com/Forums/en-US/a129f49a-0216-41f0-b190-3efb46fbb8ac/generic-text-only-driver-on-windows-2008-server-r2?forum=winserverprint
    http://blogs.technet.com/b/yongrhee/archive/2009/09/14/how-to-add-64-bit-print-drivers-on-32-bit-windows-server-2003-or-windows-server-2008-print-server.aspx
    Best,
    Howtodo

  • Error while Installing R12.1.1 on Windows 2003 Enterprise Edition

    Dear All,
    I am installing R12.1.1 on Windows 2003 Enterprise Edition Server. I am using the media source that i have downloaded from Oracle Edelivery. I have done a MD5Sum check on the dowloaded files based the MD5SUM Check details given in site. (Not after staging).
    I have the stage files in the same partition as the partition in which the OS & Oracle is being installed (Free space is 300GB after staging)
    When the Installation reaches 53%, the installation fails with the following Error: "RW-50004: Error code received when running external process. Check log file for details. Running APPL_TOP Install Driver for VIS Instance"
    Log File:
    =====================
    e:\oracle\VIS\inst\apps\VIS_r12\logs\03021433.log
    ================================
    Processing Step 3 of 5
    Executing: e:\oracle\VIS\inst\apps\VIS_r12\temp\adrunias.cmd
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Perform the registration for tech stack
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Statusstring Registering Applications Technology Stack
    Statusstring Registering Applications Technology Stack
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>(echo APPS & echo APPS ) | D:\StageR12\startCD\Disk1\rapidwiz\jre\NT\1.6.0\bin\java -mx512M -classpath .;D:\StageR12\startCD\Disk1\rapidwiz\jlib\java;D:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\OraInstaller.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\ewt3.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\share.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\srvm.jar oracle.apps.ad.clone.ApplyAppsTechStack -e e:\oracle\VIS\inst\apps\VIS_r12\appl\admin\VIS_r12.xml -stage D:\StageR12\startCD\Disk1\rapidwiz -showProgress -phase reg -nopromptmsg
    Log file located at e:\oracle\VIS\inst\apps\VIS_r12\admin\log\ApplyAppsTechStack_03021625.log
    **** truncated *************
    - 3% completed
    \ 3% completed RC-50004: Fatal: Error occurred in ApplyAppsTechStack:
    RC-50013: Fatal: Failed to instantiate driver e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 1 == 0 goto :REG_OK
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Cannot execute registration of Applications Techstack
    Cannot execute registration of Applications Techstack
    D:\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 VIS instance
    ApplyAppsTechStack_03021625.log
    =========================
    Started ApplyAppsTechStack at Wed Mar 02 16:25:21 IST 2011
    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_r12\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_r12\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_r12\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_ohWed Mar 2 16:25:24 2011
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre\bin\java.exe -classpath D:\StageR12\startCD\Disk1\rapidwiz\jlib\java;e:\oracle\VIS\apps\tech_st\10.1.3\oui\jlib\OraInstaller.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e e:\oracle\VIS\inst\apps\VIS_r12\appl\admin\VIS_r12.xml -nolink -oaVar s_weboh_oh -homestub weboh -log e:\oracle\VIS\inst\apps\VIS_r12\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_r12_WEBOH oracle.as.j2ee.top:s_adminName=oc4jadmin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=VIS_r12_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_r12\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_r12\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_r12\out\apachectl0
    setting permissions: 700
    e:\oracle\VIS\inst\apps\VIS_r12\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
    I have gone through the meta link document [989752.1]. But I feel that document does not apply to me as i am not running the installation from a network storage area.
    Pl. help me.
    Thanks and regards,
    Adm.

    AN Update:
    The Oracle Universal Installer shows the following in the screen before the error appears:
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks w
    ill be executed.
    Preparing to launch Oracle Universal Installer from D:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2011-03-02_04-25-26PM. Please wait ... Oracle Universal Instal
    ler, Version 10.1.0.6.0 Production
    Copyright (C) 1999, 2007, Oracle. All rights reserved.
    ...............................................................Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    path: D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\jre\bin
    ;.;D:\WINDOWS\system32;D:\WINDOWS;D:\StageR12\startCD\Disk1\rapidwiz\unzip\NT;D:
    \MVS\VC\bin;D:\cygwin\bin;D:\WINDOWS\system32;D:\WINDOWS;D:\WINDOWS\System32\Wbe
    m
    toload is D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\Win
    dowsGPortQueries.dll
    100% Done.
    Copying files in progress (Wed Mar 02 16:25:59 IST 2011)
    .................................................Val: 0
    . 79% Done.
    Copy successful
    Setup in progress (Wed Mar 02 16:26:05 IST 2011)
    .....Oracle JAAS [Wed Mar 02 16:26:28 IST 2011]: exception: 9
    opmnctl: opmn started
    Please help me.
    Thanks and regards,
    Adm

  • Install R12 on windows 2003 server 64bit

    Hi Experts,
    I need to install Oracle Apps R12 on windows 2003 server 64Bit.
    what are all the steps should be followed to install Apps R12 on win 2003 server 64bit,
    Please help me to do this,
    Thanks
    Sundaravel.R

    Oracle E-Business Suite R12 Installation on Windows 2003
    http://onlineappsdba.com/index.php/2007/02/20/prepare-for-oracle-apps-r12-installation/
    HTH
    Aman....

  • Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?

    I just got a pair of new 3TB disks that I wanted to put on my Windows 2003 server enterprise x64 system, SP2, all updates installed.
    When I first tried to convert to dynamic, I got the error "The operation did not complete" as described in this KB article
    http://support.microsoft.com/kb/826823
    It says there is a patch, but there is not one for x64, just x86 and ia64
    I found another technet discussion here:  https://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/cb62238c-b3d0-4989-b45a-ae6de6701a7b?stoAI=10
    However its best suggestion is to use a product from AOMIE, but I tried that and it didn't even recognize the disk.  It also suggests that one needs a better version of diskpart.exe and to try to the 32 bit version.  Anyone have any experience
    with that?
    I also tried creating moving the disk to Windows 7 x64, making it dynamic there, but when I move the disk back to 2K3 it does not recognize it, and goes back to a 2TB partition.  I also saw something about needing a 512 block size for 2K3, but W7 does
    not allow anything smaller than 1K.

    Hi,
    During my research, if found the following artcle which also mentioned a 3TB disk should be supported in Windows 2003 SP1:
    Has anyone managed to get a 3TB dynamic disk on Windows 2003 Server?
    http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/a720ae72-0c04-44dd-94c0-2e6aecce530e
    So I contact the author about this issue. He said it could be caused if your hard disk is a 512e drive as the 3TB drives on the market today are normally 512e drives.
    However manufacturers stopping identifying this, and if the controller is old, FSUtil will not able to identify a 512 drive but recognized it as a normal 512n drive.
    Thus please provide the drive model so we could search on manufacturer's website for exact information.
    Also please paste the screenshot in your reply which Satish mentioned if available.
    In addition, here is an article Robert provided:
    http://www.windowsitpro.com/article/what-would-microsoft-support-do/support-advanced-format-hard-drives-141584

  • How can I open all ports on a Window 2003 Server

    How can I open all ports on my windows 2003 server for a specific range of IP addresses?

    Hi,
    Just want to confirm the current situations.
    Please feel free to let us know if you need further assistance.
    Regards.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How imstall the  BI7 on windows 2003  server

    Hi
    How imstall the  BI7 on windows 2003  server please   advise .
    thanks in advence
    with best regards
    jainendra prajapati

    Hi,
    Just install Netweaver 7.0 system following installation guide on https://service.sap.com/instguides and then after installation finished install BI_CONT add-on.
    Then your BI 7.0 system will be ready.
    Thanks
    Sunny

  • Dreamweaver CS3 running on Windows 2003 Server, How to do a License Swap to a new Hardware

    Hello, I have an urgent Licensing question belonging Adobe Dreamweaver CS3 running on Windows 2003 Server.
    How to do a License Swap to a new Hardware which runs currently on an Image of another Server (same HW), this License needs to be exchanged by the original Licence, however the MAC address has changed due to the HW-SWAP,  Serial Number of the "Adobe Dreamweaver CS3" is available,
    Is there a Adobe hotline existing, which could support?
    Thank you very much.
    hihtec

    download the endpoint.dll
    Posted by WebUser Jj C V Bautista from Cisco Support Community App

Maybe you are looking for

  • Testar GRC QAS em Sefaz Produtivo

    Bom dia amigos, perguntarei primeiro, e depois explico a razão: Considerando que a sefaz valida o numero da nota fiscal para evitar duplicidade, se eu cancelar uma nota autorizada e gerar outra com o mesmo numero esta será rejeitada? Pois o projeto d

  • Why was I charged the activation fee?

    I just joined Verizon this past weekend. We purchased 3 Samsung Galaxy S5's and The Edge 10gb plan. I was told by the CSR that there would not be any activation fees but I would see the sales tax of approx. $90 on my first bill. I was also told my bi

  • D800 Not Uploading to iPhoto

    I'm trying to upload photos form my D800 into iPhoto.  Doing via a card reader and a CF card.  iPhoto recognizes the camera, shows the photos on the preview pane and then when I click upload, it won't upload any of the photos.  I'm running all the la

  • How do I turn off passcode for when my daily alarm rings?

    Guys, since I updated to 4.3.3 I'm having an annoying problem with my daily wake up alarm. When it goes off in the morning I slide to unlock as normal but then I have to enter my passcode. I never had to do this before. I don't want to turn passcode

  • Question about the 5g ipod

    I was thinking about getting the new ipod and wondered whether i could put DVDs that i already have onto it..like, download them.. if anyone knows, please inform me.. thanks