Beginner: how to find patches that are needed?

I have an Oracle DB or a number of (previously installed by a person) from 10.1 to 11.1.

I would like to patch some of them if necessary, but I don't know how to find patches are needed?

TNX

Hello

The following methods will help to know what are the patches installed at your HOME of ORACLE

(1) lsinv-bugs_fixed opatch

This option will give the description of the patches installed as below, but the opatch version should be greater than
10.2.0.4.5 for version 10.2 ORACLE_HOMEs

$ lsinv-bugs_fixed opatch

8576156 8833280 kills Feb 09 16:54:18 MST 2010 PSU 10.2.0.4.3 DATABASE (INCLUDES CPUJUL2009)
8833280 8833280 kills Feb 09 16:54:18 MST 2010 PSU 10.2.0.4.4 DATABASE (INCLUDES CPUOCT2009)

(2) select substr(action_time,1,30) action_time,
substr(ID,1,10) id,
substr action (action, 1, 10),
version of substr (version, 1, 8),
substr(BUNDLE_SERIES,1,6) bundle,
substr (Comments, 1, 20) comments
history of registry of $;

This option works when installing the posts were made for this patch

Thank you
Krishna

Tags: Database

Similar Questions

  • How to find computers that are not on the domain in an Active Directory forest.

    Hello

    I'm looking for a tool that can scan a subnet and give me the list of computers that are not on the field, but connected to the network. My company has recently spent a lot of users of the task force to the area, but there is a population of users who are unwilling to join the domain and still using the local administrator to log on to the computer.

    These computers do not meet the domain policies applied and causing many problems with the network and other systems on the field.

    Help, please.

    concerning

    Syed M. Uzair

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.msdn.Microsoft.com/forums/en-us/home

  • How to find files that are slowing down my computer

    I saw crazy files but I don't remember where I saw them.

    I saw crazy files but I don't remember where I saw them.

    Generally files, in itself, is not slowing down your computer.  Just to have files on your hard disk (because it is not completely filled) means very little - this is when things run / run they can cause problems.

    How to perform a clean boot for a problem in Windows 8, Windows 7, or Windows Vista

    http://support.Microsoft.com/kb/929135/en-us

    The less you have to run all the time, most things you want to run will perform:

    Use Autoruns to understand this all starts when your computer's / when you log in. Look for whatever it is you do not know using Google (or ask here.) You can hopefully figure out if there are things from when your computer does (or connect) you don't not need and then configure them (through their own built-in mechanisms is the preferred method) so they do not - start using your resources without reason.

    You can download and use Process Explorer to see exactly what is taking your time processor/CPU and memory. This can help you to identify applications that you might want to consider alternatives for and get rid of all together.

    Search for malware:

    Download, install, execute, update and perform analyses complete system with the two following applications:

    Remove anything they find. Reboot when necessary. (You can uninstall one or both when finished.)

    Search online with eSet Online Scanner.

  • How to find lines that are inserted in the last minutes n?

    Hi all
    I have a log table where, whenever a warning is issued, a new row is added. The table contains a field with the sysdate when the warning was issued.
    I would need to collect all the warnings in the last 30 minutes (supposed) and send a mail to the administrator. Looking at some FAQ I have explained this:

    Select * from PROCEDURE_LOGS p where ((p.DATE_LOG-sysdate) *-1440) < 30

    However, it does not do anything.
    Can someone help me correct this statement?
    Thank you very much
    Frank

    Assuming that the field is a DATE field and time information are included in this field to date. Then your application should work.

    I would write it differently, but the logic is the same.

    select *
    from procedure_logs p
    where (sysdate - p.date_log) * 24 * 60 <= 30
    ;
    

    Perhaps the information is not yet committed, so that you don't see it in your additional session?

    Look at your data and consider wheather this record must be included or not.

  • How to find names that are overlapping times

    Hello:

    I have a table that contains names and their appeal. I need to know which of these names overlap time.

    Name | StartTime | End time
    A | 26/03/2011 12:33:16 | 26/03/2011 12:40:10
    A | 26/03/2011 12:41:28 | 26/03/2011 12:43:19
    A | 26/03/2011 12:42:28 | 26/03/2011 12:47:50
    B | 26/03/2011-22:22:28 | 26/03/2011-22:50:10
    B | 26/03/2011-22:49:28 | 26/03/2011-22:53:50
    B | 26/03/2011-22:50:28 | 26/03/2011-22:59:50
    B | 26/03/2011-22:59:58 | 26/03/2011-23:10:50
    C | 26/03/2011-23:05:58 | 26/03/2011-23:10:50
    C | 26/03/2011-23:40:58 | 26/03/2011-23:50:50

    I need those names who have several calls and a single call starts before the end of another call. If someone has four calls and two of these overlapping (A has two overlapping and B has three overlapping), this name comes also in my list as below:

    Name | Overlapping_Count
    A | 1
    B | 2

    Can someone help me please?

    Thank you/Razin

    Etbin wrote:
    Maybe

    NOP:

    SQL> select  *
      2    from  tbl
      3  /
    
    N STARTTIME              ENDTIME
    - ---------------------- ----------------------
    A 26/03/2011 12:33:16 pm 26/03/2011 12:40:10 pm
    A 26/03/2011 12:41:28 pm 26/03/2011 12:43:19 pm
    A 26/03/2011 12:42:28 pm 26/03/2011 12:47:50 pm
    B 26/03/2011 10:22:28 pm 26/03/2011 10:50:10 pm
    B 26/03/2011 10:49:28 pm 26/03/2011 10:53:50 pm
    B 26/03/2011 10:50:28 pm 26/03/2011 10:59:50 pm
    B 26/03/2011 10:59:58 pm 26/03/2011 11:10:50 pm
    C 26/03/2011 11:05:58 pm 26/03/2011 11:10:50 pm
    C 26/03/2011 11:40:58 pm 26/03/2011 11:50:50 pm
    
    9 rows selected.
    
    SQL> select name,count(*) overlapping_count
      2    from (select x.name,greatest(x.starttime,y.starttime) low_ovlp,least(x.endtime,y.endtime) high_ovlp
      3            from tbl x,tbl y
      4           where x.name = y.name
      5             and greatest(x.starttime,y.starttime) < least(x.endtime,y.endtime)
      6             and x.starttime != y.starttime
      7             and x.endtime != y.endtime
      8         )
      9   group by name
     10  /
    
    N OVERLAPPING_COUNT
    - -----------------
    A                 2
    B                 4
    
    SQL> 
    

    It is simpler and requires no self-join:

    with t as (
               select  name,
                       case
                         when max(endtime) over(partition by name order by starttime,endtime rows between unbounded preceding and 1 preceding) > starttime then 0
                         else 1
                       end start_of_group
                 from  tbl
              )
    select  name,
            count(*) overlapping_count
      from  t
      where start_of_group = 0
      group by name
      order by name
    /
    
    N OVERLAPPING_COUNT
    - -----------------
    A                 1
    B                 2
    
    SQL> 
    

    SY.

  • How can I find photographs that are not assigned to any collection?

    Hello!

    I use LR 5.7.1 on a Mac.

    When I've airbrushed raw with PS CC images (and do not need file PSD more) I export the PSD (which is in my catalog) in JPG format and let it automatically add to my catalog. After that, I remove the PSD file. Which works very well.

    But... the new JPG file is not assigned to any collection. This is no problem unless I forgot to do it manually after export (and import).

    This brings me to my question.

    How can I find photographs that are not assigned to any collection?

    I tried with a smart collection after I found nothing suitable in the filter library. The search criteria, I tried are Source-> Collection with any of the conditions. One with an empty field, then with just a space and so on.

    Does anyone have a good tip for me?

    Thomas

    You can also add numbers if you have collections that do not use characters of the alphabet.

  • Smart phone BlackBerry Smartphones does not meet the system requirements that are needed to support Blackberry App World

    Hello

    I just all new BB Curve 8900 on Vodafone. Its the first BB I've owned and I seem to have a bit of trouble. When I try to download the App World, I get the following error message:

    "Device does not meet the system requirements that are needed to support Blackberry App World"

    How can this be?

    OK then... interesting for Vodafone to push support far... Well, by I guess.

    So I guess that I change their instructions... rather than to remove an installed version of the AppWorld in the way they suggest, I suggest go to:

    Homescreen > Options > Advanced Options > Applications

    See if BB AppWorld is listed as installed. If so, highlight (but do not click) it and then press the BBKey and select Delete. If she wasn't there, then continue on these steps.

    Then do a batt pull reboot:

    With power ON, remove the hood back and remove the battery. Wait a minute, then replace the battery and cover. Power on and wait patiently through the long reboot - about 5 minutes.

    Then re - activate your THS:

    Homescreen > Options > Advanced Options > host Routing Table > BBKey > sign up now

    Then re - send all the service books:

    http://www.BlackBerry.com/BTSC/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB02830&SLIC...

    Then do another reboot batt-pop.

    Then, get a new link for AppWorld from here:

    http://NA.BlackBerry.com/eng/services/appworld/download.jsp#tab_tab_download

    And re - download and install it.

    I hope it's going to go right. If not, then it could still be useful a call to Vodafone...

    See you soon!

  • How to find what processes are running on my computer and use it from memory?

    * Original title: find running processes

    How to find what processes are running on my computer and use it from memory?

    You can press Ctrl-Shift-Escape to see which processes are underway and those who is using memory (and how much they use).  Although the memory usage is not as important as how they use lots of CPU, which is what can make your computer slow if there are too many programs use the CPU at the same time.  For memory, even if she says that he uses a lot, an inactive program ' pages on "memory to the hard disk and it frees room for other programs to use, is not as important as the CPU generally (unless you are very very low on memory).

  • way to find vm that are not removed from disk

    Is it possible that I can find, vm that are not removed from disk

    That is to say that "take inventory" but I forgot to remove the disc.

    Thank you

    If you only need a report, you can do it like this (I've made a few changes to your script).

    $unregistered = @)

    foreach ($Datastore in (Get-Datastorecluster xxxx |)) Get - Datastore)) {}

    # Collect .vmx paths of virtual machines stored on the data store

    $registered = @ {}

    Get - VM - Datastore $Datastore | %{

    $_. Extensiondata.LayoutEx.File | where {$_.} Name - like "*.vmx"} | % {$registered. Add ($_.) Name, $true)}}

    # Set up the search. VMX files in the data store

    New-PSDrive-name TgtDS-site $Datastore - PSProvider VimDatastore-Root '-' | Out-Null

    $unregistered += (@(get-ChildItem-Path TgtDS:-Recurse |)

    where {$_.} FolderPath - notmatch ".snapshot" - and $_. Name - like "*.vmx" - and! $registered. ContainsKey ($_.) DatastoreFullPath)} |

    Select DatastoreFullPath))

    Remove-PSDrive-name TgtDS

    }

    $unregistered | Export Csv c:\temp\vm-unregister.csv - NoTypeInformation - UseCulture

  • What is the list of updates that are needed to transform to SP3?

    What is the list of these KB upgrades that are needed to transform to Service Pack 3. I want to install them manually.
    I currently have:
    KB942288
    KB940157

    And want the whole list. If you don't know then you can go to: Control Panel > Add / Remove Programs if you are on the Service Pack 3 update...

    To 'turn' to SP 3, you must actually install SP3. There is no list that "transforms".

  • How install an update that I need so I don't see in my updates?

    * - Original title updates

    How install an update that I need so I don't see in my updates?

    Hello

    You can download the updates from Microsoft Download Center: http://www.microsoft.com/en-us/download/default.aspx

    Reference.
    Install the Windows updates: http://windows.microsoft.com/en-us/windows-vista/Install-Windows-updates

    Keep your PC updated: http://windows.microsoft.com/en-US/windows/help/windows-update

    The problems with the installation of the updates: http://windows.microsoft.com/en-us/windows-vista/Troubleshoot-problems-with-installing-updates

    I hope this helps.

  • Your smart phone BlackBerry Smartphones does not have system requirements that are needed to support the BB App World

    Hello

    My latest lamp died with a JVM. I just replaced today and I want to retrieve my downloaded applications. After I restored the device of BlackBerry Desktop, any of my downloaded apps are there. I have a brand new 9860, together running 7.1.  I run the App World. He told me to upgrade. When I followed the upgrades of the screen, I get an error message: notice: sorry your device does not meet the system requirements that are needed to support the BB App World. I have a brand new phone has so first question... I can update App World on Wi - FI. or should I do my first phone company data Plan? I've been running my old phone without data plan but enjoying use BBM and cell phone. Not happy.

    Yes, hopefully soon... I know that the right people are aware of the "incorrect" error message

  • is it possible to find pages that are not my favorites?

    is it possible to find pages that are not my favorites?

    Yes, it can be done with a script that runs through the entire tree of bookmarks (this must be done recursively, assuming that there are several layers), runs the command associated with each bookmark and then collects the page numbers in a table. All of the pages in the table at the end of the process are not pointed to by any bookmark.

  • I'm trying to clean up my Start menu but don't want to delete anything, I should not. How can I find programs that are actually needed to start?

    Computer starts slowly. Try to find ways of reorganization and boost performance.

    Hello
     
    Many things contribute to this slowdown to a computer, it could be hardware or software related.
     
    Method 1.
    Computers get slower for various reasons: files become disorganized, unnecessary software consumes resources, readers of network unused slow start or too many programs run automatically at startup. Larger, serious questions can dramatically too slow down your computer's performance. You may have a virus or have need troubleshoot clean start.
    Check to see if the problem exists in Safe Mode, if the computer works as expected in mode without failure, then we can solve the problem in the clean boot state.
    a. refer to the article below for the procedure safe mode in Windows XP
    A description of the options to start in Windows XP Mode
    http://support.Microsoft.com/kb/315222

    b. you need to perform a clean boot to find the program that is causing and then disable or remove.
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353/en-us
    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.
     
    Method 2.
    Also, check out the steps that are listed in the articles below and check.
    How to set performance options in Windows XP
    http://support.Microsoft.com/kb/308417
    Restore the performance of your computer with Windows XP
    http://www.Microsoft.com/windowsxp/using/Setup/expert/northrup_restoreperf.mspx
  • I am trying to download Windows 7 but it asks if I want to 32-bit or 64-bit. How can I know that I need?

    What system do need me?

    I am trying to download Windows 7 but it asks if I want to 32-bit or 64-bit.  I checked the post of work and then properties, but it does not say what system I use.   Any ideas how?

    64 bit 32 vs

    http://Windows.Microsoft.com/en-us/Windows7/32-bit-and-64-bit-Windows-frequently-asked-questions

    My PC running the 32-bit version or 64-bit Windows?

    http://Windows.Microsoft.com/en-us/Windows7/find-out-32-or-64-bit

    http://Windows.Microsoft.com/en-us/Windows7/installing-and-reinstalling-Windows-7

    Windows 7 64 bit comes in handy when you need to deal with at least 4 GB of RAM or more. Windows 7 32 bit can use up to 3.2 GB of RAM. Because the address space of memory is much larger for 64-bit Windows, this means that you need two times more memory than the 32-bit Windows to accomplish some of the same task, but you are able to do much more, you can have more apps open, do things like run a virus scan in the background it will affect the performance of your system. 64-bit Windows 7 is safer too, malicious code cannot easily infiltrate it, drivers are more reliable because they must be signed before it can work with 64 bit Windows 7.

    Regarding compatibility, you need device drivers 64-bit hardware devices, you may have. In addition, there is no 16-bit subsystem in Windows 7 64-bit, which means, your applications must be 32-bit only, not 16-bit Installer or programs uninstaller.

    The upgrade of Windows Vista

    When important changes to your computer, for example an upgrade, it is always recommended that you back up your system before installing a new version of Windows. In your case, you can upgrade to Windows 7 depending on the edition and the architecture of Windows Vista, you have installed. If you are running a 32-bit version of Vista and upgrade to a 64-bit (Windows 7 edition) version, you'll have a pure make install, it is the opposite case.

    If you are using Windows Vista Home Basic or Premium consumer editions, you can only upgrade to Windows 7 Home Premium or Ultimate. In addition, you can make downgrades, which means, if you are running Windows Vista Ultimate Edition now, you cannot downgrade to Windows 7 Home Premium. You perform logical upgrades:

    Windows Vista Home Basic > Windows 7 Home Basic, Premium or Ultimate

    Windows Vista Edition Home Premium > Windows 7 Home Premium or Ultimate

    Windows Vista Business > Windows 7 Professional, enterprise or ultimate edition

    Windows Vista Business > Windows 7 Enterprise

    Windows Vista Ultimate > Windows 7 Ultimate.

    http://www.notebooks.com/2009/10/07/using-Windows-easy-transfer-in-Windows-7/

    The upgrade to Windows XP?

    Please read these instructions carefully and completely before you begin installing Windows 7: there are important steps that you must follow to upgrade your PC from Windows XP to Windows 7 in order to preserve your files and settings.

    Before you begin, you'll need to backup all your data to an external storage device, and you will need all the installation discs for the programs that you want to keep. Please make sure that you have an external hard drive (see details below).

    More detailed instructions are available at windows.microsoft.com/upgrade-windows-xp. Here are the basic steps.

    1. start Windows Upgrade Advisor (windows.microsoft.com/upgradeadvisor) to see if there are known issues that may affect the installation and the question of whether you should install the version of 32 or 64 bit Windows 7.

    2 back up your files and settings on an external hard drive using Windows Easy Transfer (windows.microsoft.com/windows-easy-transfer). If you do not have an external hard drive, you will not be able to use Windows Easy Transfer. Alternatively, you can copy the files you want to keep on a USB stick, CD or DVD.

    3. you will need to manually reinstall your programs, such as Microsoft Office, after I installed Windows 7. Gather the installation for your programs and all partner/license product key discs. You may be able to download programs from the Internet. For example, Windows Live Messenger can be installed from the download.live.com/messenger.

    4. Insert the Windows 7 DVD in your PC. When asked "which type of installation you want. Click on "Custom (advanced)."

    5. when Windows 7 is installed, use Windows Easy Transfer to restore your files and settings.

    If you are not comfortable Windows 7 installation, check with a local retail or the services of the PC company store to see if they offer upgrade services.

    http://www.notebooks.com/2009/10/13/WinXP-to-Win7/

