Oracle not starting up throwing error

My listener problem is solved but the DB dosent start up and throws this error, I also have a dump of the startup.log and the copy of init.ora file.
[oracle@localhost ~]$ ./oracle.sh start
Starting Oracle: Password:
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 24-DEC-2009 23:01:32
Copyright (c) 1991, 2005, Oracle. All rights reserved.
TNS-01106: Listener using listener name LISTENER has already been started
Password:
Failed to auto-start Oracle Net Listene using /ade/vikrkuma_new/oracle/bin/tnslsnr
Processing Database instance "sales": log file /u01/app/oracle/oracle/product/10.2.0/db_1/startup.log
OK
startup.log
/u01/app/oracle/oracle/product/10.2.0/db_1/bin/dbstart: Starting up database "sales"
Thu Dec 24 23:02:00 IST 2009
logger: Can't find init file for Database instance "sales".
logger: Error: Database instance "sales" NOT started.
init.ora
# $Header: init.ora 06-aug-98.10:24:40 atsukerm Exp $
# Copyright (c) 1991, 1997, 1998 by Oracle Corporation
# NAME
# init.ora
# FUNCTION
# NOTES
# MODIFIED
# atsukerm 08/06/98 - fix for 8.1.
# hpiao 06/05/97 - fix for 803
# glavash 05/12/97 - add oracle_trace_enable comment
# hpiao 04/22/97 - remove ifile=, events=, etc.
# alingelb 09/19/94 - remove vms-specific stuff
# dpawson 07/07/93 - add more comments regarded archive start
# maporter 10/29/92 - Add vms_sga_use_gblpagfile=TRUE
# jloaiza 03/07/92 - change ALPHA to BETA
# danderso 02/26/92 - change db_block_cache_protect to dbblock_cache_p
# ghallmar 02/03/92 - db_directory -> db_domain
# maporter 01/12/92 - merge changes from branch 1.8.308.1
# maporter 12/21/91 - bug 76493: Add control_files parameter
# wbridge 12/03/91 - use of %c in archive format is discouraged
# ghallmar 12/02/91 - add global_names=true, db_directory=us.acme.com
# thayes 11/27/91 - Change default for cache_clone
# jloaiza 08/13/91 - merge changes from branch 1.7.100.1
# jloaiza 07/31/91 - add debug stuff
# rlim 04/29/91 - removal of char_is_varchar2
# Bridge 03/12/91 - log_allocation no longer exists
# Wijaya 02/05/91 - remove obsolete parameters
# Example INIT.ORA file
# This file is provided by Oracle Corporation to help you customize
# your RDBMS installation for your site. Important system parameters
# are discussed, and example settings given.
# Some parameter settings are generic to any size installation.
# For parameters that require different values in different size
# installations, three scenarios have been provided: SMALL, MEDIUM
# and LARGE. Any parameter that needs to be tuned according to
# installation size will have three settings, each one commented
# according to installation size.
# Use the following table to approximate the SGA size needed for the
# three scenarious provided in this file:
# -------Installation/Database Size------
# SMALL MEDIUM LARGE
# Block 2K 4500K 6800K 17000K
# Size 4K 5500K 8800K 21000K
# To set up a database that multiple instances will be using, place
# all instance-specific parameters in one file, and then have all
# of these files point to a master file using the IFILE command.
# This way, when you change a public
# parameter, it will automatically change on all instances. This is
# necessary, since all instances must run with the same value for many
# parameters. For example, if you choose to use private rollback segments,
# these must be specified in different files, but since all gc_*
# parameters must be the same on all instances, they should be in one file.
# INSTRUCTIONS: Edit this file and the other INIT files it calls for
# your site, either by using the values provided here or by providing
# your own. Then place an IFILE= line into each instance-specific
# INIT file that points at this file.
# NOTE: Parameter values suggested in this file are based on conservative
# estimates for computer memory availability. You should adjust values upward
# for modern machines.
# You may also consider using Database Configuration Assistant tool (DBCA)
# to create INIT file and to size your initial set of tablespaces based
# on the user input.
# replace DEFAULT with your database name
db_name=sales
db_files = 80 # SMALL
# db_files = 400 # MEDIUM
# db_files = 1500 # LARGE
db_file_multiblock_read_count = 8 # SMALL
# db_file_multiblock_read_count = 16 # MEDIUM
# db_file_multiblock_read_count = 32 # LARGE
db_block_buffers = 100 # SMALL
# db_block_buffers = 550 # MEDIUM
# db_block_buffers = 3200 # LARGE
shared_pool_size = 3500000 # SMALL
# shared_pool_size = 5000000 # MEDIUM
# shared_pool_size = 9000000 # LARGE
log_checkpoint_interval = 10000
processes = 50 # SMALL
# processes = 100 # MEDIUM
# processes = 200 # LARGE
parallel_max_servers = 5 # SMALL
# parallel_max_servers = 4 x (number of CPUs) # MEDIUM
# parallel_max_servers = 4 x (number of CPUs) # LARGE
log_buffer = 32768 # SMALL
# log_buffer = 32768 # MEDIUM
# log_buffer = 163840 # LARGE
# audit_trail = true # if you want auditing
# timed_statistics = true # if you want timed statistics
max_dump_file_size = 10240 # limit trace file size to 5 Meg each
# Uncommenting the line below will cause automatic archiving if archiving has
# been enabled using ALTER DATABASE ARCHIVELOG.
# log_archive_start = true
# log_archive_dest = disk$rdbms:[oracle.archive]
# log_archive_format = "T%TS%S.ARC"
# If using private rollback segments, place lines of the following
# form in each of your instance-specific init.ora files:
# rollback_segments = (name1, name2)
# If using public rollback segments, define how many
# rollback segments each instance will pick up, using the formula
# # of rollback segments = transactions / transactions_per_rollback_segment
# In this example each instance will grab 40/5 = 8:
# transactions = 40
# transactions_per_rollback_segment = 5
# Global Naming -- enforce that a dblink has same name as the db it connects to
global_names = TRUE
# Edit and uncomment the following line to provide the suffix that will be
# appended to the db_name parameter (separated with a dot) and stored as the
# global database name when a database is created. If your site uses
# Internet Domain names for e-mail, then the part of your e-mail address after
# the '@' is a good candidate for this parameter value.
# db_domain = us.acme.com      # global database name is db_name.db_domain
# FOR DEVELOPMENT ONLY, ALWAYS TRY TO USE SYSTEM BACKING STORE
# vms_sga_use_gblpagfil = TRUE
# FOR BETA RELEASE ONLY. Enable debugging modes. Note that these can
# adversely affect performance. On some non-VMS ports the db_block_cache_*
# debugging modes have a severe effect on performance.
#_db_block_cache_protect = true # memory protect buffers
#event = "10210 trace name context forever, level 2" # data block checking
#event = "10211 trace name context forever, level 2" # index block checking
#event = "10235 trace name context forever, level 1" # memory heap checking
#event = "10049 trace name context forever, level 2" # memory protect cursors
# define parallel server (multi-instance) parameters
#ifile = ora_system:initps.ora
# define two control files by default
control_files = (ora_control1, ora_control2)
# Uncomment the following line if you wish to enable the Oracle Trace product
# to trace server activity. This enables scheduling of server collections
# from the Oracle Enterprise Manager Console.
# Also, if the oracle_trace_collection_name parameter is non-null,
# every session will write to the named collection, as well as enabling you
# to schedule future collections from the console.
# oracle_trace_enable = TRUE
# Uncomment the following line, if you want to use some of the new 8.1
# features. Please remember that using them may require some downgrade
# actions if you later decide to move back to 8.0.
#compatible = 8.1.0

