10g solaris 10 Release 2  startup file

I cant seem to find any reference to the startup file in /etc/rc3.d which I should use for solaris in the documentation. I am using the following which I found on the web . but it starts the database in "idle mode" I have to log in to sqlplus and run the "startup" command .
#!/bin/sh
ORA_HOME=/export/home/oracle/product/10.2.0.1.0
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle startup: cannot start"
exit
fi
case "$1" in
'start') # Start the Oracle databases and listeners
su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart"
# su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
# su - $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole"
# su - $ORA_OWNER -c "$ORA_HOME/bin/isqlplusctl start"
'stop') # Stop the Oracle databases and listeners
# su - $ORA_OWNER -c "$ORA_HOME/bin/isqlplusctl stop"
# su - $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
# su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut"
esac

I dont understand this , the startup log says the database is open, but I cant connect :-
#### This is the startup log
SQL> Connected to an idle instance.
SQL> ORACLE instance started.
Total System Global Area 2550136832 bytes
Fixed Size 1980808 bytes
Variable Size 553649784 bytes
Database Buffers 1979711488 bytes
Redo Buffers 14794752 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
/export/home/oracle/product/10.2.0.1.0/bin/dbstart: Database instance "mvm" warm started.
### end of startup log so i now try to log in
>sqlplus /nolog
SQL*Plus: Release 10.2.0.1.0 - Production on Wed Aug 16 19:38:36 2006
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> connect / as sysdba
Connected to an idle instance.
SQL> select * from v$database
2 ;
select * from v$database
ERROR at line 1:
ORA-01034: ORACLE not available