Maybe you are looking for

  • How to enter / type/hanja on the iPhone 6?

    I type HANGUL Korean very well on my iPhone 6, but I don't know how to insert or add or enter hanja by using my keyboard (or something) on my iPhone. How do we? Help, please!

  • C:\Windows\Temp could not be saved, because you cannot change the contents of this folder. __

    Someone knows how can I fix?  I can't download anything because of this error, I tried a system restore, but that did not work.  Any help would be great.

  • parsing a SOAP response

    Hi all I need to analyze this below the answer... but have no idea http://schemas.xmlsoap.org/soap/envelope/"> http://tempuri.org"> http://schemas.microsoft.com/dynamics/2008/01/documents/EmpltableWS"> Original ceu 30a13deb4619490c0fd70a5e56e70ad1 00

  • Oregon Tweener error

    For some reason, I am unable to use the Tweener. Whenever I'm trying to use it, even if I Trace (Tweener) I get the following error: ReferenceError: Error #1065: Variable caurina.transitions::Tweener is not defined. Yes, I imported caurina.transition

  • BEK6K-S preconfigured Configuraiton

    This is therefore the first BE6K-S that I saw, very kool!   Basically a host ESXi built on a module that is inside the router!   With a VWIC and you are a telephone system for users of 100 or more, including the unit.   It was 'pre-configured' system