starts up the instance and shuts down immediately.
Here is the log
/u01/app/oracle/oracle/product/10.2.0/db_1/bin/dbstart: Starting up database "sales"
Thu Dec 24 23:26:47 IST 2009
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Dec 24 23:26:47 2009
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> Connected to an idle instance.
SQL> ORA-00371: not enough shared pool memory, should be atleast 62198988 bytes
SQL> Disconnected
/u01/app/oracle/oracle/product/10.2.0/db_1/bin/dbstart: Database instance "sales" warm started.

Similar Messages

  • Oracle not started ORA-12560 error

    Hello,
    My Database version : 8.1.7.0.0
    OS : Windows 2000
    When I want to connect sqlplus using :
    C:\Documents and Settings\Administrator.TVCLKLB>sqlplus sys@tvclklb
    SQL*Plus: Release 8.1.7.0.0 - Production on Sun May 25 12:11:43 2008
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    And when I want to connect using sqlplus/nolog it shows :
    C:\Documents and Settings\Administrator.TVCLKLB>sqlplus/nolog
    SQL*Plus: Release 8.1.7.0.0 - Production on Sun May 25 12:13:06 2008
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    SQL> conn sys as sysdba
    Enter password:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Have any idea what is the problem and what is suggested solution. I already check the listner and service which is running smoothy.
    I shall wait for ur quick feedback.
    Thanks in advanced
    Aungshuman Paul

    For further details I put the sqlnet.log file :
    Fatal NI connect error 12640, connecting to:
    (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 8.1.7.0.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 8.1.7.0.0 - Production
    Time: 25-MAY-2008 12:20:35
    Tracing not turned on.
    Tns error struct:
    nr err code: 0
    ns main err code: 12640
    TNS-12640: Authentication adapter initialization failed
    ns secondary err code: 0
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    Thanks
    Aungshu

  • Error msg like :ORACLE not started when login through SQL Tool

    Hi All,
    When i login through SQL TOOL (either sysdba/system/scott... any user) the error msg like ORACLE not started ....
    so i check the services from controlpanel->administraive tools->services ->Oralceservice<dbname> service ... so in this service is in manual & starting but not started.....
    This happen becoz i stated in manual first time & now i change it then it display as strating not started.....
    pls. if u have any solution related to this service infrom me...
    Thx

    Make your instance service in the windows services as auto start. However, if it show starting not started, just stop and start again. Otherwsie, shutdown your windows and start it again.
    Jaffar

  • Oracle Not Starting Automatically

    I have a problem Oracle not starting up automatically. The Windows 2003 service is started and set to start up automatically. I don't see any errors in the event viewer. I have to login as sysdba and do a startup for the database to be available. Is this normal?

    Here's some detail about the error from sqlnet.log in the database folder. Any idea what the problem is?
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleoracle)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=oracle)(CID=(PROGRAM=C:\ora102\bin\oradim.exe)(HOST=WIN2003SERVER)(USER=SYSTEM))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 01-APR-2008 08:50:23
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 2
    nt OS err code: 0

  • Oracle Not Starting : error ORA-19809

    Hello All,
    I was trying to start the 11gr2 database and getting the following error. Please can any one give some advise ? I manually deleted all archive logs using OS command but still i get the
    same error when i try to start the database.
    ORA-19815: WARNING: db_recovery_file_dest_size of 4039114752 bytes is 100.00% used, a nd has 0 remaining bytes available.
    You have following choices to free up space from recovery area:
    1. Consider changing RMAN RETENTION POLICY. If you are using Data Guard,
    then consider changing RMAN ARCHIVELOG DELETION POLICY.
    2. Back up files to tertiary device such as tape using RMAN
    BACKUP RECOVERY AREA command.
    3. Add disk space and increase db_recovery_file_dest_size parameter to
    reflect the new space.
    4. Delete unnecessary files using RMAN DELETE command. If an operating
    system command was used to delete files, then use RMAN CROSSCHECK and
    DELETE EXPIRED commands.
    Errors in file /u01/app/oracle/diag/rdbms/orcl/DB11G/trace/DB11G_ora_2921.trc:
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 50629632 bytes disk space from 4039114752 limit
    ARCH: Error 19809 Creating archive log file to '/u01/app/oracle/flash_recovery_area/O RCL/archivelog/2012_02_18/o1_mf_1_95_%u_.arc'
    2012-02-18 15:58:55.099000 -05:00
    ARC3: Archival started
    ARC0: STARTING ARCH PROCESSES COMPLETE
    ARCH: Archival stopped, error occurred. Will continue retrying
    ORACLE Instance DB11G - Archival Error
    ORA-16038: log 3 sequence# 96 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/ORCL/onlinelog/o1_mf_3_7kp sygwt_.log'
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/flash_recovery_area/ORCL/onlinelog /o1_mf_3_7kpsyj6n_.log'
    Errors in file /u01/app/oracle/diag/rdbms/orcl/DB11G/trace/DB11G_arc2_2927.trc:
    ORA-16038: log 3 sequence# 96 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/ORCL/onlinelog/o1_mf_3_7kp sygwt_.log'
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/flash_recovery_area/ORCL/onlinelog /o1_mf_3_7kpsyj6n_.log'
    Errors in file /u01/app/oracle/diag/rdbms/orcl/DB11G/trace/DB11G_ora_2921.trc:
    ORA-16038: log 2 sequence# 95 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/ORCL/onlinelog/o1_mf_2_7kp sydnm_.log'
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/flash_recovery_area/ORCL/onlinelog /o1_mf_2_7kpsyfp7_.log'
    USER (ospid: 2921): terminating the instance due to error 16038
    2012-02-18 15:58:56.976000 -05:00
    Instance terminated by USER, pid = 2921

    Rama Krishna wrote:
    I think database need to be started before you do any thing with RMAN my problem is database not even starting!You told SB that you had done "option 4":
    4. Delete unnecessary files using RMAN DELETE command. If an operating
    system command was used to delete files, then use RMAN CROSSCHECK and
    DELETE EXPIRED commands.
    Oh well. So you " *think* database need to be started before you do any thing with RMAN"
    Did you try?
    We don't need the database to be open for this, just have the control file mounted:
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@vmlnxsrv01 ~]$ rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Sat Feb 18 16:21:25 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database (not started)
    RMAN> startup mount;
    Oracle instance started
    database mounted
    Total System Global Area     849530880 bytes
    Fixed Size                     1339824 bytes
    Variable Size                578817616 bytes
    Database Buffers             264241152 bytes
    Redo Buffers                   5132288 bytes
    RMAN> crosscheck archivelog all;
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=18 device type=DISK
    validation succeeded for archived log
    archived log file name=/orafra/ORCL/archivelog/2012_01_15/o1_mf_1_66_7k6t71k9_.arc RECID=3 STAMP=772653704
    <snip>
    archived log file name=/orafra/ORCL/archivelog/2012_02_18/o1_mf_1_80_7n06cfq0_.arc RECID=17 STAMP=775582480
    Crosschecked 15 objects
    RMAN> exit
    Recovery Manager complete.
    [oracle@vmlnxsrv01 ~]$ exit
    logoutEdited by: EdStevens on Feb 18, 2012 4:32 PM

  • Database do not start due to error 445

    Hi,
    We have three databases on one HP-UX 11.31 server, the DB version is 10.2.0.4, we started facing slowness in all the databases, when I tried to connect to the server it was very slow, even the sqlplus was taking very long time, when checked the alert logs of all the databases, found the below error in each alert log file;
    ksvcreate: Process(m000) creation failed
    Sun Apr 10 12:56:56 2011
    ksvcreate: Process(m000) creation failed
    Sun Apr 10 12:59:00 2011The server resource utilization was fine with almost 15%CPU utilization, 55% Memory utilization.
    I aborted the databases then tried to start them, the startup failed with the below error for all databases;
    ORA-00445: background process "PMON" did not start after 120 seconds
    The following is the alert log content for one database;
    ksvcreate: Process(m000) creation failed
    Sun Apr 10 13:09:17 2011
    ksvcreate: Process(m000) creation failed
    Sun Apr 10 13:24:29 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    WARNING: Could not create SMR
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =242
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Sun Apr 10 13:27:10 2011
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.4.0.
    System parameters with non-default values:
      processes                = 2000
      sga_max_size             = 3221225472
      __shared_pool_size       = 1828716544
      __large_pool_size        = 16777216
      __java_pool_size         = 16777216
      __streams_pool_size      = 16777216
      nls_date_format          = dd-mm-yyyy
      nls_calendar             = Arabic Hijrah
      filesystemio_options     = NONE
      disk_asynch_io           = FALSE
      sga_target               = 3221225472
      control_files            = /oradb/oradata/centl/control01.ctl, /oradb/oradat
    a/cent/control02.ctl, /oradb/oradata/cent/control03.ctl
      db_block_size            = 8192
      __db_cache_size          = 1325400064
      db_writer_processes      = 4
      compatible               = 10.2.0.3.0
      db_file_multiblock_read_count= 16
      db_recovery_file_dest    = /arch
      db_recovery_file_dest_size= 32212254720
      undo_management          = AUTO
      undo_tablespace          = UNDOTBS1
      remote_login_passwordfile= EXCLUSIVE
      db_domain                =
      dispatchers              = (PROTOCOL=TCP) (SERVICE=centlXDB)
      smtp_out_server          = 10.241.16.118:25
      job_queue_processes      = 10
      background_dump_dest     = /u01/app/oracle/admin/cent/bdump
      user_dump_dest           = /u01/app/oracle/admin/centl/udump
      max_dump_file_size       = 1024
      core_dump_dest           = /u01/app/oracle/admin/cent/cdump
      audit_file_dest          = /u01/app/oracle/admin/cent/adump
      db_name                  = cent
      open_cursors             = 2000
      pga_aggregate_target     = 1699741696
    Sun Apr 10 13:31:50 2011
    USER: terminating instance due to error 445
    Instance terminated by USER, pid = 2089Content for the Trace file for one of the databases;
    ORACLE_HOME = /u01/app/oracle/db
    System name:    HP-UX
    Node name:      db01
    Release:        B.11.31
    Version:        U
    Machine:        ia64
    Instance name: cent
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    Unix process pid: 4667, image: oracle@db01
    *** 2011-04-10 15:44:19.475
    Dynamic strand is set to TRUE
    Running with 2 shared and 242 private strand(s). Zero-copy redo is FALSE
    *** 2011-04-10 15:50:40.280
    Waited for process PMON to initialize for 60 seconds
    *** 2011-04-10 15:50:40.280
    Dumping diagnostic information for PMON:
    OS pid = 4701
    loadavg : 1.36 1.35 1.29
    Swapinfo :
            Avail = 15520.08Mb Used = 2490.52Mb
            Swap free = 13029.57Mb Kernel rsvd = 1018.08Mb
            Free Mem  = 10161.05Mb
      F S      UID   PID  PPID  C PRI NI             ADDR   SZ            WCHAN    S
    TIME TTY       TIME COMD
    1401 S   oracle  4701     1  0 154 20 e000000413447080 53772 e00000017cefa140 15
    :49:39 ?         0:00 ora_pmon_cent
    /bin/sh[2]: /opt/langtools/bin/gdb:  not found.
    *** 2011-04-10 15:50:40.372
    *** 2011-04-10 15:50:50.470
    Waited for process PMON to initialize for 111 seconds
    *** 2011-04-10 15:51:31.180
    Dumping diagnostic information for PMON:
    OS pid = 4701
    loadavg : 1.36 1.35 1.30
    Swapinfo :
            Avail = 15520.08Mb Used = 2490.52Mb
            Swap free = 13029.57Mb Kernel rsvd = 1018.08Mb
            Free Mem  = 10160.98Mb
      F S      UID   PID  PPID  C PRI NI             ADDR   SZ            WCHAN    S
    TIME TTY       TIME COMD
    1401 S   oracle  4701     1  0 154 20 e000000413447080 53772 e00000017cefa140 15
    :49:39 ?         0:00 ora_pmon_cent
    /bin/sh[2]: /opt/langtools/bin/gdb:  not found.
    *** 2011-04-10 15:51:31.250
    Killing process (ospid 4701):  (reason=x4 error=0)
    ... and the process is still alive after kill!
    *** 2011-04-10 15:51:40.190
    KSTDUMP: In-memory trace dump
    TIME(usecs):SEQ# ORAPID   SID EVENT  OP DATA
    ========================================================================
    kground PMON
    2C463A42:000000F8  1999     0 10254  42 KSBS1P: timed out while waiting
    2C463A48:000000F9  1999     0 10254  51 KSBS1P: out of loop: process did not sta
    rt
    KSTDUMP: End of in-memory trace dump
    *** 2011-04-10 15:51:40.190All the databases has similar trace files, I rebooted the server and still none of the database is starting.
    The Server resources utilization seems to be fine;
    oracle$ iostat 3 3
      device    bps    sps   msps
       disk3     93    6.9    1.0
       disk5     17    2.4    1.0
      disk17      0    0.1    1.0
       disk3     21    4.3    1.0
       disk5     20    4.0    1.0
      disk17      0    0.3    1.0
       disk3      0    0.0    1.0
       disk5      0    0.0    1.0
      disk17      0    0.0    1.0
    oracle$ swapinfo -tan
                 Kb      Kb      Kb   PCT  START/      Kb
    TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME
    dev     24576000       0 24576000    0%       0       -    1  /dev/vg00/lvol2
    reserve       -  918204 -918204
    memory  15892564 2550292 13342272   16%
    total   40468564 3468496 37000068    9%       -       0    -
    System: hrdbdr01                                      Sun Apr 10 16:25:28 2011
    Load averages: 1.61, 1.60, 1.55
    237 processes: 182 sleeping, 55 running
    Cpu states:
    CPU   LOAD   USER   NICE    SYS   IDLE  BLOCK  SWAIT   INTR   SSYS
    0    1.61  27.7%   0.0%  71.3%   1.0%   0.0%   0.0%   0.0%   0.0%
    1    1.59  32.0%   0.0%  67.0%   1.0%   0.0%   0.0%   0.0%   0.0%
    2    1.61  13.0%  14.0%  71.0%   2.0%   0.0%   0.0%   0.0%   0.0%
    3    1.60  10.0%  20.0%  69.0%   1.0%   0.0%   0.0%   0.0%   0.0%
    avg   1.61  20.8%   8.9%  69.3%   1.0%   0.0%   0.0%   0.0%   0.0%
    System Page Size: 4Kbytes
    Memory: 974032K (512772K) real, 1317016K (704304K) virtual, 12491712K free  Page
    # 1/24
    CPU TTY  PID USERNAME PRI NI   SIZE    RES STATE    TIME %WCPU  %CPU COMMAND
    3   ?  4249 root     255 39 20140K  1612K run     42:41 49.96 49.88 stm
    2   ?  3360 root     255 39 20140K  1612K run     55:11 49.65 49.56 stm
    0   ?  3040 root     240 20 20140K  1612K run     72:27 49.08 48.99 stm
    1   ?  2419 root     241 20 20140K  1616K run     77:20 48.81 48.73 stm
    1   ?  4850 root     168 20 20140K  1612K sleep    4:15 23.99 23.95 stm
    2   ?  4583 root     168 20 20140K  1612K sleep   12:21 22.93 22.89 stm

    Thanks for a quick reply!
    No changes on the server side, but recently we changed the Windows DNS servers and this unix machine is connected to the domain.
    the resolv.conf file contents are
    oracle:/etc$ more resolv.conf
    domain mc.ed
    nameserver 10.141.11.1
    nameserver 10.141.11.2But, we have two new DNS servers with 10.141.11.3 and 10.141.11.4.
    I think changing the old DNS IPs with the new DNS IPs will resolve the issue.

  • Oracle not starting

    When i start SQL Plus my oracle server is not starting it is giving me error ORA-1034. What could be the problem. How do i solve it??

    What is your OS ? According to the message your instance is down. Explain better what are the steps that you are carrying out.
    ORA-01034 ORACLE not available
    Cause: Oracle was not started. Possible causes include the following:
    The SGA requires more space than was allocated for it.
    The operating-system variable pointing to the instance is improperly defined.
    Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See the platform-specific Oracle documentation.
    Joel Pérez

  • ITunes will not start:  Get same error message ever time...

    I installed iTunes 6 and quicktime and now it will not start up at all. Tried uninstalling and reinstalling as many have. The only difference is I am actually getting an error message. I do not get an hour glass as many have. I have tried deleting the suggested file found at: C:\Documents and Settings\All Users\Application Data\Apple Computer\iTunes\SC Info
    This did not work either. I keep getting the following error window, and never see iTunes even try to launch: PLEASE HELP!!!!
    "iTunes has encountered a problem and needs to close. We are sorry for the inconvienence. If you were in the middle of something, the information you were working on may be lost. For more information about this error click here"

    hi Josh!
    "iTunes has encountered a problem and needs to close. We are sorry for the inconvienence.
    the first thing i check for with one of those is a broken quicktime. does your quicktime currently launch? if it doesn't, try these techniques:
    b noir, "iTunes doesn't start... Quicktime not installed ERROR 2093" #5, 03:28pm Nov 8, 2005 CDT
    keep us posted.
    love, b

  • Remote Desktop Management service not starting. service-specific error: %%2284126209 - Event ID: 7024

    Hi Forum members,
    We have a client that has intermittent issues with RDS on a 2012 R2 server.
    As an overview of the environment, the client has a single VMWare host support 2 x Windows 2012 R2 VMs one is the File/Print/Email server and the 2nd is the RDS server used to allow the client to run MYOB Enterprise. Both servers have the AD DS role and
    DNS roles amongst others.
    The 1st issue is that the RD Connection Broker shows the error: "The server pool does not match the RD Connection Brokers that are in it. and then "1. Cannot connect to any of the specified RD Connection Broker servers".
    The above issue seems to be caused by the RDMS service not starting. When you attempt to start it, the service stops and the error in the title is logged in the "System" event log. Full transcript below:
    Log Name:      System
    Source:        Service Control Manager
    Date:          21/01/2015 4:50:32 PM
    Event ID:      7024
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      intentionally removed.local
    Description:
    The Remote Desktop Management service terminated with the following service-specific error: %%2284126209
    Event Xml:
    <Event xmlns="
      <System>
        <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7024</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-21T05:50:32.129949400Z" />
        <EventRecordID>53721</EventRecordID>
        <Correlation />
        <Execution ProcessID="568" ThreadID="12436" />
        <Channel>System</Channel>
        <Computer> intentionally removed.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">Remote Desktop Management</Data>
        <Data Name="param2">%%2284126209</Data>
        <Binary>520044004D0053000000</Binary>
      </EventData>
    </Event>
    In addition in the "Application" event log, the following error is logged:
    Log Name:      Application
    Source:        MSSQL$MICROSOFT##WID
    Date:          21/01/2015 5:24:47 PM
    Event ID:      18456
    Task Category: Logon
    Level:         Information
    Keywords:      Classic,Audit Failure
    User:          NETWORK SERVICE
    Computer:      intentionally removed.local
    Description:
    Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. Reason: Could not find a login matching the name provided. [CLIENT: <named pipe>]
    Event Xml:
    <Event xmlns="
      <System>
        <Provider Name="MSSQL$MICROSOFT##WID" />
        <EventID Qualifiers="49152">18456</EventID>
        <Level>0</Level>
        <Task>4</Task>
        <Keywords>0x90000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-21T06:24:47.000000000Z" />
        <EventRecordID>4228336</EventRecordID>
        <Channel>Application</Channel>
        <Computer>intentionally removed.local</Computer>
        <Security UserID="S-1-5-20" />
      </System>
      <EventData>
        <Data>NT AUTHORITY\NETWORK SERVICE</Data>
        <Data> Reason: Could not find a login matching the name provided.</Data>
        <Data> [CLIENT: &lt;named pipe&gt;]</Data>
        <Binary>184800000E0000001F00000055004E0047004500520045005200410055005300530056005200300033005C004D004900430052004F0053004F0046005400230023005700490044000000070000006D00610073007400650072000000</Binary>
      </EventData>
    </Event>
    I have been attempting to resolve these errors for some time, without success. I have read the many KBs and forum entries related to the above and applied a number of the suggested fixes, including the one which suggests to add the NT SERVICE\ALL SERVICES
    to the "Logon as a Service" in the "User Rights Assignment" of the "Default Domain Policy" which is linked to the domain level, that both servers are objects of.
    My question to the forum is, can anyone come up with a solution to resolve the above issues and all the RDMS service to start which will then hopefully resolve the broker error?
    Regards,
    David West.

    Hi David,
    If virtual machines on the server are Windows Server 2012, then it is not supported to install Remote Desktop Connection Broker on a Domain Controller.
    More information for you:
    Remote Desktop Services role cannot co-exist with AD DS role on Windows Server 2012
    http://support.microsoft.com/kb/2799605/de
    Guidelines for installing the Remote Desktop Session Host role service on a computer running Windows Server 2012 without the Remote Desktop Connection Broker role service
    http://support.microsoft.com/kb/2833839
    If the VMs are Windows Server 2012 R2, I suggest you install RDS on a separate machine to see if the issue persists.
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Itunes will not start. No error

    my itunes starts up once you install it. but after you close and restart computer it dose not start up. there are no errors poping up.

    Hey, ppl all you have to do is download the new quick time player.
    just go here and download it
    http://www.download.com/QuickTime/3000-2139_4-10647576.html

  • Firefox will not start after upgrade: error code 2324

    I upgraded Firefox on my workstation running Windows 7 Enterprise (64-bit). The stub installer downloads and runs through the installation, but does not start Firefox automatically. If I click on the link in the taskbar, nothing happens. Same with the one pinned to the start menu. If I go to the Mozilla folder and load Firefox from there, I get a message saying "The installer encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2324."

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Win OS could not start becasue of error in the software on Satellite A85-S107?

    Windows could not start because of an error in the software. Please report this problem as:
    Load needed DLLs for kernel.
    Please contact your support person to report this problem."
    A blue screen was suddenly pop up when i was surfing a website, the above warning in black and white was showed after i took out the battery and restarted the windows.
    I thought it was just a simple step if i took out the recovery disk, but i was wrong.
    The recovery procedure was doing fine to 100% finished. But after pressing any key, the above warning kept appear, no matter how many times i had re-installed by recovery disk or (every time reached 100% )or by using full version of window Xp.
    Neither it worked by formatting the HD I had connected it with a IDE2USB link to my friend's XP laptop nor changing another HD.
    I excluded the HD problem, then i guess it might be the BIOS was being hacked (?) I downloaded the BIOS update to see whether it works or not?
    but the result was disappointing. It just stop at the step 4 of the updating procedure, it just freeze at performing flash initiating step.
    I want to take out the CMOS battery for few seconds, but i am not that pro and i might cause damage by improper handling.
    Could anyone tell me what happen to my computer and how i can show the above problem?

    Hello Wai
    If your unit make troubles after recovery image installation it is probably hardware related issue. Can you enter BIOS settings as usual? If not I am afraid the BIOS chip is damaged. It happen if BIOS update is interrupted whatever the reason can be.
    Removing CMOS battery doesnt work like on desktps. Forget it!

  • CLI156 Could not start domain domain1 error when J2ee is installed

    Whenever I install J2ee 1.4 sdk the first time the application server starts and everything works fine. But when the system is restarted and the server is started again i get the above mentioned error.
    Domain domina1 failed to startup. Could not start domain domain1. I have installed and uninstalled the application many times but yet I am experiencing the same error.
    Please give me a solution to this error asap.
    Thanks,
    Poonam

    Did you check server log for the exact cause of startup failure? One thing that is possible is that some of the ports associated with server listeners start being used by other processes after system restart (it seems that Windows use ports in 10xx range for remote drive mappings - so that might be one area where you might run into issues). If so, changing server port numbers might help. In any case, check logs for the exact cause of error .

  • "System Update could not start properly" - New error just started (WinXP SP3)

    I can no longer run System Update; it displays the splash screen, then a small window pops up with the above error message. I just ran it last a day or two ago, and it installed a few things; since then I have also run Microsoft Update and it also installed a few things, which I backed out one at a time (except for the malicious software removal updates)--all to no avail.  Anyone else seen this, any suggestions?
                 Thanks,
                 Jonathan
    --T61 (6460-8VU) - WinXP SP3, all the latest patches (except for KB961260, which is still backed out); .NETFramework 3.5 SP1

    Hello,
    I have reinstalled the system update  after I did clean and download the last version from Lenovo website but still have the same pop up message says: Syystem Update could not start properly.
    what's wrong??????

  • Disco for Oracle Apps with Scheduling not in Apps ~ Throws Error ORA-06502

    Hi All,
    I have had an SR with Oracle for almost 1/2 year now to set-up scheduling with the scheduling schema not being Apps. They have not been able to fix this yet.
    I have used note 757831.1. When I try to set-up a schedule that is recurring, the following error is thrown: ORA-06502.
    Does any one have a success story associated with setting-up scheduling in a Disco Oracle Apps end user layer where the scheduling schema is not apps?
    Thanks,
    Patrick
    Edited by: Patrick Bacon on Dec 10, 2010 7:18 AM
    Edited by: Patrick Bacon on Dec 10, 2010 8:21 AM

    Pl do not post contents of MOS Docs publicly - this violates terms of your support contract.
    We were successful in doing this with Disco 4i a long time ago. I am assuming the process is the same for 10g. Pl see if these MOS Docs can help. Pl post the complete error message.
    Error When Trying To Schedule Workbooks: The Batch Repository Schema Must Have Been Granted Direct Access To All Of The Tables Referenced In This Sheet (Doc ID 1125208.1)
    How To Store Scheduled Workbooks Results In A Different Schema Other than APPS? (Doc ID 370855.1)
    Error When Trying To Schedule Workbooks: The Batch Repository Schema Must Have Been Granted Direct Access To All Of The Tables Referenced In This Sheet (Doc ID 464968.1)
    Discoverer Quick Start: Setting Up Workbook Scheduling (Doc ID 74116.1)
    Scheduling Workbooks In A Applications Mode EUL Configured With A Batch User Fails With Errors ORA-06502, ORA-06512 (Doc ID 331165.1)
    HTH
    Srini

Maybe you are looking for

  • How do i remove incontext editing to allow contribute to work

    Hi, I am hoping someone maybe able to help... A while ago I put a site together at applied incontext editing regions. After being notified that it will no longer work in May this year, I decided to purchase contribute and went through the labourious

  • Regarding Vendor Payment

    Hi All, I have raised Vendor Invoice in F-43. Against to that i made a payment in F-53. But when i checked in FBL1n it is still showing as Open Item not as cleared Item. Can anyone please suggest why it is showing as Open Item? Do we need to do any c

  • Embed pdf as part of jsf page

    hi, i want to embed a pdf as part of a jsf page. any suggestions how to do this?

  • External FireWire Disk will not boot

    Hi Forum, after some installations (OS 10.4.9, latest security update and Qucktime 7.1.6 I canot boot from my external disk (Lacie) connected to FireWire 800 port. The Apple shows up but then nothing more happens. Does anyone have a hint? Thanks Oliv

  • HP Laserjet P1505n black edges - ugh

    My p1505n is putting nasty black edges on otherwise nicely printed pages. I've followed the support and cleaning routines. The black edges are "smudgeable" and not fixed. Any tips? Is it the cartridge..? Any tips gratefully received