Auto-startup EM for Solaris 10

Hi all,
I'd like to put the Enterprise Manager to auto-startup when rebooting the server.
The database version are 10g and 11g, and the OS is Solaris 10.
Basically the manual command is: emctl start dbconsole
I'd like to setup automatically to execute the same command.
Thanks in advance everybody.
Alex

Hi,
I checked the Note 222813.1 you mentioned, but it says about to restart the database, also it's already done this setup, but it's not included the Enterprise Manager.
Furthermore, I checked the oratab and its fine.
Any other clue to proceed on that?
Thanks.
Alex

Similar Messages

  • Auto-startup issues for Oracle10g

    Does Oracle10g automatic startup have know problems running on MS Win2003?
    We had problems with Oracle8i R8.1.6.x with MS Win2000 and MS patch KB835732 halting Oracle automatic startup.
    thanks,
    Bruce

    check whether the value for the Registry entry ORA_<dbname>_AUTOSTART is set to TRUE.
    - Suresh.A

  • (V7.3 ~ V8.X) ORACLE DB AUTO STARTUP/SHUTDOWN ON SUN SOLARIS 2.6/2.7

    제품 : ORACLE SERVER
    작성날짜 : 2003-06-02
    (V7.3 ~ V8.X) ORACLE DB AUTO STARTUP/SHUTDOWN ON SUN SOLARIS 2.6/2.7
    ====================================================================
    PURPOSE
    이 자료는 O/S startup 시에 Oracle RDBMS 서비스를 자동으로 startup하
    는 방법에 대한 자료이다.
    Explanation
    sun solaris 부팅 시 oracle DB를 auto startup하도록 하는 데 관련된 화일들이다.
    /etc/inittab : o/s의 초기화 과정을 조절하는 화일
    /etc/rc2 : 부팅 run-level 2 에서 사용되는 스크립트
    /etc/rc0 : 부팅 run-level 0 에서 사용되는 스크립트
    /etc/rc2.d/S99dbstart : /etc/init.d/dbstart 에 대한 symbolic link
    /etc/rc0.d/K01dbshut : /etc/init.d/dbshut 에 대한 symbolic link
    /var/opt/oracle/oratab : 시스템에 설치된 오라클 인스턴스에 대한 정보.
    (참고)
    /etc/init.d/dbstart, dbshut 화일은 super user(root)로 생성하시고,
    symbolic link도 super user로 만드시기 바랍니다.
    이 화일들은 super user가 owner가 되도록 하고, super user(root)만이
    실행 가능하도록 해야 합니다.
    1. 먼저 vi /etc/inittab 화일을 열어보십시오.
    ap::sysinit:/sbin/autopush -f /etc/iu.ap
    fs::sysinit:/sbin/rcS >/dev/console 2>&1 </dev/console
    is:3:initdefault:
    p3:s1234:powerfail:/usr/sbin/shutdown -y -i5 -g0 >/dev/console 2>&1
    s0:0:wait:/sbin/rc0 >/dev/console 2>&1 </dev/console
    s1:1:wait:/usr/sbin/shutdown -y -iS -g0 >/dev/console 2>&1 </dev/console
    s2:23:wait:/sbin/rc2 >/dev/console 2>&1 </dev/console
    s3:3:wait:/sbin/rc3 >/dev/console 2>&1 </dev/console
    s5:5:wait:/sbin/rc5 >/dev/console 2>&1 </dev/console
    s6:6:wait:/sbin/rc6 >/dev/console 2>&1 </dev/console
    fw:0:wait:/sbin/uadmin 2 0 >/dev/console 2>&1 </dev/console
    of:5:wait:/sbin/uadmin 2 6 >/dev/console 2>&1 </dev/console
    rb:6:wait:/sbin/uadmin 2 1 >/dev/console 2>&1 </dev/console
    sc:234:respawn:/usr/lib/saf/sac -t 300
    co:234:respawn:/usr/lib/saf/ttymon -g -h -p "`uname -n` console login: " -T
    sun
    -d /dev/console -l console -m ldterm,ttcompat
    s1부터 s6까지 os file들에 대해 위와 같이 device redirection이 연결되어
    있으면 됩니다.
    s2:23:wait:/sbin/rc2 >/dev/console 2>&1 </dev/console
    위와 같이 설정하면 run-level 2일 경우 /sbin/rc2 스크립트가 실행된다.
    /sbin/rc2 는 /etc/rc2.d 디렉토리에 들어있는 스크립트를 실행한다.
    만약 스크립트가 S 로 시작하면 /sbin/rc2 는 이 스크립트에 startup 파라미
    터를 부여하고 여기서 지정된 프로세스를 실행시킨다.
    따라서 /etc/rc2.d/S99dbstart 화일을 사용하여 dbstart를 실행한다.
    shutdown 과정도 거의 비슷하다. /etc/inittab 에 다음과 같은 라인을 보자.
    s0:0:wait:/sbin/rc0 >/dev/console 2>&1 </dev/console
    이것은 /sbin/rc0 를 실행시키는데 /sbin/rc0 는 /etc/rc0.d 디렉토리에
    들어있는 스크립트를 실행시킨다.
    스크립트 이름이 K 로 시작하면 이것은 stop 파라미터를 갖고 실행되어서 이
    스크립트에 지정된 프로세스를 정지시킨다.
    따라서 /etc/rc0.d/K01dbshut 스크립트는 stop 파라미터를 갖고 실행되며
    이 스크립트는 $ORACLE_HOME/bin/dbshut 스크립트를 실행시켜서 오라클을
    shutdown 시킨다.
    2. 그 다음에 vi /etc/rc2 화일을 한번 열어보세요.
    이 스크립트 화일은 run-level 2에서 사용되는 스크립트입니다.
    특별히 수정할 내용은 없으나, 이 화일이 존재하는지 확인해 보십시오.
    PATH=/usr/sbin:/usr/bin
    set `/usr/bin/who -r`
    if [ x$9 = "xS" -o x$9 = "x1" ]
    then
    echo 'The system is coming up. Please wait.'
    BOOT=yes
    3. 그 다음에 vi /etc/rc0 화일을 한번 열어보세요.
    이 스크립트 화일은 run-level 0에서 사용되는 스크립트입니다.
    특별히 수정할 내용은 없으나, 이 화일이 존재하는지 확인해 보십시오.
    PATH=/usr/sbin:/usr/bin
    echo 'The system is coming down. Please wait.'
    # make sure /usr is mounted before proceeding since init scripts
    # and this shell depend on things on /usr file system
    /sbin/mount /usr > /dev/null 2>&1
    # The following segment is for historical purposes.
    # There should be nothing in /etc/shutdown.d.
    if [ -d /etc/shutdown.d ]
    then
    for f in /etc/shutdown.d/*
    if [ -s $f ]
    then
    /sbin/sh ${f}
    fi
    fi
    4. /etc/init.d/dbstart 와 /etc/init.d/dbshut 스크립트를 만들어야 합니다.
    그 내용은 각각 다음과 같이 한 줄로 작성합니다.
    /etc/init.d/dbstart 화일은 다음과 같이 만듭니다.
    su - <oracle_owner> -c <$ORACLE_HOME>/bin/dbstart
    /etc/init.d/dbshut 화일은 다음과 같이 만듭니다.
    su - <oracle_owner> -c <$ORACLE_HOME>/bin/dbshut
    5. /etc/rc2.d/S99dbstart 화일을 /etc/init.d/dbstart에 대한 link로 생성합니다.
    ln -s /etc/init.d/dbstart /etc/rc2.d/S99dbstart
    6. /etc/rc0.d/K01dbshut 화일을 /etc/init.d/dbshut에 대한 link로 생성합니다.
    ln -s /etc/init.d/dbshut /etc/rc0.d/K01dbshut
    7. /var/opt/oracle/oratab 화일을 엽니다.
    oratab 화일은 일반 텍스트 화일로서 시스템에 설치된 오라클 인스턴스에 대한
    정보를 가지고 있는데 보통 3개의 필드로 이루어져 있으며,
    첫번재 필드는 ORACLE_SID, 두번째 필드는 ORACLE_HOME, 세번째 필드는 Y 또는
    N으로 구성되어 있습니다. 해당 인스턴스를 auto startup 시키려면 세번째
    필드가 반드시 Y로 세팅되어 있어야 합니다.
    아래에 예를 참조하세요.
    ORA805:/oracle4/ora8/app/oracle/product/8.0.5:Y
    ORA815:/oracle4/ora8i/app/oracle/product/8.1.5:Y
    (주)
    만약, <$ORACLE_HOME>/bin/dbstart 수행에 오류가 있으면 기존의 dbstart 화
    일을 다른 path에 rename하고, 아래 내용만 가지고 <$ORACLE_HOME>/bin/ 아래
    에 dbstart 화일을 다음과 같이 만든다.
    svrmgrl <<EOF
    connect internal
    startup
    exit
    EOF
    Example
    none
    Reference Documents
    none

    Hi Frank,
    This is a bug in 9.0.1. It is fixed in 9.2 and
    backported to 9.0.1.2 (rdbms 9.0.1.2 patch). Note that you
    need to specify the sdo_indx_dims=2 in the parameter clause.
    As a workaround in 9.0.1.0 you could do:
    (1) remove the z coordinate (as you mentioned),
    (2) set the srid to null (instead of 8307) both in
    the geometries as well as the index metadata,
    (3) set geodetic=false in the create-index parameters.
    Hope that helps,
    Ravi.

  • How to let database(10.2) auto startup when linux reboot?

    Hi all,
    I installed oracle database 10.2 in linux (x86),and created a database.
    I can startup the database manually. But database can not be started up automatic when linux starts up.
    How to let database startup automatic when OS starts up?
    the details shell scripts for auto startup would be appreciated!
    Thanks

    I don't know LINUX but I know Solaris. In Solaris, you have a startup and shutdown script in $ORACLE_HOME/bin. Setting the field to Y in oratab means you startup/shutdown the instance when executing the scripts. However, it does not mean the startup script will be
    executed upon reboot. In solaris, we place a script in /etc/rc3.d. Then the script will be executed upon reboot. Guess you have similar features in Linux.

  • Can you help me?the config error about ORACLE Web Application Server3.0 for Solaris,

    hello anyone
    i install oracle7.3.4 server
    in Sun Sparcstation20 Solaris2.6 Japanese
    everything is ok,
    and i want to install ORACLE
    WEB appliation server 3.0too
    the installer is ok too,
    i startup the serivce
    >owsctl start wrb
    >owsctl start admin
    but when i open the netscape and
    CRAETE and START a new LISTENER
    there is something wrong.
    **************************error message*******
    OWS-05721: The Web Listener www failed to start:
    Oracle Web Listener 3.0.1 Production (Export), Version 2.14FC1
    Copyright 1997 Oracle Corp. All Rights Reserved.
    Error: A failure occurred ( Permission denied ) when assigning a port ( domain: INTERNET01, address: 0.0.0.0, port: 80 ).
    Error: Failed to start the server.
    Error: The server could not initialize
    Information: The server is exiting
    OWS-08811: Unable to startup Oracle Web Listener `www'.
    Oracle Web Listener Home Page
    From here, you can do the following:
    Create a new Oracle Web Listener to run on your machine by clicking the Create Listener... button.
    Modify existing Oracle Web Listeners by selecting the Configure link below.
    Start, Stop or Delete existing Oracle Web Listeners by selecting the appropriate link below.
    can anyone help me , it is too difficult for me.
    the startup file of Solaris is here
    # @(#)cshrc 1.11 89/11/29 SMI
    umask 022
    set path=(/bin /usr/bin /usr/ucb /etc .)
    if ( $?prompt ) then
    set history=32
    endif
    setenv ORACLE_BASE /oracle/app/oracle
    setenv ORACLE_HOME /oracle/app/oracle/product/7.3.4
    setenv ORACLE_SID hlp3
    setenv ORAWEB_HOME $ORACLE_HOME/ows/3.0
    setenv ORAWEB_SITE www
    setenv ORAWEB_BASE $ORACLE_HOME/ows
    setenv ORAWEB_ADMIN $ORACLE_BASE/admin
    setenv ORAWEB_CARTX $ORACLE_HOME/ows/cartx
    setenv DEF_INSTALL TRUE
    setenv ORA_CSM_MODE line
    setenv LD_LIBRARY_PATH $ORACLE_HOME/lib:/usr/openwin/lib:/usr/dt/lib:
    setenv ORACLE_TERM xsun5
    setenv TMPDIR /var/tmp
    setenv PATH .:$ORACLE_HOME/bin:$ORACLE_HOME/obackup/bin:/opt/bin:/usr/local/bin:/bin:/usr/bin:/usr/css/bin:/usr/openwin/bin:/usr/sbin:/usr/ucb:$ORAWEB_HOME/bin
    setenv ORA_NLS32 $ORACLE_HOME/ocommon/nls/admin/data
    setenv DEF_INSTALL TRUE
    setenv MANPATH /opt/SUNWspro/man:/opt/SUNWste/licence_tools/man
    # setenv LANG
    # setenv TWO_TASK
    set ORAENV_ASK = NO
    source /opt/bin/coraenv
    unset ORAENV_ASK
    source /oracle/app/oracle/product/7.3.4/ows/3.0/install/owsenv_csh.sh
    # @(#)local.login 1.3 93/09/15 SMI
    stty -istrip
    # setenv TERM `tset -Q -`
    # if possible, start the windows system. Give user a chance to bail out
    if ( `tty` == "/dev/console" ) then
    if ( $TERM == "sun" &#0124; &#0124; $TERM == "AT386" ) then
    if ( ${?OPENWINHOME} == 0 ) then
    setenv OPENWINHOME /usr/openwin
    endif
    echo ""
    echo -n "Starting OpenWindows in 5 seconds (type Control-C to interrupt)"
    sleep 5
    echo ""
    $OPENWINHOME/bin/openwin
    clear # get rid of annoying cursor rectangle
    logout # logout after leaving windows system
    endif
    endif
    setenv ORACLE_HOME /oracle/app/oracle/product/7.3.4
    setenv PATH /bin:/usr/bin:/etc:/usr/etc:/usr/openwin/bin:/usr/ucb:/oracle/app/oracle/product/734/bin:$ORAWEB_HOME/bin
    setenv NLS_LANG japanese_japan.ja16euc
    setenv LANG japanese
    setenv ORACLE_TERM xsun5
    setenv ORAWEB_HOME $ORACLE_HOME/ows/3.0
    setenv ORAWEB_SITE www
    setenv TNS_ADMIN /oracle/app/oracle/product/7.3.4/network/admin
    can anyone help me and tell me how to solve it or any aother way book doc to do it,
    thank you
    i am very nervious
    my email address:
    [email protected]
    [email protected]

    see http://www.oracle.com/support/products/oas/sparc30/html/ows08811.html

  • The deployment process seems to die or get stuck, iAS 6 SP3 for Solaris 8?

    When I deploy my application in iAS 6 SP3 for Solaris 8 the deployment process seems to die or get stuck. In the shell window i get the messages
    iasdeploy for iPlanet Application Server 6.0 SP3
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    sstu15:null
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    After this nothing happens for a really long time.
    When starting the deployment I get in the beginning of kas.log two entries
    ADMIN-168: kas> deployment get log ''J2EEInstallEar''
    GDS-007: finished a registry load
    but suddenly the second line disappears and the only message I get is the first entry. I need to break the deployment process and kill the processes manually.
    When starting the application server I get two error messages:
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    iPlanet Administrative Server
    Version 6.0 SP3, Build 20010704
    Copyright (c) 1996-1997 KIVA Software Corporation.
    Copyright (c) 1998-1999 Netscape Communications Corporation.
    Copyright (c) 2000-2001 Sun Microsystems, Inc. Some preexisting portions Copyright (c) 2000 Netscape Communications Corp
    . All rights reserved.
    Use of this software is governed by the terms of the executed license agreement between you and iPlanet E-Commerce Solutions.
    [14/Feb/2002 11:02:12:7] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''0'' (CCS0)
    [14/Feb/2002 11:03:08:8] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''1'' (CCS0)
    I think all processes starts OK, I get one for .kas and one for kas, one for .kxs and one for kxs and finally one for .kjs and one for kjs.
    Is someone familiar with this/these problem(s)?

    It seems you are deploying a very big application. Try to deploy this application with following command
    j2eeappreg <filename>
    It should work fine. It was a bug with iasdeploy command in iAS SP3 which had been fixed in iAS SP4.

  • VPN auto startup after power cut

    Good evening
    I have set my server to auto start after a power outage. What I would like is have the vpn startup. So the server is auto logging in as a certain user, and then the user has a auto startup item. The server Admin.
    The issue is that the server admin needs to you to bring the window to the foreground in order for the vpn to startup.
    Is there another way to do this?

    Does it power back on after a power outage? auto-boot only covers the boot after the server powers on or is reset. I don't see an option in OpenBoot for auto power on after a power interruption.

  • Last kernel patch for Solaris 10 x86 screwed up my kernel

    Hi,
    The last kernel patch for Solaris 10 x86 (sorry I can�t remember the patch id, but the revision is 30), available from Sun Update Manager screwed up my system.
    The system is still booting but in maintenance mode: smf can't start because of repository corrupted. Given instructions to restore the repository does not work because / filesystem is mounted read-only...
    As I am not a solaris expert, I will reinstall it from CD. I hope I won't loose the filesystem.
    I was used to blindly trust Sun solaris patches, that was a mistake.
    Laurent.

    i dont know why but still i do get default log in into the single mode
    after startup
    Requesting maintenance mode
    (See /lib/svc/share/README for aditional information. )
    Root password for system maintenance (control-d to bypass):i did removed the patch installed before so now
    SunOS jorgito 5.10 Generic_118844-26 i86pc i386 i86pcand finaly i do have milestone like this
    bash-3.00$ svcprop restarter | grep mile
    options/milestone astring svc:/milestone/multi-user:default
    dont know what to do else, also tried to synchronize boot-archive from solaris failsafe ...

  • Auto stats gathering for partitioned table

    Hi,
    We are in 10gR2 in sun solaris. We are using auto stats gathering for our DB. Here is my question,
    i know oracle gather statistics of the table, if the table changes more than 10%. How this work out for partitioned table? If the partition table changes more than 10% will last partition analyzed or the full table. We have partitioned based on insertion date.
    Appreciate your responds.
    Regards,
    Satheesh Shanmugam
    http://borndba.com

    I hope it will be only current partition which has teh stale statistics will be gathered the stastics instead of full table.
    Anil Malkai

  • Database auto-startup script

    Hi Team,
    How can I check whether the auto startup script is scheduled for the database after the server reboot
    OS version:Linux server1 2.6.18-194.11.1.el5 #1 SMP Tue Jul 24 05:45:06 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    DB version :11.2.0.2
    /etc/oratab entry is set to Y.
    But the database did not startup after the server reboot. How to verify that the auto startup script is available?

    http://www.oracle-base.com/articles/linux/automating-database-startup-and-shutdown-on-linux.php
    HTH
    Anand

  • How can I install Oracle Database 10g for Solaries (SPARC) from the console

    Dear Forum Members,
    In my office, I have to installed Oracle Database 10g for Solaries (SPARC). But I have to do it without DISPLAY Monitor.Is it possible install it by remote login to this server using response file (silent mode) or something like that?
    If yes. Then How?
    If anyone have the exact solution, then I need your feedback. I shall wait for your reply.
    Thanks
    Aungshuman Paul

    There are 2 possible ways to accomplish this.
    First,
    Silent installation
    http://www.informit.com/articles/article.asp?p=174771&rl=1
    Second, (cut/paste from other site)
    How to install Oracle software remotely?
    Remote Software Installation Steps: (For Solaris only)
    If you want to install Oracle Software remotely, you should perform the following steps. These steps are applicable only if your source and target machine are running Unix.
    For example, you can install Oracle Software from your home from Washington, DC to a target source in California.
    1. Pick your source server or machine for remote installation.
    2. Check that your CD is in your source CD-ROM drive.
    3. On the target machine, find your target machine name with the output of the /usr/bin/hostname
    4. On the source machine, login as a user.
    5. On the source machine, enable client access: % /usr/openwin/bin/xhost + target-machine-name
    6. Become root user by typing: su (don’t use -)
    7. Check that Volume Manger is running. # ps –ef |grep vold (if you see an entry that contains /usr/sbin/vold, Volume Manager is running. Then skip to Step 10.
    8. If not then do the following: # mkdir –p /cdrom/your-cd-file-name
    9. # mount –F hsfs –r cdrom-device /cdrom/your-cd-file-name
    10. Add the following line to your /etc/dfs/dfstab file: # share –F nfs –o ro /cdrom/your-cd-file-name
    11. Verify whether your source machine is an NFS server: # ps –ef | grep nfsd
    12. If you see an entry that contains /use/lib/nfs/nfsd –a 16, then nfsd is running and skip to Step 16.
    13. If nfsd is running, then type: # /usr/sbin/shareall
    14. If nfsd is not running, then start nfsd by typing: # /etc/init.d/nfs.server start
    15. Verify whether your source machine is an NFS server again by typing: # ps –ef | grep nfsd
    16. Make sure your source machine is exporting your product directory by typing: # /usr/sbin/dfshares
    17. Now, log in to the target machine by type: # rlogin target-machine-name –l user (not root)
    18. Then log in as the root user by typing: # su
    19. Go to the source machine by typing: # cd /net/source-machine/cdrom/your-cd-file-name ,then Skip to 24.
    20. If you cannot change to that directory in Step 19 and you do not have an auto-mounter on your network, then create amount point by typing the following commands.
    21. # mkdir /remote_products
    22. # /usr/sbin/mount –F nfs –r source-machine:/cdrom/your-cd-file-name /remote_products
    23. # cd /remote_products
    24. Redirect the target machine display to source machine by typing: # DISPLAY=source-machine:0; export DISPLAY (if you use a Bourne or Korn shell).
    25. Start the Web Start Installer by typing: # ./installer (or whatever the installer name program is).

  • Disable auto startup on opening the lid

    Apparently there is non possibility to disable the auto startup on opening the lid for the Aspire R13 (and maybe other devices): http://community.acer.com/t5/Notebooks-Netbooks/Aspire-R13-r7-371t-automatic-startup-with-display-lid/m-p/350609/highlight/false#M58486 It would be really useful to add this possibility.

    Thanks for the feedback, atagliaf.  I read the thread that was also posted on the Community Forum.
    I understand what you are asking for, but I would like to get a bit more info, if you don't mind, before I raise the issue to the design team.
    So, your laptop has been put to sleep by closing the lid.  And you KNOW that opening the lid will wake it up.  But for some reason you want to open the lid and NOT wake it up.  I'm not trying to be argumentative here at all, but I don't understand why this causes an issue.  It SEEMS to me like this feature was put in as a convenience, and while it may take a little time to get used to this behavior, I'm not understanding how this is a problem.  Please clarify for me, if you would.  Thanks again.

  • Auto Po creation for Services from service PR

    Dear friends,
    I need to configure the same scenarion Auto PO for Service PR with item cat D and Account assignment K.
    I have done following settings.
    1) Auto PO marked in Vendor master
    2)SproMMExternal Services ManagementSource Determination and Default Valuesfor Purchasing Organizations-Auto Po generation for service requitions.
    3)PR created with Item cat --D and account assignment cat K with material group as input data.
    no material number and service number.
    4)Info record created for material group and vendor.
    5)Source assigned to PR via T code ME56
    now i am trying to create the Auto PO via ME59N but i am getting the message " no suitable PR found"
    Please suggest the action.
    Looking for your reply.
    Thanks & Regards,
    Vinod Kshirsagar
    09420693261
    Edited by: vinod kshirsagar on Jan 3, 2008 1:04 PM

    Since u have assigned source of supply--only enter PR
    Try to creat through me58
    for me59
    Check the following
    vmr --auto PO tick
    mmr/smr--auto PO tick
    info record--tick
    source of supply with fixed source..

  • ORACLE CLIENT 9.2.0.6.0 for Solaris

    I need to download ORACLE CLIENT 9.2.0.6.0 for solaris. I could not locate the link online.
    Can somone provide me the link from where this can be done?
    regards
    akshay
    IT Analyst
    Morgan Stanley.

    9.2.0.6 is not a basic release,it's a patchset and available on metalink only. You need a valid support contract.
    Werner

  • Can't download Oracle 8.1.7 Enterprise Edition for Solaris 32 bit??

    I can't download Oracle 8.1.7 Enterprise Edition for Solaris 32 bit. After filling out the form with the questions...I click on the actual link, but the box never pops up. The status bar on my Internet Explorer slowly increases, but never allows me to download. It just hangs. I have tried multiple times, and I can download other verions from your site...and have many times in the past. Could you please fix this. Thanks.

    I've looked at it and it seems fine. It might have been a temporary glitch - let us know if you continue to have trouble.
    OTN

Maybe you are looking for

  • Web application and desktop application?

    Hi everyone, I am new to this platform.I have a basic doubts that whats the difference between developing application in flex as a web application and desktop application from programming point of view?Can we use same code in both cases? Please guide

  • Schema validation error when validating dom tree in memory

    Hello folks, I have the following problem: I construct a xml-file via the DOM API and before writing to file, I want to validate the DOM tree against a existing schema file. But I always receive following error: In line 0 of buffer: LSX-00006: No def

  • Epson Perfection 2480 photo scanner

    Just got a new iMac running Snow Leopard. I have a problem getting my scanner to work, Scanner is a Epson Perfection 2480 Photo. I have down loaded the latest driver from Epson. If I try to run the scanner from finder I get the following message. The

  • Reference.clear method

    I think that I do not understand the Reference.clear method. I am trying to use SoftReferences to store objects (actually Sets) that can be retrieved from filesystem files. And I am trying to use (override) the Reference.clear method to handle writin

  • Keyboard problem - cannot make a capital letter s

    When I hit the shift+s key i get (nothing). When I hit the caps lock + s key I get a S. I think this is a problem from when I bought the computer 20 months ago but my daughter just reported it to me. It is a blue tooth key board...should I replace it