Performace problem in oracle DB after Solaris 10 recommended patching

Dear All,
We are facing some performance problems in our oracle DB qerries and reports recently. We applied Solaris 10 recommended patchset on april 24th. Our monthly report generation acitivity is now running for last 3 days i.e may 11,12,13 and application team is complaining of degraded performance. I can see that the cpu usage on the server is about 100% during the report generation , but everything else is fine. Free memory is 15gb , all mountpoints are under 80% and there is no other hardware issue as well.
Now app team is suspecting that last month patching could be the cause of the problem, because till last month they were performing this activity without having a performance degradtion.
I just need to be sure that solaris 10 recommended patches are not causing this issue. Any of you ever faced such an issue after patch installation ?
The server is V490 with 8 cpu / 32gb RAM. Any hints will be appreciated ?
Thanks in Advance.
Edited by: 1005720 on May 13, 2013 9:58 PM

I did not archive the o/p of prstat but have o/p of top with me
195 processes: 175 sleeping, 13 running, 1 zombie, 6 on cpu
CPU states: 0.0% idle, 78.4% user, 21.6% kernel, 0.0% iowait, 0.0% swap
Memory: 32G phys mem, 16G free mem, 70G total swap, 70G free swap
PID USERNAME LWP PRI NICE SIZE RES STATE TIME CPU COMMAND
18964 oracle 39 41 0 6389M 5488M cpu/1 2:50 15.04% oracle
19638 oracle 26 59 0 6390M 5490M run 0:27 8.58% oracle
19648 oracle 36 31 0 6418M 5516M run 0:21 5.92% oracle
19023 oracle 34 30 0 6398M 5498M run 0:37 5.88% oracle
7229 oracle 38 30 0 6427M 5514M run 234:24 5.69% oracle
6912 oracle 45 31 0 6395M 5483M cpu/16 218:04 5.31% oracle
7216 oracle 28 31 0 6430M 5517M run 232:40 5.04% oracle
19644 oracle 35 40 0 6390M 5490M cpu/17 0:24 4.74% oracle
6897 oracle 112 30 0 6392M 5479M run 236:38 4.52% oracle
3813 oracle 106 31 0 6428M 5528M run 100:11 4.43% oracle
18970 oracle 234 31 0 6398M 5499M cpu/0 1:45 4.15% oracle
19749 oracle 1 32 0 6386M 5486M run 0:00 4.05% oracle
19646 oracle 23 31 0 6405M 5505M run 0:25 3.61% oracle
18972 oracle 11 32 0 6398M 5497M run 2:18 3.61% oracle
7220 oracle 258 32 0 6468M 5555M cpu/3 113:13 3.56% oracle
During the entire issue there was no %iowait.

