How to check  that same Oracle software versions(including patch versions)

How to check that same Oracle software versions(including patch versions) is installed on two hosts(machines) ?
We are using following process:
On Host A :
1) Get the Oracle version using SQLPlus -v
From this output, extract the version number.
2)Find the patches installed using opatch lsinventory -detail
From the output , Extract the Patch numbers and Bugs fixed.
3) Store the version , patch and bugs information in a common file.
On Host B :
Repeat the steps 1 and 2 and compare with the values from Host A.
Please let us know if there is any other method to do this.
Thanks.

This is wrong: for Oracle Database version 10.2.0.4 *4* identifies the patch set and does not give information about interim patchs.
It is correct to use opatch lsinventory to get interim patchs.
Edited by: P. Forstmann on Jul 21, 2009 12:38 PM

Similar Messages

  • How to solve this. It happens even when firewall is disabled. Apple TV: "Check that any firewall software running on this computer has been set to allow communication on port 3689" alert in Windows

    How to fix this. Happens even when firewall is disabled.  (Apple TV 1st generation)
    Apple TV: "Check that any firewall software running on this computer has been set to allow communication on port 3689" alert in Windows

    After a few hours the same issue started again. (Port 3689 error) I checked my router settings and it shows ATV asd connected to my netrwork. ATV also shows in iTunes devices. It asll works till I try to sync. Then the error pops up
    I tired restoring ATV to factory settings. Even backed iTunes up to version 8 and every combonation therein. I started an older Gateway running Vista 64bit and it syncs fine with ATV although it's slow and I have to transfer movies  from my Win 7 to tyhe Vista machiner.
    I cannot find any reason for this issue. Can anybody solve this before it dribves me crazy? (Crazier)

  • How to find the of Oracle software types and versions installed

    Hi,
    How to find the of Oracle software types and versions installed on RedHat Linux AS machine and Sunsolaris10 machine?
    Regards,
    Mathew

    I'm not sure about your point.
    You can use "opatch" command-line
    cd $ORACLE_HOME/OPatch
    ./opatch lsinventory -detail
    PRODUCT NAME VERSION
    ============ =======
    Advanced Queueing (AQ) API Patch 10.1.0.4.0
    Advanced Queueing (AQ) API 10.1.0.2.0
    Advanced Replication Patch 10.1.0.4.0
    Advanced Replication 10.1.0.2.0
    Agent Required Support Files Patch 10.1.0.4.0
    Agent Required Support Files 10.1.0.2.0
    Assistant Common Files Patch 10.1.0.4.0
    Assistant Common Files 10.1.0.2.0
    Authentication and Encryption Patch 10.1.0.4.0

  • My first generation AppleTV will not sync with iTunes anymore.  I get an error message that says: "The Apple TV is not responding Check that any firewall software running on this comptuter has been set to allow communication on port 3689"  firewall is off

    My first generation AppleTV will not sync with iTunes anymore.  I get an error message that says: "The Apple TV is not responding Check that any firewall software running on this comptuter has been set to allow communication on port 3689"  firewall is turned off.. Any ideas?

    Thanks Rudegar,
    I only synch and do not stream off of my 1st Gen AppleTV
    I will try with ethernet but will be a pain in the butt if i can not fix it with wifi for long term fix
    I may end up trying to do a named IP address vs DHCP for this appleTV (not sure if i can do both and do not want to remove DHCP as i have a bunch of sensors and other devices that I prefer to dynamically add to the network via DHCP vs. assign each one
    Will keep working on other fix options (factory reset, etc.)
    Thanks again

  • How to check amsilent file in Sun Access manager patch or redeploying WAR's

    h1. How to check amsilent file in Sun Access manager patch or redeploying WAR's
    I had a hard time getting all the passwords correct, so I wrote a shell (bash) script that uses most passwords and other parameters in searches and queries. It let's you know before you start if a value is wrong. It does not change anything, only queries.
    h2. One pitfall I found ...
    during the postinstall of patch 05. I told Sun about it, but I suspect it was too late and is also an issue with patch 06:
    Look at the documentation regarding amconfig and the amsilent file:
    http://docs.sun.com/app/docs/doc/819-2137/adsav?l=en&q=amconfig&a=view
    Two problems that are clear to me now:
    1. ADMINPASSWD in practice, this password is used for cn=puser, not amadmin as it says. Perhaps there is something that makes them the same. It was the same for me, so it probably does not matter.
    2. AS81_ADMINPASSWD is not the same as ADMINPASSWD using either my definition or the document's definition. However, in the amsilent template, it is set like this, which I found is incorrect and the cause of my recent hair loss:
    <blockquote>AS81_ADMINPASSWD="$ADMINPASSWD"</blockquote>
    Also, this one if you use the web server:
    <blockquote>WL8_PASSWORD="$ADMINPASSWD"</blockquote>
    Delete the $ADMINPASSWD and replace it with the password for the app/web server.
    h2. The Script.
    It tests for the above problem, but I just realized it does not check $ADMINPASSWD. If that is set incorrectly in your amsilent, you'll get errors immediately from amconfig, so no big deal. If you make improvements, please post a reply!
    Paste this into a file named checkamsilent. LDAP and appserver must be running. It reads /opt/SUNWam/amsilent. Run it as root or use sudo:
    sudo ./checkamsilent
    #!/usr/bin/bash
            echo "This will test several important parameters of the amsilent file "
            echo "run this as root."
            echo "### read in the amsilent parameters"
            echo "source /opt/SUNWam/amsilent  "
    source /opt/SUNWam/amsilent
            echo "### look for the *server port* with LISTNER, otherwise it's not listening. "
            echo "netstat -a | grep $SERVER_PORT    "
            echo "--------------"
    netstat -a | grep $SERVER_PORT  
            echo "--------------"
            echo "."
            echo "### *admin port* with LISTNER, otherwise it's not listening. "
            echo "netstat -a | grep $ADMIN_PORT   "
            echo "--------------"
    netstat -a | grep $ADMIN_PORT 
            echo "--------------"
            echo "."
            echo "### Expect to see a line of XML, otherwise the SERVER_PORT is incorrect in the amsilent file."
            echo "grep $SERVER_PORT  ${AS81_INSTANCE_DIR}/config/domain.xml  "
            echo "--------------"
    grep $SERVER_PORT  ${AS81_INSTANCE_DIR}/config/domain.xml
            echo "--------------"
            echo "."
            echo "### Expect to see a line of XML, otherwise the ADMIN_PORT is incorrect in the amsilent file."
            echo "grep $ADMIN_PORT  ${AS81_INSTANCE_DIR}/config/domain.xml "
            echo "--------------"
    grep $ADMIN_PORT  ${AS81_INSTANCE_DIR}/config/domain.xml
            echo "--------------"
            echo "."
            echo "### bind as the directory manager "
            echo "ldapsearch -v -h $DS_HOST -p 3892  -L -s sub -D \"$DS_DIRMGRDN\" -w \"$DS_DIRMGRPASSWD\" -b 'dc=nsf, dc=gov' \"cn=amldapuser\"" 
    ldapsearch -v -h $DS_HOST -p 3892  -L -s sub -D "$DS_DIRMGRDN" -w "$DS_DIRMGRPASSWD" -b 'dc=nsf, dc=gov' "cn=amldapuser" 
            echo "."
            echo "### check the amldapuser password. "
            echo "ldapsearch -w $AMLDAPUSERPASSWD -v -h $DS_HOST -p 3892  -L -s sub -D cn=amldapuser,ou=DSAME Users,dc=nsf,dc=gov -b ou=DSAME Users,dc=nsf,dc=gov cn=* cn  "
    ldapsearch -w "$AMLDAPUSERPASSWD" -v -h $DS_HOST -p 3892  -L -s sub -D "cn=amldapuser,ou=DSAME Users,dc=nsf,dc=gov" -b "ou=DSAME Users,dc=nsf,dc=gov" cn=* cn
            echo "."
            echo "### check the app server admin: AS81_ADMIN password: AS81_ADMINPASSWD  and port: ADMIN_PORT "
         echo "### That's actually a bug in the template.  "
         echo "### Do not use AS81_ADMINPASSWD=\$ADMINPASSWD  Make sure they are  different passwords! Don\'t use the default!"
         echo "Expect to see a WARNING about --password option. "
            echo "/opt/SUNWappserver/appserver/bin/asadmin  list-http-listeners --user $AS81_ADMIN --port $ADMIN_PORT  -w $AS81_ADMINPASSWD  "
    /opt/SUNWappserver/appserver/bin/asadmin  list-http-listeners --user $AS81_ADMIN --port $ADMIN_PORT  -w "$AS81_ADMINPASSWD"
            echo "done!"

    I change the product machine from LG optimus to Samsung Galaxy but the file writing is not working, too.
    I copied the source code from Adobe website about FileStream  but it is needless too.
    -----------------program code------------------------
    import flash.filesystem.*;
    import flash.filesystem.FileStream;
    import flash.events.Event;
    //txtFld is a standard textField component
    txtFld.text = "Start";var file:File = new File();
    //btnSaveFile is a standard button component
    btnSaveFile.addEventListener(MouseEvent.CLICK,handlerBtnSaveFile);
    function handlerBtnSaveFile(e:Event){
    txtFld.text = "Pressed";
    file = File.documentsDirectory;
    file = file.resolvePath("test.txt");
    var fileStream:FileStream = new FileStream();
    fileStream.openAsync(file, FileMode.WRITE);
    fileStream.writeUTFBytes("Hello");
    txtFld.text = file.nativePath.toString();
    //fileStream.addEventListener(Event.CLOSE, fileClosed);
    fileStream.close();
    fcnFileName();
    function fcnFileName(){
    txtFld.text = file.name.toString();
    function fileClosed(event:Event):void {
        trace("closed");
    txtFld.text = "FileClosed";

  • How to check that a pdf is in ISO 32000-1:2008(PDF 1.7) standard?

    Hi
    How one can know that a pdf file is in  ISO 32000-1:2008(PDF 1.7) standard format?
    Breif Introdution abt ISO 32000-1:2008(PDF 1.7)
    ISO is named as "International Organization Standardization" who look after the standardization of diffrent format gobally. Now that had mention ISO 32000-1:2008 standard for PDF. So how we ensure that a pdf is of this standard.
    Do acrobat had any option to look the ISO standard of a pdf file or else way to view it.
    Thanks
    Andy

    ISO 32000-1 is nothing to do with PDF/A - it is the core standard for the PDF/1.7 document format. PDF/A is covered by ISO 19005-1.
    Preflight can run a number of checks but there is no easy way to verify compliance with PDF/1.7 as a whole. You can try the "Report PDF Syntax Issues" profile in Preflight but that does not guarantee to detect non-compliance, only the most common things which will break the document.
    Creating your PDF files using a standards-compliant application such as Adobe Acrobat is by far the best option - I  never recommend refrying a PDF unless there is a specific necessity to do so and the file is only destined for hardcopy print, as it will break pretty much everything (accessibility tags, scripts, forms, links, media, layers, color spaces, certificates, etc.).
    Because it's not easy to verify, and Acrobat always produces standards-compliant files, many commercial printers and publishers insist on "Adobe PDFs" rather than generic ones, and will reject files that have been created with third-party software.

  • How to find if a Oracle software is 32-bit or 64-bit

    Is there a easy way to find out if Oracle software is 32-bit or 64-bit ?

    yes, if it's 64-bit version, it shows in v$version & for 32-bit it will not specify this exlicitely.
    There is another interesting method to find this wordsize.
    Query v$sqltext, and take the address information of the SQL. If the total length of ADDRESS column is 8
    ( eg: 78D049E4)
    , this means that wordsize=8*4=32, since 1 hexadecimal character = 4 bits.
    similarly, in 64-bit Oracle, you will get addresses with a length of 16. ( 16*4 = 64)

  • How to check whether a Oracle server is installed or not ?

    Hi,
    How cani check whether a Machine has oracle server installed or not ?
    I have a machine where i have the client tools installed but not server. In that case how can i check whether this machine has oracle server is installed or not?
    Thanks in Advance..

    user11000236 wrote:
    Hi,
    How cani check whether a Machine has oracle server installed or not ?
    I have a machine where i have the client tools installed but not server. In that case how can i check whether this machine has oracle server is installed or not?
    Thanks in Advance..http://tinyurl.com/ngunhv
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How to check that Delta is not captured?

    Dear Experts,
    I am using 2LIS_02_ITM datasource.
    PO is created using a program.
    The next step in the program, it can change a field in the PO depending on logic, using a abap command 'update'.
    Sometimes, this change is not captured in the delta queue, it seems.
    why i say this is the PO shows the field value but BI delta load does not.
    It is using Queued Delta now.
    Initially, the program uses a command 'update' to update the field in PO.
    Now, we decided to use ME22N program to ensure delta will be created.
    The problem is happening to some records and not all delta records.
    Its very difficult to tell what is the cause.
    What is the standard method to check that Application table data is not captured in Delta Queue by the extractor?
    Or
    If PO can show the field value, is there a possibility that Delta may not capture this field change?
    regards
    Pascal

    Well just throwing few possibilities:
    1 - Basically PO creation, change in values/quantities etc are Business transactions and they generate evens known as BTEs.
    Now we have to explicitly inform SAP ECC that which applications can use BTEs and we do this by tcode BF11.
    Check if the software component creating and changing POs is properly linked to BTEs and if BW is set as active in BF11 tcode.
    2 - If point 1 is checked and nothing is found to be incorrect, please check if Industry sector is correctly chosen (SBIW). Industry sector generates a set of Transaction keys (BWVORG) without which the values are not updated in BW.
    Also rightly pointed by Tbollo, you need to ensure that there's a pattern in the missing docs to identify the rootcause.
    Debanshu

  • 5400 / 7200 RPM. How To Check That?

    hi guys.
    the box with a brand new external usb drive i am planning to purchase from my local computer store doesn't say whether it's as fast as 5400 or 7200 rpm.
    how do i normally check that parameter through my computer? i tried checking that on my current usb drive with system profiler, but can't see such a section anywhere!

    Aram Rian wrote:
    thanks for the reply.
    hmm, well i still need to somehow make sure the rotation speed of the usb hard drive i am going to purchase is 7200 rpm
    I don't think it really matters from a practical point of view. The maximum sustained transfer speeds you can get out of Hi-Speed USB (USB2) is about 30-35 MB/sec. This is well under the speeds that most current 5400 RPM notebook drives are capable of. For example, a Hitachi Travelstar 5K320 drive is capable of up to 729 Mbit/sec, which is higher than 90 MB/sec.

  • How to check that concrete object is on the scene?

    Hi
    I wonder how can i check that concrete object is on the scene for example:
    var sprite1:Sprite = new SPrite();
    stage.addChild(sprite1);
    if(?????)
        //do something with sprite1
    else
         //add sprite1 to display list and do something with it
    Is there any property or method to check this?

    If you mean that the object exists, you can try...
    if(sprite1)
        trace("it exists");
    else
         trace("it's not here");
    otherwise, if you mean you want to know if it's on the display list, you need to go thru the display list to see if it's in there...
    var child:DisplayObject;
    var spriteFound:Boolean = false;
    for (var i:uint=0; i < stage.numChildren; i++)
    child = stage.getChildAt(i);
    if(child == sprite1){
       spriteFound = true;
    if(spriteFound){
    trace("it's on display list");
    } else {
    trace("it's not here");

  • How to check if the Oracle e-business suite upgraded from 11 to 12 ?

    Hi All,
    Could you please advise how we can check if the Oracle e-business suite application upgraded from 11 to 12 ?
    Regards,
    Mohammed Mostafa

    It is needed as some steps will be applied if it is upgraded from 11 to 12..
    here is the output :
    $
    $ grep -i "s_rapidwizloc" /xxxxx/inst/apps/XXXXX_host/appl/admin/XXXXX_host.xml
                <rapidwizloc oa_var="s_rapidwizloc">/autofs/cclibrary/CCrepos/linux_x86-64/EBizCC/1213/startCD/Disk1/rapidwiz</rapidwizloc>
    $
    $
    $ grep -i "s_installloc" /xxxxx/inst/apps/XXXXX_host/appl/admin/XXXXX_host.xml
                <installloc oa_var="s_installloc">/autofs/cclibrary/CCrepos/linux_x86-64/EBizCC/1213/startCD/Disk1</installloc>
    $
    How we can check then please if it is a fresh R12 installation or an upgraded from 11i? ?
    Regards,
    Mohammed

  • How to check that whose access my system

    i am use computer and i want to check how many request comes my computer and which files or folder shered at that time ????

    I like to use netbeans which one should i need to download?You'd think you would go to the Netbeans website and find out, but I'm silly like that. Either a recent JDK 6 or the latest JDK 7 will do just fine. I would install Java anywhere except in program files. I install all my Java stuff in a directory called "java" myself, so I have C:\java\jdk6, c:\java\eclipse37, c:\java\tomcat7, etc. I never have to search for my stuff that way.
    (of course being a proper computer savvy user I partioned my harddrive to reserve the C drive specifically for the OS only, so it is in fact e:\java).
    2)How to find apache tomcat server is installed in by PC or not how to test that ?Use the search function of your OS of course. Its not even a Java related question.

  • Time Machine: How to check that it's working?

    hey guys, i just ran Time Machine for the first time and it looks like everything worked ok. it completed the backup and will run another backup in 20 minutes. i was just wondering how i can check that my files are actually being backed up in case i had to restore the files. how would i go about restoring the files by the way? i can't see an option to do this.         
    thanks a lot

    ThunderCon wrote:
    ok i had a look at that, but couldn't find an answer to this:
    i just noticed that my time machine drive is 4gb smaller than my mac internal HDD. is there any reason for this?
    Yes, as softwater and others have said, Time Machine does skip some things, such as system work files, most caches and logs, etc.  The size of all that varies widely from time to time, but is usually several GBs.
    See the tan box in Time Machine - Frequently Asked Question #11 for the gory details.
    But the size of the data on your TM drive will grow as more backups are performed, copying only the items that are new or changed, eventually filling all the available space.  Then it will begin deleting the oldest backup(s) when it needs room for new ones.
    but doesn't Time Machine create a bootable copy of the hard drive anyway?
    No, TM backups aren't directly bootable.  If your internal HD dies, you can restore your backups to a replaced internal HD, or another external HD.  The restored system is bootable.
    if the hard drive died, wouldn't Time Machine be able to restore everything?
    Yes.  The things it doesn't back up are re-created as needed anyway.  See FAQ #14 for details on doing a full restore.

  • How to check that iPhone 4 is factory unlock or not

    how to check an iPhone is factory unlock or not

    There is no way to check. This question gets asked all the time, and the simple fact is if you purchased your phone from an official source that sells officially unlocked iPhones, your phone is officially unlocked. If you didn't purchase from an official source, there is a good chance it was hacked.

Maybe you are looking for

  • Can you make certain social network applications available in all countries?

    I've recently been hearing a lot about the application Yik Yak, and I wanted to download it. However, when I went to download it, I found out it wasn't available for Singapore users, but only for United States users. This I find rather unfair because

  • Looking for a programmer

    Im looking for someone without a lot of experience to share knowledge with (no complete newbies, please). Im trying to create a MORPG and it'd be nice to work with someone who has at least a little experience with java. I personally, began learning j

  • How Can I Create This Type of Workflow?

    1. I need to create an editable workflow, for example a workflow that starts once you add  a "Ms Word" document in a folder, then the initiater gets to choose who will be the firts reviewer and the who will be the second reviewer of the docuemnt. 2.

  • Excel unable to read WEBI schedule download excel file

    Hi experts, We use BO central management's instance manager to schedule download a report as excel format in our ftp share folder. And the download did run successfully and an icon of the file been shown as excel  format in ftp folder. while we use e

  • Reconciliation failed on Resource RACF

    Hi All, We are using Sun IM 6.0 with RACF Resource configured. when we start Reconciliation it is giving following Error "Execute access denied to Subject Configurator on Resource: RACF" can anyone tell me what is wrong