Similar Messages

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • Oracle Enterprise Manager 10g Grid Control Release 4 (10.2.0.4) HP_UNIX

    Is there a date that the above would be available? I do see that it is ready for Windows, Linux, Solaris, HP_Itanium but not HP_UX PA_RISC. Any ideas?
    Matthew

    Below is what's available for download thru OTN. To ensure my question is clear, approximately when will the MICROSOFT WINDOWS version finally be released:
    Enterprise Manager 10g Grid Control Release 1 (10.1.0.2)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Linux x86
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Solaris Operating System (SPARC) (32-bit)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP-UX
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for AIX5L Based Systems
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP Tru64 UNIX

  • Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Windows

    Any new guestimates when product "Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for WINDOWS" will finally become available.
    Thanks.

    Below is what's available for download thru OTN. To ensure my question is clear, approximately when will the MICROSOFT WINDOWS version finally be released:
    Enterprise Manager 10g Grid Control Release 1 (10.1.0.2)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Linux x86
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for Solaris Operating System (SPARC) (32-bit)
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP-UX
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for AIX5L Based Systems
    Oracle Enterprise Manager 10g Grid Control Release 1 (10.1.0.2) for HP Tru64 UNIX

  • Postoffice-startup-file not copied from SYS-volume

    We migrated a Groupwise 7.02-postoffice from a Netware 6.5-Sp5-server to a
    SLES10-SP1-server with the Novell GroupWise Migration Utility.
    When we started gwpoa the postoffice-startup-file was not
    in /opt/novell/groupwise/agenst/share/
    We looked in the migration-logfile and we saw these messages
    10/27/07 02:32:23 Configuring agent(s)...
    10/27/07 02:32:23 Running remote command:
    sh /tmp/groupwise/software/addagent.sh -
    b /opt/novell/groupwise/agents/bin/gwpoa -
    s /tmp/groupwise/software/p006.poa -h /var/opt/novell/groupwise/mail/p006 -
    v 7
    /tmp/groupwise/software/addagent.sh: line
    135: /tmp/groupwise/software/p006.poa: No such file or directory
    mv: cannot stat `/tmp/p006.poa.tmp.16849': No such file or
    directory
    cp: cannot stat `/tmp/groupwise/software/p006.poa': No such file
    or directory
    10/27/07 02:32:25 Remote command failed (1)
    This is were our sourcefiles were:
    Post Office:
    Source database path: \\fileserver\VOL1\DATA\GRPWISE\P006\
    Destination path: /var/opt/novell/groupwise/mail/p006
    Agents:
    Post Office Agent:
    Path to startup file: \\fileserver\SYS\SYSTEM\p006.poa
    As you see, our startup-file was on another volume then the postoffice.
    In the migration-log we only saw a mount of the postoffice-volume, so we
    think there is a bug in the migration utility. It does not copy the
    startup-file if it is on another volume (in this case on the SYS-volume).
    Or did we something wrong?
    At last we solved our problem by copying (and editing) a startup-file
    to /opt/novell/groupwise/agenst/share/
    Regards,
    Jeroen van der Klaauw

    It happens between the full dbcopy and the incremental dbcopy, when the
    agent is configured.
    Jeroen van der Klaauw
    > When the migration agent finishes the migration of the data there are
    > the second and third phases that the application runs through - 2) to
    > install the agents and 3) configure them. If you bombed out before
    > that third phase then I would understand...
    >
    >
    >
    > On Mon, 29 Oct 2007 15:55:53 GMT, [email protected] wrote:
    >
    > >We migrated a Groupwise 7.02-postoffice from a Netware 6.5-Sp5-server
    to a
    > >SLES10-SP1-server with the Novell GroupWise Migration Utility.
    > >When we started gwpoa the postoffice-startup-file was not
    > >in /opt/novell/groupwise/agenst/share/
    > >We looked in the migration-logfile and we saw these messages
    > >
    > >10/27/07 02:32:23 Configuring agent(s)...
    > >10/27/07 02:32:23 Running remote command:
    > >sh /tmp/groupwise/software/addagent.sh -
    > >b /opt/novell/groupwise/agents/bin/gwpoa -
    > >s /tmp/groupwise/software/p006.poa -
    h /var/opt/novell/groupwise/mail/p006 -
    > >v 7
    > > /tmp/groupwise/software/addagent.sh: line
    > >135: /tmp/groupwise/software/p006.poa: No such file or directory
    > > mv: cannot stat `/tmp/p006.poa.tmp.16849': No such file or
    > >directory
    > > cp: cannot stat `/tmp/groupwise/software/p006.poa': No such file
    > >or directory
    > >10/27/07 02:32:25 Remote command failed (1)
    > >
    > >This is were our sourcefiles were:
    > >
    > >Post Office:
    > > Source database path: \\fileserver\VOL1\DATA\GRPWISE\P006\
    > > Destination path: /var/opt/novell/groupwise/mail/p006
    > >
    > >Agents:
    > > Post Office Agent:
    > > Path to startup file: \\fileserver\SYS\SYSTEM\p006.poa
    > >
    > >As you see, our startup-file was on another volume then the postoffice.
    > >In the migration-log we only saw a mount of the postoffice-volume, so
    we
    > >think there is a bug in the migration utility. It does not copy the
    > >startup-file if it is on another volume (in this case on the SYS-
    volume).
    > >Or did we something wrong?
    > >
    > >
    > >At last we solved our problem by copying (and editing) a startup-file
    > >to /opt/novell/groupwise/agenst/share/
    > >
    > >Regards,
    > >
    > >Jeroen van der Klaauw
    > Tim
    > ___________________
    > Tim Heywood (SYSOP)
    > NDS8
    > Scotland
    > (God's Country)
    > www.nds8.co.uk
    > ___________________
    >
    > In theory, practice and theory are the same
    > In Practice, they are different

  • SQL slow after upgrading to Oracle Database 10g Enterprise Edition Release

    Hi all:
    We have recently upgraded our database from Oracle9i Enterprise Edition Release 9.2.0.6.0 to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    After that we found that our some sql getting very slow
    for example query with 9i showing result in 4 seconds while in 10g showing result in 28 seconds.
    Following is the execution plan of my query in Oracle9i
    Operation     Object     PARTITION_START     PARTITION_STOP     COST
    SELECT STATEMENT ()                    9458
    NESTED LOOPS ()                    9458
      SORT (UNIQUE)                    
       INDEX (RANGE SCAN)     BL_EQ_PK_N               2
      VIEW ()     CONTAINER_INFO               2
       UNION-ALL (PARTITION)                    
        TABLE ACCESS (BY INDEX ROW     SERVICE_EVENTS               1
         NESTED LOOPS ()                    11
          NESTED LOOPS ()                    10
           NESTED LOOPS (OUTER)                    9
            NESTED LOOPS ()                    8
             NESTED LOOPS ()                    7
              NESTED LOOPS ()                    6
               NESTED LOOPS ()                    5
                NESTED LOOPS ()                    4
                 NESTED LOOPS (OUT                    3
                  TABLE ACCESS (BY     EQUIPMENT_USES               2
                   INDEX (UNIQUE S     EQUSE_PK               1
                  TABLE ACCESS (BY     SHIPPING_LINES               1
                   INDEX (UNIQUE S     LINE_PK               
                 INDEX (UNIQUE SCA     EQHT_PK               
                TABLE ACCESS (BY I     EQUIPMENT_TYPES               1
                 INDEX (UNIQUE SCA     EQTP_PK               
               TABLE ACCESS (BY IN     EQUIPMENT_SIZES               1
                INDEX (UNIQUE SCAN     EQSZ_PK               
              TABLE ACCESS (BY IND     SHIP_VISITS               2
               INDEX (RANGE SCAN)     SVISIT_UK               1
             TABLE ACCESS (BY INDE     SHIPS               1
              INDEX (UNIQUE SCAN)     SHIP_PK               
            TABLE ACCESS (BY INDEX     CARE_VIR_MAP               1
             INDEX (UNIQUE SCAN)     VIR_VESVOY               
           TABLE ACCESS (BY INDEX      EQUIPMENT               1
            INDEX (RANGE SCAN)     EQ_EQUSE_FK               
          INDEX (RANGE SCAN)     SEVENTS_EQUSE_FK_N               
        NESTED LOOPS ()                    7
         NESTED LOOPS ()                    6
          NESTED LOOPS ()                    5
           NESTED LOOPS ()                    4
            NESTED LOOPS (OUTER)                    3
             TABLE ACCESS (BY INDE     EQUIPMENT_USES               2
              INDEX (UNIQUE SCAN)     EQUSE_PK               1
             TABLE ACCESS (BY INDE     SHIPPING_LINES               1
              INDEX (UNIQUE SCAN)     LINE_PK               
            INDEX (UNIQUE SCAN)     EQHT_PK               
           TABLE ACCESS (BY INDEX      EQUIPMENT_TYPES               1
            INDEX (UNIQUE SCAN)     EQTP_PK               
          TABLE ACCESS (BY INDEX R     EQUIPMENT_SIZES               1
           INDEX (UNIQUE SCAN)     EQSZ_PK               
         TABLE ACCESS (BY INDEX RO     EQUIPMENT               1
          INDEX (RANGE SCAN)     EQ_EQUSE_FK               and following is my query plan in Oracle 10g
    Operation     Object     PARTITION_START     PARTITION_STOP     COST
    SELECT STATEMENT ()                    2881202
    NESTED LOOPS ()                    2881202
      SORT (UNIQUE)                    2
       INDEX (RANGE SCAN)     BL_EQ_PK_N               2
      VIEW ()     CONTAINER_INFO               2881199
       UNION-ALL ()                    
        NESTED LOOPS (OUTER)                    2763680
         NESTED LOOPS ()                    2718271
          NESTED LOOPS ()                    2694552
           NESTED LOOPS ()                    2623398
            NESTED LOOPS (OUTER)                    2623380
             NESTED LOOPS ()                    2393965
              NESTED LOOPS ()                    2393949
               NESTED LOOPS ()                    2164536
                NESTED LOOPS ()                    1706647
                 NESTED LOOPS ()                    854120
                  TABLE ACCESS (FU     BL_EQUIPMENT               1515
                  TABLE ACCESS (BY     EQUIPMENT_USES               1
                   INDEX (UNIQUE S     EQUSE_PK               1
                 TABLE ACCESS (BY      EQUIPMENT               1
                  INDEX (RANGE SCA     EQ_EQUSE_FK               1
                TABLE ACCESS (BY I     EQUIPMENT_TYPES               1
                 INDEX (UNIQUE SCA     EQTP_PK               1
               TABLE ACCESS (BY IN     EQUIPMENT_SIZES               1
                INDEX (UNIQUE SCAN     EQSZ_PK               1
              INDEX (UNIQUE SCAN)     EQHT_PK               1
             TABLE ACCESS (BY INDE     SHIPPING_LINES               1
              INDEX (UNIQUE SCAN)     LINE_PK               1
            INDEX (RANGE SCAN)     SEVENTS_TSERV_FK_N               1
           TABLE ACCESS (BY INDEX      SHIP_VISITS               2
            INDEX (RANGE SCAN)     SVISIT_UK               2
          TABLE ACCESS (BY INDEX R     SHIPS               1
           INDEX (UNIQUE SCAN)     SHIP_PK               1
         TABLE ACCESS (BY INDEX RO     CARE_VIR_MAP               2
          INDEX (UNIQUE SCAN)     VIR_VESVOY               1
        NESTED LOOPS (OUTER)                    117519
         NESTED LOOPS ()                    98158
          NESTED LOOPS ()                    78798
           NESTED LOOPS ()                    78795
            NESTED LOOPS ()                    59432
             TABLE ACCESS (FULL)     EQUIPMENT_USES               20788
             TABLE ACCESS (BY INDE     EQUIPMENT_TYPES               1
              INDEX (UNIQUE SCAN)     EQTP_PK               1
            TABLE ACCESS (BY INDEX     EQUIPMENT               1
             INDEX (RANGE SCAN)     EQ_EQUSE_FK               1
           INDEX (UNIQUE SCAN)     EQHT_PK               1
          TABLE ACCESS (BY INDEX R     EQUIPMENT_SIZES               1
           INDEX (UNIQUE SCAN)     EQSZ_PK               1
         TABLE ACCESS (BY INDEX RO     SHIPPING_LINES               1
          INDEX (UNIQUE SCAN)     LINE_PK               1can somebody help me regarding this?
    Thanks
    Hassan

    I would say ..gather stats on 9i/10gfor the required table and indexes , then post the expalin plan.
    --Girish                                                                                                                                                                                                                               

  • Bearts Audio Control Pannel will not open. Get error message cannot find startup file

    Bearts Audio Control Pannel will not open. Get error message cannot find startup file!
    Downloaded and instaled up-date for IDT audio from driver up-date. After installation could no longer oppen Beats Audio Control Pannel.  Looked for download to re-install BEATS Audio but cannot find one.
    Any suggestions.
    Sound works with IDT driver installed.
    Pavilion P7-1500Z

    Hi,
    Try using Recovery Manager to reinstall the IDT HD Audio Driver ( this will also reinstall the Beats Audio interface ) - the procedure for using recovery manager to reinstall Software and Drivers is detailed in the document on the link below.
    Recovery Manager - Windows 8.
    Recovery Manager - Windows 7
    After the reinstallation has completed, restart the PC.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0

    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0 is one hour behiend on AIX 5.3.
    I have installed the new timezone version 4 already by oracle DST path database is good OEM main page is showing one hour behiend.
    I have done every possible effort last thing may be i have to update java home i have 1.4 IBM java on the server.
    Please help me in this. Thanks.

    See the Metalink Note *Impact Document for Daylight Saving Time Shift for Enterprise Manager Grid Control [ID 417939.1]* Appendix B - FAQ - point 18
    What is the impact of not patching the JDK on the OMS for 10g Grid Control?
    If you do not patch the JDK on the OMS page refreshed times and possibly other times displayed in the console will be incorrect (they will be off by 1 hour) during an affected period.
    Oracle strongly recommends that you do patch the OMS JDK but we are not aware of any data corruption in the repository nor of any impact on critical EM functionalities (such as severities, notifications and jobs) when the JDK is not patched.

  • ITunes helper and qttask do not appear in my startup files menu

    Troubleshooting iTunes not recognizing my iPhone anymore (always worked in the past), after downloading the new iTunes and new iPhone software. Have uninstalled and reinstalled iTunes twice and followed as much of the online troubleshooting as I could. Could not find iTunes helper and qttask in my startup files menu. This must be what is keeping iTunes from recognizing my iPhone. How do I get these files back?

    Many thanks.
    That can indicate trouble with your Apple Application Support. (Apple Mobile Device Support uses some AAS program files too, so it's consistent with your recognition issue, too.)
    I'd try the following instructions:
    http://discussions.apple.com/thread.jspa?messageID=11901253&#11901253
    (Although those instructions are for a 32-bit Vista, they're pretty much identical for XP. Just read "Uninstall a program control panel" as "Add or Remove Programs control panel" and "Computer" as "My Computer".)

  • Oracle Enterprise Manager 10g Grid Control Release 5

    Hi All,
    Has anyone here already using Oracle Enterprise Manager 10g Grid Control Release 5? Currently we are using Release 2 of Oracle Enterprise Manager as a package upon installation of Oracle 10g. Curious about Release 5 I want to try it out in our Dev Environment. But before making any changes. I would like to ask guidance from you.
    Upon installation does it needs Operating System Patches, Packages etc.? Currently we are using AIX 5L Based Systems (64-Bit) and 10g for Database. Is this a complete installation or Just an upgrade?
    Regards,
    Dexter

    We are using 10.2.0.5 on windows.
    10.2.0.5 is just an upgrade
    How to install and upgrade on AIX?
    http://www.oracle.com/technology/software/products/oem/htdocs/Grid_Control_10.2.0.5.0_AIX5L_readme.html
    quick installation quide.
    http://download.oracle.com/docs/cd/B19306_01/install.102/b28033.pdf
    Hope that will help you.
    Anil Malkai

  • Ora-03113 with Java Procedure On 10g Enterprise Edition Release 10.1.0.3.1

    Hi All,
    I am getting Ora-03113 (End-of-Communication) while executing Java Stored procedure. Java Stored Procedure executes Sqlldr on server. Server OS is Linux 86x.
    Database is -- Oracle with Infrastructure.
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.1 - Prod
    PL/SQL Release 10.1.0.3.1 - Production
    CORE 10.1.0.3.0 Production
    TNS for Linux: Version 10.1.0.3.0 - Production
    NLSRTL Version 10.1.0.3.0 - Production
    Same java procedure was working properly when database was 10.1.0.2.1. Any suggestion
    SKM

    Check in Ur programs -Application Tool bar, Whether your have two oracle or not.
    You can unintall the OLD version from your PC using the Oracle Unistaller

  • Patch set from 10g Enterprise Edition Release 10.2.0.1.0 to 10.2.0.3.0

    Hi,
    Can you please provide me the patch set to upgrade from
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production for Windows 32bit
    to
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production for Windows 32bit
    and instruction to apply the patch.
    Thank you.
    Regards,
    Lokanath

    For this you need to have CSI number and account on https://support.oracle.com
    https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&id=()),(page=PatchSearchResultsHome&id=(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%225337014%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22platform%22%20op=%22IS%22%20value=%22319,212%22%20type=%22platform%22/%3E%0A%3C/Search%3E&from=bookmark&viewItem=0&flag=search))
    Regards
    Rajesh

  • Application running in Solaris 9 container generating core files. what to do?

    My solaris 9 zone configuration in solaris 10 looks like:
    zonecfg:sms> info
    zonename: sms
    zonepath: /zone/sms
    brand: solaris9
    autoboot: true
    bootargs:
    pool:
    limitpriv: default,proc_priocntl,proc_clock_highres,proc_lock_memory,sys_time,priv_proc_priocntl,priv_sys_time,net_rawaccess,sys_ipc_config,priv_proc_lock_memory
    scheduling-class:
    ip-type: exclusive
    hostid:
    [max-shm-memory: 4G]
    [max-shm-ids: 100]
    [max-sem-ids: 100]
    fs:
      dir: /var
      special: /dev/dsk/c1t0d0s5
      raw: /dev/rdsk/c1t0d0s5
      type: ufs
      options: []
    net:
      address not specified
      physical: bge0
      defrouter not specified
    device
      match: /dev/dsk/c1t0d0s5
    device
      match: /dev/rdsk/c1t0d0s5
    device
      match: /dev/dsk/c1t0d0s6
    device
      match: /dev/rdsk/c1t0d0s6
    device
      match: /dev/dsk/c1t0d0s7
    device
      match: /dev/rdsk/c1t0d0s7
    capped-cpu:
      [ncpus: 2.00]
    capped-memory:
      physical: 4G
      [swap: 8G]
      [locked: 2G]
    attr:
      name: hostid
      type: string
      value: 84b18f64
    attr:
      name: machine
      type: string
      value: sun4u
    rctl:
      name: zone.max-sem-ids
      value: (priv=privileged,limit=100,action=deny)
    rctl:
      name: zone.max-shm-ids
      value: (priv=privileged,limit=100,action=deny)
    rctl:
      name: zone.max-shm-memory
      value: (priv=privileged,limit=4294967296,action=deny)
    rctl:
      name: zone.max-swap
      value: (priv=privileged,limit=8589934592,action=deny)
    rctl:
      name: zone.max-locked-memory
      value: (priv=privileged,limit=2147483648,action=deny)
    rctl:
      name: zone.cpu-cap
      value: (priv=privileged,limit=200,action=deny)
    Solaris 9 zone /etc/system file looks like:
    * The directive below is not applicable in the virtualized environment.
    * The directive below is not applicable in the virtualized environment.
    * The directive below is not applicable in the virtualized environment.
    * The directive below is not applicable in the virtualized environment.
    * The directive below is not applicable in the virtualized environment.
    * The directive below is not applicable in the virtualized environment.
    set noexec_user_stack=1
    set semsys:seminfo_semmni=100
    set semsys:seminfo_semmns=1024
    set semsys:seminfo_semmsl=256
    set semsys:seminfo_semvmx=32767
    set shmsys:shminfo_shmmax=4294967295
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=10
    set rlim_fd_max=65536
    set rlim_fd_cur=60000
    * The directive below is not applicable in the virtualized environment.
    My questions are:
    1. Application running in solaris 9 container generating core files. what to do???
    2. My prstat -Z for zone shows almost 95% percent cpu usage. what to do???
    3. Kindly can share how to move solaris 9 into solaris 10 containers ??

    Based on the new questions for the same post you wrote in the other communities, some posts are removed as duplicate, here is the answer :
    For the point #3, please look on table 17-1 in the following URL :
    Zone Components - System Administration Guide: Oracle Solaris Containers-Resource Management and Oracle Solaris Zones
    You can also customize your container /etc/system file but it cannot exceeds the global zone and the zone configuration value.
    For the other point, #2, this can be complicated without a complete image of what the complete system do.
    Try fist to check if you have not a busy process in your zone, then you can check if a bottleneck exists in the I/O side. You use maybe wrong parameters, a wrong configuration or your system configuration is insufficient in term of resources.
    What I can see in the outputs that you provided is that the S9 zone uses the half of the swap space. This can impact your zone performance and I/O activity, and can have in this case a side effect on some processes. Check why your zone uses the swap and how you can remedy this.

  • Audio in Solaris 10 release 08/07

    Hello
    I have just installed Solaris 10 release 08/07,After i installed successfully i noticed that it is not supportiing Audio that is when i clicked on the icon it is showing message like no audio device found and "/dev/audioctl" and further "/dev/sound". I don't know how to rectify this.
    My System:
    Lenovo 3000H 8789 Q62
    And Audio Vendor:
    Realtek ALC655
    Audio configuration using "prtconf -pv" :
    Node 0x00000b
    assigned-addresses: 81001710.00000000.0000e800.00000000.00000100.81 001714.00000000.0000ec00.00000000.00000080
    reg: 00001700.00000000.00000000.00000000.00000000.01001710.00000000 .00000000.00000000.00000100.01001714.00000000.00000000.00000000.00000080
    compatible: 'pci1039,7012.1019.6666.a0' + 'pci1039,7012.1019.6666' + 'pci1019,6666' + 'pci1039,7012.a0' + 'pci1039,7012' + 'pciclass,040100' + 'pcic lass,0401'
    model: 'Audio device'
    power-consumption: 00000001.00000001
    fast-back-to-back:
    devsel-speed: 00000001
    interrupts: 00000003
    max-latency: 0000000b
    min-grant: 00000034
    subsystem-vendor-id: 00001019
    subsystem-id: 00006666
    unit-address: '2,7'
    class-code: 00040100
    revision-id: 000000a0
    vendor-id: 00001039
    device-id: 00007012
    name: 'pci1019,6666'
    I'm completely new to this platform. So please help me in datailed way.
    Expecting your Replies.
    Thank you for your kind attention.
    Edited by: selavkumar_ss on Sep 28, 2007 9:31 PM

    First of all there is a special doc DVD for Solaris 10 u4 (listed on the same page as installation DVD)
    Second - "release notes" stuff is always located on docs.sun.com
    http://docs.sun.com/app/docs/doc/820-1259
    http://docs.sun.com/app/docs/doc/820-0181

  • Release Space at file system level in DB2

    Dear Gurus,
    We have ECC 6.0 system on AIX with DB2 9.1 . We want to release space at file system level  , I have idea regarding Oracle that it can be done in 2 ways 1: Offline DB reorg 2 : Dtafile resize.I am new to DB2 so can you please let me know whether it is feasible with DB2 as well or not.
    In case yes what steps we need to perform in db2 in order to release space
    Regards
    Kuldeep singh

    You can reduce the size of your tablespaces down to their current high water mark with the ALTER TABLESPACE REDUCE command. Reducing the high water mark requires much more work and on DB2 V9.1 there is no relyable way to do this.
    DB2 V9.7 provides a new tablespace type with "reclaimable storage" attribute that allows to reclaim space much easier.
    If you have a lot of trapped free space in your V9.1 tablespaces below the current high watermark you may want to consider a homogenous system copy with R3load into new tablespaces. This should be combined with an upgrade to V9.7 to get the new tablespace types. Another way to reorganize tablespaces is to move all tables into new tablespaces using DB6CONV.
    Regards
                      Frank

Maybe you are looking for

  • Sales Document blank in GL line items

    Hi , Anybody know how to make Sales order number appears in GL line item report (FBL3N) ? I use 4.7 version. Thanks

  • Why cant i disable mail service ?

    Mail service got enabled when I enabled some other services (don't know which one) i checked a couple and it got enabled, i tried to disable it then but it wouldn't let me, back then i didn't pay much attention to it so of course it's not configured.

  • How do I configure Time Capsule to work with 8 port unmanaged switch?

    This is what I want to end up with. cable modem Time Capsule                                                         wireless network           8 port unmanaged switch TRENDnet TEGS80G                                                                  

  • Sound in a jFrame

    Hi, just want to ask if anyone has any code samples to play files using a jFrame (not an applet) using the javax.sound.sampled package. All I am trying to do is play a sound file that is already defined in the code when I press a button. All I can fi

  • HT1495 I have accidentally synced my friends iPad to mine. How can I undo this?

    I have accidentally synced my iPad with a friends. How can I undo this?