Similar Messages

  • Management console problem after installing recommended patch cluster

    Hello everyone.
    I just got a new SUN 440 server, it didn't come with the solaris os installed and so I installed solaris 9 12/03 to it. The installation went fine and I could start the management console with no problems at all. Then I went to sunsolve.sun.com to download the latest recommended patch clusters for solaris 9 (this was yesterday Sept.-06-2006), I downloaded the file, checked it with md5sum, unzipped it, went to single user mode and ran the install_patch script. After the patch cluster finished installing I rebooted the server for the patches to take effect, I logged in, tried to run console management 2.1 and it starts OK but I cannot use any services it offers because it says (in the console events):
    "Server Not Running: no solaris management console server was available on the specified server. Please ensure there is a Solaris Management Console server available on the specified host and that it is running"
    When I click on "See Exception" I get (for a particular service that is... in this case com.sun.admin.fsmgr.client.VFsMgr - for managing file systems):
    java.rmi.RemoteException: Server RMI is null:
    at sun.com.management.viperimpl.client.ViperClient.lookupServer(ViperClient.java:376)and so on...
    I already checked that the service is running on port 898 and it seems that there is no other app. using that same port. I also restarted the service using /etc/init.d.init stop/status/start but I get the same results.
    I don't know solaris very much and don't know what else to do, please help.
    Thanks in advance.

    Well, I guess what you see isn't what you get.
    Guess I'm used to the fact USENET just left things formatted the way they were :-O

  • Static library not accessed properly after Solaris Kernel patch update !

    Hi,
    We are facing a sever issue in our application after our customer updated the Solaris 10 kernel patch u9 to u10.
    We have two static libraries libdlib.a and libDLIB.a, with exactly same code base, but these two libraries are scattered across the code base and linked by many shared objects in our application.
    However, one of the shared objects that links to "libdlib.a" library tries to access a function from "libDLIB.a". This behavior is causing a crash at a later point, since that shared object is supposed to access the function from "libdlib.a". Moreover, we found this is happening through the use of dbx.
    I'm unable to understand why this problem surfaced after kernel patch update, though still the shared object works fine on Solaris 10 u9 patch.
    Flow is something like this :
    1. syslogrecorder.so gets loaded by one of the processes.
    2. syslogrecorder.so is linked to "libdlib.a" at compile time, so it uses "libdlib.a" function DLIB_LoadLibrary and gets a handle to all the function pointers of the loaded library ( The purpose of DLIB_LoadLibrary is to load a shared library dynamically using dlopen )
    3. syslogrecorder.so tries to do a "dlsym" and to do that it needs access to the library handle which we got in previous call DLIB_LoadLibrary. So syslogrecorder.so calls another function from DLIB_ProcAddress, which actually gives back the access to the loaded shared library.
    Here is a catch in step 3, it is supposed to call DLIB_ProcAddress from the libdlib.a but as we observed from dbx output it does so by calling DLIB_ProcAddress from libDLIB.a and hence fails to give back the access to loaded shared library, causing crash at a later point in code.
    Can someone put some light here that why this could happen ??
    Thanks
    Kuldeep

    To clarify: You did not modify or rebuild any of your binaries, but after installing a kernel patch, the application stopped working. Most likely, something about your application depended on a accidental behavior of the runtime loader. That accidental behavior changed due to the patch, and your application failed.
    For example, if there is a circular dependency among shared libraries, the loader will break the cycle at an arbitrary point to establish an initialization order. By accident, that order might work, in the sense of not causing a problem. A change to the loader could cause the cycle to be broken at a different point, and the resulting initialization order could cause a now-uninitialized object to be accessed. I'm not saying this is what is wrong, but this is an example of a dependency on accidental loader behavior.
    Finding your actual problem will require tracing the sequence of operations leading up to the failure. You are more likely to find help in a Solaris linker forum. AFAIK, there are currently no Oracle forums for Solaris, and the old OpenSolaris forums have been converted to mailing lists. You can try the "tools-linking" list found on this page:
    http://mail.opensolaris.org/mailman/listinfo
    I also suggest you review the paper on best practices for using shared libraries written by Darryl Gove and myself:
    http://www.oracle.com/technetwork/articles/servers-storage-admin/linkinglibraries-396782.html
    If you have a service contract with Oracle, you can use your support channel to get more help.
    Edited by: Steve_Clamage on May 18, 2012 3:21 PM

  • CLOSE_WAIT problems with Oracle 9iAS on Solaris

    All,
    We have some simple JSP + Sevlets running on Oracle 9iAS on a Solaris server. After the App Server has been running for a couple of minutes we start to get several TCP connections with a CLOSE_WAIT status - as shown by a netstat output.
    These seem to be a result of a FIN_WAIT_2 and CLOSE_WAIT pairing eg
    Local Remote Swind Send-Q Rwind Recv-Q Status
    SERVER.43009 SERVER.80 49152 0 49152 0 CLOSE_WAIT
    SERVER.80 SERVER.43009 49152 0 49152 0 FIN_WAIT_2
    Over time the FIN_WAIT_2 is removed, leaving the CLOSE_WAITs.
    Has anyone else had this problem?
    Keith

    We're having similar problem. We have lot's of close_wait between Apache and OC4J.
    Swetal

  • Password problem in oracle 10g after upgrading from oracle 9i

    Hi to all,
    i'm migrating oracle 9i to oracle 10g. in oracle 9i username/password are same character(eg kareem/kareem)
    after upgrading to oracle 10g will it create any problem. Because in oracle 10g the condition is when creating user is username and password should not contain same character (kareem/kareem not allowed).
    Thanks in advance

    in oracle 10g document, they have mention below condition to create user. See the second condition.
    • Passwords must be between 4 and 30 characters long.
    • Passwords cannot be the same as the user name.
    • Passwords must be from the database character set and can include the underscore (_), dollar ($), and pound sign (#) characters.
    • Passwords cannot be Oracle reserved words.
    • Don't start the password with a numeral.
    • Don's use change_on_install or manager as passwords, since they are used by Oracle.
    As i'm going to upgrade oracle 9i to 10g. if it give problem because username and password are same then i have to request my development team to change the password in their application.Can you please verify and tell me.
    Edited by: user7071421 on Sep 25, 2008 4:33 AM

  • Problems with Oracle 8.1.5. and Patch (on Debian Linux)

    Hello,
    I just installed Oracle 8.1.5 on Debian (Potato; glibc 2.1)
    Linux. When I try to run SQL*Plus I get the following error:
    ./sqlplus: error in loading shared libraries:
    /home/oracle/product/8.1.5./lib/libclntsh.so.8.0: undefined
    symbol: nauzaoss
    So I downloaded the patch and installed it. Due installation
    of the patch I get several errors:
    cat: /home/oracle/product/8.1.5./network/lib/ldflags: No such
    file or directory
    /home/oracle/product/8.1.5./lib/nautab.o(.rodata+0x8): undefined
    reference to `n
    auzaoss'
    /home/oracle/product/8.1.5./lib//libpls8.a(spssimb.o): In
    function `pss_gets':
    spssimb.o(.text+0x303): the `gets' function is dangerous and
    should not be used.
    /home/oracle/product/8.1.5./lib/nautab.o(.rodata+0x8): undefined
    reference to `n
    auzaoss'
    /home/oracle/product/8.1.5./lib//libn8.a(nnfu.o): In function
    `nnfun2a':
    nnfu.o(.text+0x3d3): undefined reference to `nnfotrv1'
    /home/oracle/product/8.1.5./lib//libn8.a(nnfgt.o)(.rodata+0x4):
    undefined refere
    nce to `nnftboot'
    Can anyone help?
    Ansgar
    null

    Ansgar Scherp (guest) wrote:
    : Hello,
    : I just installed Oracle 8.1.5 on Debian (Potato; glibc 2.1)
    : Linux. When I try to run SQL*Plus I get the following error:
    : ./sqlplus: error in loading shared libraries:
    : /home/oracle/product/8.1.5./lib/libclntsh.so.8.0: undefined
    : symbol: nauzaoss
    : So I downloaded the patch and installed it. Due installation
    : of the patch I get several errors:
    : cat: /home/oracle/product/8.1.5./network/lib/ldflags: No such
    : file or directory
    : /home/oracle/product/8.1.5./lib/nautab.o(.rodata+0x8):
    undefined
    : reference to `n
    : auzaoss'
    : /home/oracle/product/8.1.5./lib//libpls8.a(spssimb.o): In
    : function `pss_gets':
    : spssimb.o(.text+0x303): the `gets' function is dangerous and
    : should not be used.
    : /home/oracle/product/8.1.5./lib/nautab.o(.rodata+0x8):
    undefined
    : reference to `n
    : auzaoss'
    : /home/oracle/product/8.1.5./lib//libn8.a(nnfu.o): In function
    : `nnfun2a':
    : nnfu.o(.text+0x3d3): undefined reference to `nnfotrv1'
    : /home/oracle/product/8.1.5./lib//libn8.a(nnfgt.o)(.rodata+0x4):
    : undefined refere
    : nce to `nnftboot'
    : Can anyone help?
    : Ansgar
    On RH 6.0, there is a file called /etc/ld.so.conf which should
    contain all directories searched by ld.so, extept /lib and
    /usr/lib. Add $ORACLE_HOME/lib to that file and run ldconf
    as root.
    null

  • Oracle 10g in Solaris Problem

    Hi Guys , i was wondering how to start oracle database in correct way in Solaris
    Because i had a problem with it..
    i start the Oracle 10 in Solaris ,
    the database is up. then after few hours, it shut down / the database is down for no reason then i have to start again
    I was wondering whether there is a timeout? if there is how do i check it?
    below as my step to start the database.
    1. go to Oracle_HOME/bin
    2. type lsnrctl start
    3. sqlplus /nolog
    4. connect username/password as sysdba
    5. startup
    any better way to start it??
    after step 5, it shows no error and the database is ready.
    i can connect using sql plus and toad from other computer.
    But after few hours , it shutdown for no reason again..
    anyone can help me?
    is there any better way to start the database??
    can i use nohup command in solaris to start oracle? how to do that?
    Because of that , after my database starts , my web applicaton always hit
    java.sql.SQLException ioException Broken Pipe then i have to restart my app server...
    i heard broken pipe happens because the database is down without telling the app server is it??
    Thanks...

    All Seems okay...
    do u know the keyword is there is an exception..
    Below is my alert_SID.log
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    sga_max_size = 2097152000
    __shared_pool_size = 134217728
    __large_pool_size = 16777216
    __java_pool_size = 16777216
    __streams_pool_size = 0
    sga_target = 620756992
    control_files = /oracle/product/10.2.0/oradata/ILSDB/control01.ctl, /oracle/product/10.2.0/oradata/ILSDB/control02.ctl, /oracle/product/10.2.0/o
    radata/ILSDB/control03.ctl
    db_block_size = 8192
    __db_cache_size = 436207616
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=ILSDBXDB)
    job_queue_processes = 10
    background_dump_dest = /oracle/product/10.2.0/admin/ILSDB/bdump
    user_dump_dest = /oracle/product/10.2.0/admin/ILSDB/udump
    core_dump_dest = /oracle/product/10.2.0/admin/ILSDB/cdump
    audit_file_dest = /oracle/product/10.2.0/admin/ILSDB/adump
    db_name = ILSDB
    open_cursors = 300
    pga_aggregate_target = 203423744
    awrflush_threshold_metrics= TRUE
    PMON started with pid=2, OS id=755
    PSP0 started with pid=3, OS id=758
    MMAN started with pid=4, OS id=760
    DBW0 started with pid=5, OS id=762
    LGWR started with pid=6, OS id=764
    CKPT started with pid=7, OS id=766
    SMON started with pid=8, OS id=768
    RECO started with pid=9, OS id=770
    CJQ0 started with pid=10, OS id=772
    MMON started with pid=11, OS id=774
    MMNL started with pid=12, OS id=776
    Thu Jul 20 15:46:26 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Thu Jul 20 15:46:26 2006
    DISM started, OS id=783
    Thu Jul 20 15:46:27 2006
    ALTER DATABASE MOUNT
    Thu Jul 20 15:46:33 2006
    Setting recovery target incarnation to 2
    Thu Jul 20 15:46:33 2006
    Successful mount of redo thread 1, with mount id 1643325139
    Thu Jul 20 15:46:33 2006
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Thu Jul 20 15:46:33 2006
    ALTER DATABASE OPEN
    Thu Jul 20 15:46:34 2006
    Beginning crash recovery of 1 threads
    parallel recovery started with 2 processes
    Thu Jul 20 15:46:34 2006
    Started redo scan
    Thu Jul 20 15:46:35 2006
    Completed redo scan
    273 redo blocks read, 87 data blocks need recovery
    Thu Jul 20 15:46:35 2006
    Started redo application at
    Thread 1: logseq 258, block 6373
    Thu Jul 20 15:46:35 2006
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 258 Reading mem 0
    Mem# 0 errs 0: /oracle/product/10.2.0/oradata/ILSDB/redo02.log
    Thu Jul 20 15:46:35 2006
    Completed redo application
    Thu Jul 20 15:46:37 2006
    Completed crash recovery at
    Thread 1: logseq 258, block 6646, scn 66574356
    87 data blocks read, 87 data blocks written, 273 redo blocks read
    Thu Jul 20 15:46:38 2006
    Thread 1 advanced to log sequence 259
    Thread 1 opened at log sequence 259
    Current log# 3 seq# 259 mem# 0: /oracle/product/10.2.0/oradata/ILSDB/redo03.log
    Successful open of redo thread 1
    Thu Jul 20 15:46:39 2006
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Thu Jul 20 15:46:39 2006
    SMON: enabling cache recovery
    Thu Jul 20 15:46:40 2006
    Successfully onlined Undo Tablespace 1.
    Thu Jul 20 15:46:40 2006
    SMON: enabling tx recovery
    Thu Jul 20 15:46:40 2006
    Database Characterset is WE8ISO8859P1
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=18, OS id=1108
    Thu Jul 20 15:46:46 2006
    Completed: ALTER DATABASE OPEN
    Thu Jul 20 15:53:52 2006
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2171K exceeds notification threshold (2048K)
    KGL object name :select object_name from all_objects where object_name='TOAD_PROFILER' and object_type='PACKAGE'
    Thu Jul 20 17:45:24 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as /oracle/product/10.2.0/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Could it be possible because my tablespace running out of space
    because i just check that the tablespace is fully utilized...
    If i delete large data from the table and commit.
    Will the tablespace free the memory??
    If not , how do it free up the tablespace memory rather than increasing it??

  • Solaris reboot loop after recommended patch cluster

    Hi,
    I have a problem with my solaris 10 x86 install on my intel notebook. after installing the latest recommended patch cluster and the necessary reboot my latop stays in a loop.
    one of the last lines I was able to see:
    panic[cpu0]/thread=fec1d660: boot_mapin():No pp for pfnum=20fff
    fec33b4c genunix:main+1b ()
    skipping system dump - ....
    rebooting...
    any ideas ?
    cu+thx

    This horrible patch caught me out too. I found this and it fixed my problem.
    http://weblog.erenkrantz.com/weblog/software/solaris
    <snip>
    &#91;...at the Solaris boot prompt; enable kmdb, debugging, and single-user
    so that you can remove the patch and reboot...&#93;
    boot -kds
    &#91;...wait for it to boot...&#93;
    physmax:w
    :c
    &#91;...you'll see 'stop on write of'...&#93;
    physmax/X
    &#91;...you'll see something like the following line:
    physmax: bff7f
    this is a hex number; add one; so if you see bff7f,
    your next line will need to be bff80...&#93;
    physxmax/W bff80
    :c
    &#91;...system will boot and go into single user mode...
    now, go toss those patches...&#93;
    patchrm 118844-19 120662-03 118345-12 118376-04 \
    118565-03 118886-01 119076-10 118813-01 \
    118881-02 120082-07 119851-02
    shutdown -i6 -y -g0 "sun should test their patches"
    </snip>

  • Installation problem of Oracle 8.1.7 on solaris 10 x86

    Hi,
    I tried to install the Oracle 8.1.7 on solaris 10 x86 and I got an error message shows: "cannot write to /opt/oracle/product/8.1.7/jar/classes2.jar".checking the log it shows:
    Exception: IOException2
    and exception: copyGroupFromJar. I ignored the error but the installation failed.By the way, I was not asked to run root.sh during the installation. Can anyone kindly tell me how to make it?
    yours
    zeushd

    Here are some additional statements for 10g on Solaris 10g x86:
    1. Execute runInstaller with the -ignoreSysPrereqs option.
    2. Select 'Do not create a starter database' when installing Oracle 10g.
    3. During installation, the warning message 'SUNWsprox package not installed' can be ignored. Press Continue to resume the installation.
    4. Download and install patch 4186426 from metalink.oracle.com after installing Oracle 10g software.
    5. If you have an End User Solaris 10 distribution, install the SUNWuiu8 package prior to installing the 10g client.

  • MB.ACT light OFF --- after Solaris 9 recommended patch cluster applied

    After applying the recommended patch cluster to several SunFire V210s/V240s the "system ready" or "activity" light on the front panel no longer illuminates. The systems come up fine and are fully functional, just no light.
    While this has absolutely no impact on usability it is a bit disconcerting for the folks in the server room when glancing at the rack and not seeing the typical green light.
    I first noticed the problem in mid 2007 and have tried patch clusters as recent as last month, but the light remains out.
    One interesting discovery is that if I reset (hard) the ALOM module the light comes back on. However, if the system is subsequently rebooted for any reason the light does not come back on...
    If anyone can shed some light on the issue I would greatly appreciate it!
    -Sap

    continued.
    I removed patch 138217-01 (svccfg & svcprop patch) and re-applied it.
    Then, after booting into S-mode, I tried to continue with the broken patch 139555-08 (kernel).
    It ends with
    ! root@jumpstart:/var/spool/patch # patchadd 139555-08
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Preparing checklist for non-global zone check...
    Checking non-global zones...
    This patch passes the non-global zone check.
    139555-08
    Summary for zones:
    Zone oem
    Rejected patches:
    None.
    Patches that passed the dependency check:
    139555-08
    Patching global zone
    Adding patches...
    Checking installed patches...
    Executing prepatch script...
    Installing patch packages...
    Pkgadd failed. See /var/tmp/139555-08.log.21103 for details
    Patchadd is terminating.
    ! root@jumpstart:/var/spool/patch #the logfile shows
    ! root@jumpstart:/var/spool/patch # vi /var/tmp/139555-08.log.21103
    Dryrun complete.
    No changes were made to the system.
    This appears to be an attempt to install the same architecture and
    version of a package which is already installed.  This installation
    will attempt to overwrite this package.
    pkgadd: ERROR: couldn't lock in /var/run/.patchSafeMode/root/var/sadm/install (s
    erver running?): Resource temporarily unavailable
    Installation of <SUNWarc> failed (internal error).
    No changes were made to the system.Help!
    -- Nick

  • After enabling Oracle Deport Repair, What are the recommended patches to be applied for R12 instance.

    Hi,
    I'm working on Oracle Deport Repair, so are they any Recommended patches to be applied on the Instance to complete the Implementation successful.
    Please let me know if they are any patches available.
    Thank you.

    Please see ..
    Identifying Recommended Patches for E-Business Suite Environments
    https://blogs.oracle.com/stevenChan/entry/recommended_patches_for_oracle_e
    Identifying the Latest Family Packs for Oracle E-Business Suite
    https://blogs.oracle.com/stevenChan/entry/latest_available_packs_for_oracle
    Oracle Applications Current Patchset Comparison Utility - patchsets.sh [ID 139684.1]
    Thanks,
    Hussein

  • Problems Installing Oracle 10GR2 & kernel parameters

    Hi there,
    I'm trying to install Oracle 10G on a new Solaris10 machine. After extensivley reading the oracle install guide and proceeding my install failed with an out of memory error.
    Ive read the posts regarding many similar problems and to set the kernel parameters in /etc/system. My question for the experts is:
    1). Is there a problem with the oracle install scripts and it not recognising the new features in Solaris?
    2). Is there a more deep-rooted problem with oracle and solaris?
    ANY help/advice would be much appreciated. There are hundreds of posts like this on the web and surely someone must have the answer? I mean surely oracle did not hack /etc/system to get their install to work did they??
    Nibs

    It IS a terrible experince to install oracle 10g on solaris 10. Tell us your system configuration and your installation step. For I have installed three times and each time a different problem. Suggest you go to oracle forum to get more help.

  • Installing Oracle 8i in Solaris Intel Version With Pentium 4

    Hi Guys,
    I am trying to Install Oracle 8i under Solaris 8 Intel version with Pentium 4 processor fixed.But iam'nt able to continue after I click "Install" button,the runInstaller exited badly with no response.I was told that even Installing Oracle under Windows P4 is facing the same problem,but on searching I got solution by renaming a DDL file before starting installation.Is there any similar method to do for installing it under p4 processor on solaris intel 8 version.

    Dear Mr. Kumar, i am chandrasekaran from singapore, actualy i need your help regarding the intel sun os oracle. I have Intel Based SUN OS, but i try to get Oracle CD Any version either 8i or 9i for intel sun os.
    One of my friend have the cd but it already damaged so that i need your help.
    My address
    S.Chandrasekaran, Blk 84 #07-93, Commonwealth close, Singapore 140084. If you have the cd you make one copy for me and send by post. Thank you
    My email id: [email protected] or yahoo.com
    by chandran.s

  • Memory issue, Oracle 10g in Solaris 10 zone

    I know many memory questions have been asked, but I couldn't find any similar to the problem I'm seeing.
    Starting from a fresh server boot, I have 12G of available memory, or nearly that anyway. Oracle 10g is installed with no databases created.
    After creating a database and running a few sql scripts to create tablespaces and users, my available memory is down to 3.5G.
    Rebooting the solaris zone containing Oracle does not restore any available memory. Shutting down the database does not restore any available memory.
    Why does Oracle seem to absorb so much available memory and not release it? I created the database from scripts and restricted the overall sga by a good bit over the defaults and while this did reduce the memory the oracle processes use, I'm still seeing this continual absorption of memory to the point where running any imports takes forever because my memory seems to bottom out. I saw it go down (using top, and vmstat) to about 500M at one point.
    Is there any utility that I can use, either solaris or sqlplus that will free up system memory?
    Message was edited by:
    tsmori

    After creating a database and running a few sql scripts to create tablespaces and users, my available memory is down to 3.5G.
    What are your settings fpr SGA_MAX_SIZE, SGA_TARGET and PGA_AGGREGATE_TARGET?
    Shutting down the database does not restore any available memory.
    Hmm that's really strange. We are running Oracle 9i on Solaris 10 Containers and didn't have any problems with memory leaks.
    Dim

  • Problem: installing Recommend Patch Cluster: patch 140900-10 fails

    I don't know if this is correct location for this thread (admin/moderator move as required).
    We have a number of Solaris x86 hosts (ie 4) and I'm trying to get the patched and up to date.
    I obtained the latest Recommended Patch Cluster (dated 28Sep2010).
    I installed it on host A yesterday, 2 hours 9 mins, no problems.
    I tried to install it on host B today, and that was just a critical failure.
    Host B failed to install 140900-01, because the non global zones rejected the patch because dependancy 138218-01 wasn't installed in the non global zones.
    Looking closer, it appears that 138218-01 is for global zone installation only; so it makes sense that the non global zones rejected it.
    However, both hosts were in single user mode when installing the cluster and both hosts have non global zones.
    140900-01 installed on host A with log:
    | This appears to be an attempt to install the same architecture and
    | version of a package which is already installed. This installation
    | will attempt to overwrite this package.
    |
    | Dryrun complete.
    | No changes were made to the system.
    |
    | This appears to be an attempt to install the same architecture and
    | version of a package which is already installed. This installation
    | will attempt to overwrite this package.
    |
    |
    | Installation of <SUNWcsu> was successful.
    140900-1 failed on host B with this log:
    | Validating patches...
    |
    | Loading patches installed on the system...
    |
    | Done!
    |
    | Loading patches requested to install.
    |
    | Done!
    |
    | Checking patches that you specified for installation.
    |
    | Done!
    |
    |
    | Approved patches will be installed in this order:
    |
    | 140900-01
    |
    |
    | Preparing checklist for non-global zone check...
    |
    | Checking non-global zones...
    |
    | Checking non-global zones...
    |
    | Restoring state for non-global zone X...
    | Restoring state for non-global zone Y...
    | Restoring state for non-global zone Z...
    |
    | This patch passes the non-global zone check.
    |
    | None.
    |
    |
    | Summary for zones:
    |
    | Zone X
    |
    | Rejected patches:
    | 140900-01
    | Patches that passed the dependency check:
    | None.
    |
    |
    | Zone Y
    |
    | Rejected patches:
    | 140900-01
    | Patches that passed the dependency check:
    | None.
    |
    |
    | Zone Z
    |
    | Rejected patches:
    | 140900-01
    | Patches that passed the dependency check:
    | None.
    |
    | Fatal failure occurred - impossible to install any patches.
    | X: For patch 140900-01, required patch 138218-01 does not exist.
    | Y: For patch 140900-01, required patch 138218-01 does not exist.
    | Z: For patch 140900-01, required patch 138218-01 does not exist.
    | Fatal failure occurred - impossible to install any patches.
    | ----
    | patchadd exit code : 1
    | application of 140900-01 failed : unhandled subprocess exit status '1' (exit 1 b
    | ranch)
    | finish time : 2010.10.02 09:47:18
    | FINISHED : application of 140900-01
    It looks as if the patch strategy is completely different for the two hosts; both are solaris x86 (A is a V40z; B is a V20z).
    Trying to use "-G" with patchadd crabs the patch is for global zones only and stops (ie it's almost as if it thinks installation is being attempted in a non global zone).
    Without "-G" same behavior as patch cluster install attempt (no surprise there).
    I have inherited this machines; I am told each of these machines were upgraded to Solaris 10u6 in June 2009.
    Other than the 4-5 months it took oracle to get our update entitlement to us, we've had no problems.
    I'm at a loss here, I don't see anyone else having this type of issue.
    Can someone point the way...?
    What am I missing...?

    Well, I guess what you see isn't what you get.
    Guess I'm used to the fact USENET just left things formatted the way they were :-O

Maybe you are looking for

  • How do I get my hotmail to open in a new tab instead of a new window and I've tried the middle click/ctlr option.

    MSN is my home page and when I click on the hotmail link in the top left hand corner of the page it always opens in a new window even if I press middle-click/ ctrl keys. The hotmail link is the only link that I have had this problem with thus far. Ca

  • MFP M476DW Scan to Email setup

    Posting this as a general gripe and as a solution to others who may have similar issues: When configuring Deafult SMTP settings for scanning to email on the M476DW, be aware that the "SAVE AND TEST" button does not utilize any of the information in t

  • When launching firefox a pdf opens

    I have a user that is running Firefox 3.6.28 when she launches Firefox a PDF opens with it. It is not a tab.

  • SAP BASIS patch kb70017 resulted in dumps

    Dear all, Recently I was deploying patch kb70017 and it has lead to the following problem. 1> patch ended with dumps 'syntax error' 2>any transaction hit is giving a dump with 'syntax error' I've deleted the patch in DB from OS level ,but still no us

  • Pagination for the flash chart

    Hi, I have a apex application where in one page I display certain value (in tabular format) based on few criteria and also in the same page for the same criteria I have a flash chart which should show the same values (as that of the tabular format) i