How to find the update of Cummulate of oracle 11.5.9

Hi all

How can we find 11.5.9 CU1 CU2 or

Thank you
Bhanu Chander.

Bigot,

11.5.9 CU2 patch number is 3171663, please run the following query to check if you have this hotfix applied or not:

SQL> select *
from ad_bugs
where bug_number = '3171663';

By the way will you please share your name once more... I forgot your name

It's Hussein (already mentioned in my profile). Maybe I should change my handle to match my name :)

Tags: Oracle Applications

Similar Questions

  • How to find the update file

    Record 3-4 xml file are there I went to read only the last modified file

    I already find the time of all files, but not to get the latest file

    myDocument var = app.activeDocument;
    var myDocName = myDocument.name;
    var myDocument.filePath = myFolder.
    var Metafilepath = file (MyFolder + "/");

    myPath = Metafilepath.getFiles ("*.xml");
    If (file (myPath.Exists))
    {
    for (var i = 0; i < myPath.length; i ++)
    {
    Time = String (myPath [i]);

    Tempt1 = Temps.lastIndexOf("/");
    Tempt2 = Temps.substring (Tempt1 + 1);
    FileName = Tempt2.split("");
    var myNewFile = new File (time)
    var myModifiedFile = myNewFile.modified
    var myConcat = FileName + "" + myModifiedFile
    var myNewFile1 = myConcat.toString ();
    myPath [i] m:System.NET.Sockets.Socket.close ();
    }

    }

    Thanks in advance

    You can save yourself some typing:

    myFiles.sort (function (a, b) {return a.modified<>

    Peter

  • How to find the history of Tablespace in Oracle database?

    Hello

    I need to find which data was inserted on the weekly basis in the particular tablespace.

    Because we need to find which tables update very frequently, and also we didn't have plenty of space in the server.

    If we can find it, it would be useful for us to communicate with the developers.

    Thank you

    Shiv.

    For tablespace growth

    ==================

    Select

    TO_CHAR (sp.begin_interval_time,'dd-mm-yyyy "") days.

    TS.tsname,

    Max (round ((tsu.tablespace_size* dt.block_size) /(1024*1024), 2)) cur_size_mb,.

    Max (round ((tsu.tablespace_usedsize* dt.block_size) /(1024*1024), 2)) usedsize_mb

    Of

    dba_hist_tbspc_space_usage tsu,

    dba_hist_tablespace_stat ts,

    dba_hist_snapshot sp,

    dba_tablespaces dt

    where

    Tsu.tablespace_id = ts.ts #.

    and

    Tsu.snap_id = sp.snap_id

    and

    TS.tsname = dt.tablespace_name

    and

    TS.tsname not in ('SYSAUX', 'SYSTEM')

    Group

    TO_CHAR (sp.begin_interval_time,'dd-mm-yyyy ""), ts.tsname

    order of ts.tsname, days;

    To check the tablespace free sapce

    ================

    Select nom_tablespace, sum (bytes) /(1024*1024*1024) from dba_free_space where nom_tablespace = group 'LARGE_DATA' order by 2 desc nom_tablespace

    To check the size of tables

    =================

    Select sum (bytes) in dba_segments where nom_segment = "XYZ";

    Thank you

    Harman

  • How to find the responsibility of seeds of Oracle

    This correct understanding that all rows in table with created_by = 1 fnd_responsibility_tl rows are seeded by Oracle, that is, they are seeded Oracle responsibilities?

    Is there any other responsibility as well which could be sown?

    This correct understanding that all rows in table with created_by = 1 fnd_responsibility_tl rows are seeded by Oracle, that is, they are seeded Oracle responsibilities?

    Correct - unless this column has been updated manually.

    Is there any other responsibility as well which could be sown?

    Outside the query you have and the naming convention, in my view, there is no other way (diary of an SR to confirm with support of Oracle).

    Thank you
    Hussein

  • How to find the delimiters

    Hello Oracle experts

    I am trying to find number of separators to a text string. But I could find only for the first record. Can you if it doesn't matter who you please let me know how to find the record2.

    I use

    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With partitioning, OLAP, Data Mining and Real Application Testing options

    Thank you



    with t as
    (select 3999 ^ 0077774 ^ Institution ^ Mountwest ^ 1 ^ Lilly ^ Maria ^ [email protected] ^ 555-555-5555 ^ 2 ^ Lilly ^ Maria ^ [email protected] ^ 999-999-9999 ^ 3 ^ Lilly ^ Maria ^ [email protected] ^ 777-888-1234 ^ 1 yyyy xxxxxx Drxxx ^ ^ xxxxxxx ^ AA ^ 99999 ^ MRO ^ U.S. ^ ^ ^ I do not know ^ 2 years ^ Public ^ applicable ^ Urban ^ 1, 000-4, 999 ^ N ^ Conference ^ N ^ 14/04/2009 10:52:51 ^ 24/08/2010 09:26:46 ^ Active ^ ^ I ^ ^' string1 from all the double union)
    Select ' ^ ^ ^' double string1
    )
    Length (STRING1) - length (replace(STRING1,'^','')) SELECT delim_number from T

    Try:

    SELECT  length(STRING1)-NVL(length(replace(STRING1,'^','')),0) delim_number from T
    
  • How to find the configuration state of REDO logs files?

    I'm trying to move the redo log files.
    Before that, I want to know if it is set as a duplex or any other configuration.

    How to find the REDO log configurations.

    Oracle 10g R2

    Thank you
    Smith

    Example:

    Not in duplex redo log - if the number of members is 1, it is not duplex:

    SQL> select group#, members from v$log;
    
        GROUP#    MEMBERS
    ---------- ----------
             1          1
             2          1
             3          1
    
    SQL> select group#, member from v$logfile;
    
        GROUP# MEMBER
    ---------- --------------------------------------------------
             1 /u01/app/oracle/oradata/db1/redo01.log
             2 /u01/app/oracle/oradata/db1/redo02.log
             3 /u01/app/oracle/oradata/db1/redo03.log
    
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo01_2.log' to group 1;
    
    Database altered.
    
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo02_2.log' to group 2;
    
    Database altered.
    
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo03_2.log' to group 3;
    
    Database altered.
    

    Duplex redolog

    SQL> select group#, members from v$log;
    
        GROUP#    MEMBERS
    ---------- ----------
             1          2
             2          2
             3          2
    
    SQL> select group#, member from v$logfile;
    
        GROUP# MEMBER
    ---------- --------------------------------------------------
             1 /u01/app/oracle/oradata/db1/redo01.log
             2 /u01/app/oracle/oradata/db1/redo02.log
             3 /u01/app/oracle/oradata/db1/redo03.log
             1 /u01/app/oracle/oradata/db1/redo01_2.log
             2 /u01/app/oracle/oradata/db1/redo02_2.log
             3 /u01/app/oracle/oradata/db1/redo03_2.log
    
  • says that there is an update of firmware available for my 3 t time capsule. I get "an error occurred when downloading". How to find the problem?

    I said that there is an update of the firmware available for my 3 t time capsule. I get the message "an error occurred when downloading". How to find the problem? I have elcapitan 10.11.6 and capsule version 7.7.3

    Try temporarily, connect your MacBook Pro to your Time Capsule using an Ethernet connection... If not already, then try downloading the firmware again.

  • How to find the last update date, time and user of the file field peoplecode

    How to find the last updated date time fields of peoplecode records?

    Thank you.

    We can check the update date-time using the following query

    SELECT LASTUPDDTTM IN THE PSPCMPROG WHERE OBJECTVALUE1 LIKE "RECNAME" AND OBJECTVALUE2 AS "FIELDNAME".

  • Qosmio G20 - how to find an update for the video card?

    Hi I can't find the update for the video card and when I run the game it hand me your video card drivers are too old.update them.
    my laptop:(toshiba Qosmio G20)
    My vidoe card: (NVIDIA GeForce Go 6600)
    Operating system: (Microsoft Windows XP Professional)

    Hey,.

    To be honest I don t understand your problem. Why visit nVidia?

    All you can download it from the download page of European driver from Toshiba as a boarder suggested. I even checked this and for Qosmio G20 and Windows XP you can get all the drivers no problem at all! :)

  • How to find the velocity of an incremental encoder

    I use the RE22I encoder which can give up to 8192 pulses per revolution, I have A, B, Z reports that I use an fpga as a controller Please help me.

    How to find the speed of the encoder using these signals I'm going to have a clock in the fpga sysytem will help.

    Start by looking at the information on Wikipedia on the rotary encoders and a book on encoders OR white.  These articles will give you a basic understanding of the encoder and the signals it produces.

    With proper decoding, you can get the direction and momentum of each of the points on your encoder 8192.  If the tree can reverse (same vibration on one point unique all-in-mnearly stationary), full decoding must be used.  If data are only of interest while the tree turns in a direction and speed will not close to zero, a simple decoding can be used.  Decoding of a quadrature encoder is a good way to learn to use a state machine.  Signals A and B can exist in only four possible combinations, but the possible transitions to do interesting things.

    Define DECODING is a purely logical exercise and it is a simple coding in LabVIEW, such as a state machine.  There are examples, Desing Patterns, or project templates (depending on your version of LV) that come with LV to help you get started.

    By using the channels A and B you can update your calculation of velocity 8192 times per turn.  With the help of Z you get only an update by the revolution. You use depends on your application.  The pulse of Z is also useful to define a reference position for the measurement of phase angle.

    Lynn

  • How to find the Web sites of high quality backlinks?

    Original title: how to find quality backlinks?

    Updates on the algorithms research of new google forward a site spammy that build a bad backlinks. But how to find the Web sites of high quality backlinks? Could we must spend a lot of money to get their links?
    Please help me.

    I want to increase backlinks to my site

    Hello

    I recommend you contact Google support for assistance:

    http://support.Google.com/bin/static.py?hl=en&page=portal_groups.cs

    Hope the helps of information.

  • How to find the CPU Microcode Patch review?

    G ' Day,.

    According to the next VMware KB:

    KB.VMware.com/.../Search.do

    Revision of the CPU Microcode Patch must be updated to version. Does anyone know how to find the Model CPUID (Stepping) installed processors and Microcode patch review there?

    R630 host running ESXi 5.5.

    BIOS version 2.1.5.

    Kind regards

    Alex.

    Dell has just released new bios for FC630, R630 that updates the firmware

  • Have deleted implementing up-to-date, but while they inspected I think it's still in my system in my history how to find the files to remove it completely?

    Original title: Remove KB3035583

    I deleted the update, but while they were inspecting it, I think it's still in my system in my history how to find the files to remove it completely?

    I am running Windows 7

    Microsoft have now updated the status of GWX, whenever changes to update is downloaded as a new update re. It is not beyond their intrigues to GWX ineffective as well. Unfortunately we have to be patient until 29 July when, according to the assurances of Microsoft this mess will be disabled. I don't know if there is code to turn it off or we wanted yet another update to do.

  • How to find KB updates by number in Windows 7

    How to find the KB updates by number in win7 example 3017347 KB

      
    I have a list of KB of an audit of security updates. I need to find each KB and then download. example KB3017347, KB3048019, how I got all these. Thank you
    You had this question
    1. Connect to an administrator account [must],.
    2. Open IE [it is important]
    3. Go to the Microsoft update catalog service,
    4. [It will install a small add-on],
    5. In the find what box, enter the KB number
    6. If you want to you click on the name of the element to see may more details about it.
    7. Select Add to add the KB in the list of downloads or Add to cart , if you look at the details.
    8. Do this for each desired KB
    9. Click on view cart and follow the menu instructions to download.
  • Windows update takes too long to find the updates

    I had just installed a new hard drive on my laptop Dell inspiron N5050. I did a reinstall of system clean of my operating system to windows 7. After that, I started to run windows update to get all the necessary updates that I need to update completely from the computer. He has worked for a very long time with no result. In addition, at least 2 hours. all the settings for windows update is set to the settings recommended. but for some reason, in my view, takes too long to get updates. can someone help me please this possible issue

    Hello Darrin,

    Thanks for posting your query on the Microsoft Community.

    According to the description, the Windows updates take a long time to find the updates.

    I suggest to follow the methods below and check if that helps.

    Method 1: If your computer is experiencing problems find and install updates of the operating system, try using the troubleshooter.to of update of Windows the problem fix. He makes sure your computer is connected to the Internet and checks to see if your network card and Windows Update services are running properly.

    Reference:

    Open the Windows Update troubleshooting tool

    If the problem persists, try Method 2,

    Method 2: run the clean boot: Place your system in the clean boot state helps determine if third-party applications or startup items are causing the problem. Check this question in the clean boot state.

    Reference: How to perform a clean boot in Windows

    http://support.Microsoft.com/kb/929135

     

    Note: After the boot minimum troubleshooting step, read the sections "How to reset the computer to start as usual after a clean boot troubleshooting" in the link provided to return the computer to a Normal startup mode.

    See also:

    Problems with installing updates

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

Maybe you are looking for