Patch from 10.2.0.1 to 10.2.0.3

Hi,
Please advise the how long it would take to apply a patch on solaris sparc 64 bit from Patch from 10.2.0.1 to 10.2.0.3 .
Is there anyone faced any problems while applying this patch. Please advise the steps involved.
Regards
Harinder

Hi,
I am from UK and I have checked the documentation .Do i need to apply this as well:
5.5 Update Oracle Time Zone Definitions
The 10.2.0.3 patch set includes an update to the Oracle time zone definitions. The 10.2.0.3 patch set updates the standard version of the Oracle 10.2 time zone definitions version-2 to version-3. This version of the time zone definitions includes the changes to daylight saving time in the USA in 2007, and many other updates.
A list of updated time zones in version-3 of these definitions are available from document 412160.1 on the OracleMetaLink Web site:
     DST RULE CHANGE IN US, NEED PATCHED TIMEZONE FILES
Please advise.
Regards
Harinder

Similar Messages

  • I would like to see and access the correct sound patches from my E-mu mps orchestral plus from inside of logic express.

    I would like to see and access the correct sound patches from my E-mu mps orchestral plus from inside of logic express.
    Right now , I have access to some of the sound files but most are missing and all are incorrectly labeled.
    Is it possible to ("Library") these sound files or access them from logic?
    Thanks
    J

    HI,
    I'm not quite sure who you think you are addressing here with your idea but this is a user to user forum. Apple don't come here.
    If you want to offer ideas or feedback to Apple, it would be best for you to do it here:
    http://www.apple.com/feedback/logic-pro.html

  • [SOLVED] Enabling debug for ath9k in compat-drivers-patched from AUR

    Wireless card: TP-LINK TL-WN951N. lspci says that it is an Atheros AR5416 adapter [AR5008].
    Some background: I'm having the same issues as the OP in this thread, which references this bug report. The problem is that I get a 2000 ms ping every 30 seconds. So 2 seconds of inactivity every 30 seconds. I have the same wireless PCI card, as well. I need to fix this, because it's making online gaming impossible. I should also note that the card is working just fine in Windows 8, however. I am using net-auto-wireless. I have tried using wicd, enabling ath9k's nohwcrypt option, toggling the card's power save, installing the latest compat-drivers-patched from the AUR, toggling different settings in my motherboard's BIOS, and removing the antennae from the card. But nothing has made a significant difference.
    I think I'm really close now. I just have to disable ANI. But in order to do that, it seems that I need to enable debugging for ath9k. But this means that I need to either recompile a custom kernel, or somehow enable debug for ath9k in compat-drivers-patched from the AUR. I'd prefer the latter, as that means that I will have a more bleeding-edge driver. That, and I won't have to touch the kernel as much. What I want is described on this page. But it seems too complicated to me. Please let me explain.
    I've installed things from the AUR before, as mentioned above, and have properly configured my makepkg.conf for my system. So I'd like to use the CFLAGS and such that I've set. I don't understand how everything works in the PKGBUILD; I don't have much experience with sed and awk and regular expressions, and haven't done much shell scripting at all. It seems that at some point in the PKGBUILD, I need to enable debugging for ath9k before it is compiled. Apparently on the last page I linked to, I need to add:
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    to some config.mk file. I can only get access to the config.mk file after I install the package with pacman. I've tried adding those lines to my /etc/profile file, and checked, after a reboot, with "set", that those variables are indeed set. But the thing is, with these variables set in /etc/profile, when I run makepkg, makepkg fails with an error 2. I tried again and got the same error. I removed those lines from my /etc/profile, rebooted, tried makepkg again, and everything worked. So putting those lines in my /etc/profile is not the solution, and I feel like I'm doing something very stupid. What am I doing wrong?
    I should also note that I've tried to read the wiki page on compiling a custom kernel using ABS, but it seems to just say "get your custom configuration files" and then just continue (so it assumes that I should already be familiar with the configuration part). The PKGBUILD and Creating Packages wiki pages also seem to be a little... too advanced for me at this point in time.
    So how do I enable debugging for ath9k in compat-drivers-patched from the AUR? I'd prefer to stick with only editing the PKGBUILD and using makepkg, if possible.
    I've really tried to search the web and the arch forums on how to fix this problem myself, but alas, it seems that I need help this time. I greatly appreciate your time for reading my long post.
    UPDATE:
    I've made a lot of progress. I ended up removing the AUR package with pacman by invoking "pacman -Rsn compat-drivers-patched".
    Instructions for [almost] success: First, download compat-drivers-patched from AUR. Then move it to the "builds" directory (or "local", if using ABS). Extract the tarball. After the new directory is created, cd into it. Now here's the important part: run
    $ makepkg -so
    Then cd into src, cd into the directory inside src, then edit the config.mk file. Make sure these lines are uncommented (or created, if not already there):
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    (source)
    Now run "cd ../.." to go back up two directories. Now run:
    $ makepkg -e
    # pacman -U <file that was produced>
    And I ran "mkinitcpio -p linux" just in case, but I'm not sure if that is necessary at all. I'm... not touching the kernel, right?
    Now I ran:
    echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani
    But bash would say that the file or directory doesn't exist. Even if I prepend it with "sudo", I get the same results. I was only able to get the command to work if I logged in as root. I even put the line in my /etc/profile. The 2000 ms ping every 30 seconds is now GONE. HOWEVER! If I reboot and log in as a normal user, the problem is there again. If I reboot and log in as root, the problem is gone. If I then log out and then log back in as a normal user, the problem does not come back.
    So really, I can avoid the problem if I first log in as root, log out, and then log back in as a normal user. But this is a great inconvenience. I would much prefer if I could just log in as a normal user right after boot, and have everything working.
    Now, how do I get the command to automatically run at boot as root (without me having to log in as root), and work?
    UPDATE 2:
    I got it working. Putting the line in /etc/profile is not the solution. I created a custom systemd .service file.
    Put this into /etc/systemd/service (name it "disable_ani.service"):
    EDIT: Wow. I made a glaring typo here. It should be /etc/systemd/system/disable_ani.service
    [Unit]
    Description=disable_ani
    [Service]
    Type=oneshot
    ExecStart=/bin/sh -c "echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani"
    [Install]
    WantedBy=multi-user.target
    Then make sure to "sudo chmod 755 /etc/systemd/service/disable_ani.service", since root owns this file.
    Then run "sudo systemctl enable disable_ani.service".
    EDIT: It has been brought to my attention that there is a much simpler way than creating a custom service.
    Using a tmpfile:
    /etc/tmpfiles.d/disable_ani.conf
    w /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani - - - - 1
    Done.
    Now ANI is persistently disabled between boots, even if I log in as a normal user right after boot.
    Thanks for reading.
    Last edited by vyu223 (2013-03-12 10:20:19)

    So zsh is telling you that the command didn't work, since it claims that there is no such file or directory. I had a lot of trouble with getting the echo command to work, as well. I found that if out of these lines:
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    If the first and second line above were not uncommented in the config.mk file, I couldn't leave the last line above uncommented as well, or else makepkg would fail and give me an error. So originally I had only the 3rd and 4th lines above uncommented/inserted in my config.mk. With that configuration, I could not get the echo command to work, no matter what. Have you uncommented or inserted all of the above 5 lines into your config.mk?
    After making sure all of the above 5 lines were in my config.mk, the echo command still didn't work, even if I preceded the command with sudo, or entered a su session. Bash would tell me that there was no such file or directory. I found that if I actually logged out of my normal user, and then logged back into the computer as root, the command would work. If your shell does not give you any feedback (particularly, "no such file or directory"), then the command worked. In order to get the command to run every time the computer boots, I used a systemd service, so that the command is issued as root. For some reason, it doesn't work if you put the command into /etc/profile.
    Oh, and it would probably be helpful to mention that for the compat-drivers-patched package from the AUR, the PKGBUILD checks to see what your _selected_drivers variable is before compilation. If you set _selected_drivers=ath9k, your compile times will be much shorter.

  • Simple 'create a patch from subversion' script

    This script was written for a specific use, in a specific environment:
    here's the setup:
    You have a (development) PHP project under subversion source control, and another, un-versioned (live) copy.  You make changes to the development version, committing them to the repository as you go, until you're happy with your changes, then you want to copy any files that have changed since revision X (the last time you moved things across) from the development project into the live site.
    This script gets any modified / added files from revision X upwards from the repository and puts them (preserving the directory structure) into a directory called 'patch-rX'.  You can then just drop these into your live site to 'patch' it to the latest revision.
    It's not particularly elegant, and it doesn't deal with files that are removed from the repository (I'd have to parse the 'status' bit of each line, find out what's happened to the file and so-on) but as a quick and dirty hack it works quite well.
    run it like this:
    make patch.sh REVISION URL
    where REVISION is the lowest revision number to get changes from and URL is the url of your repository.
    #!/bin/bash
    #make patch.sh
    #by Paul B
    #[email protected]
    #simple script to make a very simple patch from a repository
    #call with make patch.sh REVISION URL
    #REVISION should be the lowest revision to get changes from, script gets all changes from REVISION to HEAD
    #URL is the url of your repository
    #eg: make patch.sh 750 svn://redmine.tyrrellsystems.com/tms/tms_dev/Trunk
    #first we need to get a list of changes since requested revision
    svn diff -r$1 $2 --summarize > filelist.txt
    #now remove the repo information from each line, so we're just left with the path from the root upwards
    sed -i "s#$2# #g" filelist.txt
    sed -i "s#M # #g" filelist.txt
    sed -i "s#A # #g" filelist.txt
    #now loop through what we've got
    #create the relevant folder, and export the file into it
    for i in $(cat filelist.txt);
    do
    filename=$(basename $i);
    path=$(dirname $i);
    mkdir -p patch-r$1/$path
    svn export --force $2/$path/$filename patch-r$1/$path/$filename
    echo "$filename";
    done

    This sounds similar to svn-export. Perhaps you would find that useful as well.

  • How Do I get the right patches from my keyboard into LOgic??

    Please help me.
    I'm a beginner of Logic.
    Can someone tell me how to record the sound that I want to record
    into the MIDI track??
    When I click on the first track with the grand piano picture, and then play my keyboard, I dont hear
    grand piano but string sound. And when i play 3rd tack (fingered bass picture) i hear different patch from my keyboard. Can someone tell me how to
    lock up right bank and patches with logic?
    This is so confusing. Someone told me I need to download the patch list of my keyboard to make it show up in logic the same way it's showing up in my keyboard. Without it, I'd have to type every patch list of my synth into logic bank and prgram names. How do you guys deal with this?
    PLease help me. This is haunting me for a week now..
    One more question..
    When I press record with metronum on, I hear metronum AND some other
    patch sound playing along with metronum. How can I only hear the metronum?

    iTunes menu File > Devices - Transfer purchases.

  • Upgrade patches from OWB 10.2.0.1 to OWB 11.2.0.3

    We are upgrading from OWB 10.2.0.1 to OWB 11.2.0.3
    We have upgraded database from 10.2.0.1 to 11.2.0.3
    What are the patches that needs to be applied before upgrading the repository?
    What are the patches that needs to be applied after upgrading repository?

    follow this link
    http://www.orafaq.com/forum/t/119954/2/
    http://wiki.oracle.com/search/threads/10.2.0.1?contains=10.2.0.1
    http://www.oraclealchemist.com/oracle/patching-from-10201-to-10203/
    also i assume there is no RAC involved in your case.
    Edited by: Darthvader-647181 on Dec 2, 2008 8:13 AM
    Edited by: Darthvader-647181 on Dec 2, 2008 8:14 AM

  • Release a patch from the concert in which it was generated.

    Hello, I have a question .When I create a new patch this is a perfect copy of that concert. But if I try to do something as clear a strip, change its position, copy it or else I see that I can not do anything. Is there a way to make independent a new patch from the original concert which was originated? So you can edit it in its entirety?

    Sorry but my first problem is an English really rough. I knew it was hard to explain, I try with an example: if I create an entire setup to the level of the concert then when I create a new patch with the "+" button at the top right, will create a new patch in all identical to the content of the concert. But in this new patch every strip displays the Mainstage icon at the top and is not editable except the very few aspects. You can not move, can not delete unless you do it at the concert level but then it will be deleted from all other pacth. And I do not find a solution to make it independent from the level of concert in which it was generated.

  • Upgrade Oracle patch from 10.2.0.2 to 10.2.0.4 but 3 Instance on 1 server .

    Dear all ,
    AIX , Oracle , ECC6.0 and SAP Netweaver 7.0 .
    we have 3  instances are Installed on same server .
    SAP DEV , SAP QA , BIW-DEV .
    Seperate Oracle home and SID .
    I required to apply Oracle patch to all 3 Instance .
    I have already Upgraded Oracle patch from 10.2.0.2 to 10.2.0.4 in my Sand Box server (Windows) .
    Kindl y suggest how to upgrade Oracle patch to all the Instance .
    or i have to upgrade oracle patch to one by one instance .
    Is there any precaution ...
    Regards

    Dear Mitra,
    Yesterday i have tried to upgrade Oracle patch on DEV server , i got error ,
    Pls check the below ,
    SAPDEVQA:oraird 7> ls -l
    total 3592
    -rwxrwxrwx    1 oraird   dba         1626654 Aug 01 18:07 10204_buglist.htm
    drwxrwxrwx    4 oraird   dba            4096 Aug 01 18:07 install
    -rwxrwxrwx    1 oraird   dba          195843 Aug 01 18:07 patch_note.htm
    drwxrwxrwx    2 oraird   dba             256 Aug 01 18:07 response
    -rwxrwxrwx    1 oraird   dba            3495 Aug 01 18:07 runInstaller
    drwxrwxrwx   12 oraird   dba            4096 Aug 01 18:25 stage
    SAPDEVQA:oraird 8> ./runInstaller
    Your platform requires the root user to perform certain pre-installation
    OS preparation.  The root user should execute '/usr/sbin/slibclean' on all the nodes before
    you proceed with Patchset Installation.
    Answer 'y' if root has run '/usr/sbin/slibclean' so you can proceed with Oracle
    Patchset installation.
    Answer 'n' to abort installation and then ask root to run '/usr/sbin/slibclean'.
    Has '/usr/sbin/slibclean' been run by root? [y/n] (n)
    y
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5200, 5300 or 6100
                                          Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2010-08-18_11-42-54AM. Please wait ...
    DISPLAY not set. Please set the DISPLAY and try again.
    Depending on the Unix Shell, you can use one of the following commands as examples to set the DISPLAY environment variable:
    - For csh:                      % setenv DISPLAY 192.168.1.128:0.0
    - For sh, ksh and bash:         $ DISPLAY=192.168.1.128:0.0; export DISPLAY
    Use the following command to see what shell is being used:
            echo $SHELL
    Use the following command to view the current DISPLAY environment variable setting:
            echo $DISPLAY
    - Make sure that client users are authorized to connect to the X Server.
    To enable client users to access the X Server, open an xterm, dtterm or xconsole as the user that started the session and type the following command:
    % xhost +
    To test that the DISPLAY environment variable is set correctly, run a X11 based program that comes with the native operating system such as 'xclock':
            % <full path to xclock.. see below>
    If you are not able to run xclock successfully, please refer to your PC-X Server or OS vendor for further assistance.
    Typical path for xclock: /usr/bin/X11/xclock
    SAPDEVQA:oraird 9>
    Dear Mitra ,
    I can resolve the xclock issue ... no problem ..........
    but my doubt was Ora log was storing tmp directory ....... Kindly advise .......
    Regards
    Sathies

  • Need to upgrde db patch from 16.0.00.01 to 02

    Hi All,
    What are the steps to follow to upgrade patch from 16.0.00.01 to 16.0.00.02.
    Regards,
    Karthik.

    Hello,
    I'd say the main SAP Note you have to keep in mind here regarding updating the ASE in a Business Suite environment, is the one Victoria has mentioned above:
    SAP Note 1982469  - SYB: Updating SAP ASE with saphostctrl / sapdbctrl
    That Note includes links to all Notes related to the update subject (including the SAP Note 1590719 ).
    The section "Download the software from the SAP Service Marketplace" point to the link and details how to check and get the latest ASE and DBCLIENT (which includes the ODBC and JDBC drivers) patches available.
    Currently , for ASE 15.7:
    ASE: Sybase ASE 15.7 FOR BUS. SUITE SP133
    DBCLIENT: Sybase ASE 15.7 FOR BUS. SUITE DBCLIENT.SAR SP17 PL0
    For ASE 16.0:
    ASE: Patch PL01 for ASEBS160 SP01
    DBCLIENT: ASEBC1600002 (SP01 PL02)
    HTH
    Cris

  • I made a MS patch-changer selecting ANY patch FROM MY KEYBOARD'S KEYS!

    Love the Nord Electro 3, hate the sequential up-down button for patch changes, especially with up to 20 per song. Almost decided to sell it and go back to the Nord Stage I had before, sacrificing sound quality for rapid and flexible patch changing abilities, but I just made a MainStage-based patch changer for the Nord Electro 3 that can select any Nord patch from the Nord's keyboard. So Cool! Chances are I keep this beloved Nord now!!!
    I've recieved so much help that I'm trying to be a giver here ....though maybe this is rookie stuff to the people here, it was a new level for me, so maybe it'll help someone....
    It took a long time to figure out, but I decided finally not to worry about changing various (not sequential) MainStage patches from keyboard keys because I couldn't find a way, but just to make a way to choose NE patches WITH THE Nord's KEYS SENDING WHATEVER PROGRAM CHANGES needed to select a patch no matter where it is in the Nord -- this way I could choose any patch easily from the Nord keyboard keys instead of sequentially stepping through patches with two mapped up/down MS keys, or with the Mac's arrows, or hunting for a computer keyboard button.
    I learned the bottom 8 keys of the Nord into 8 buttons in MS, then for each button mapped it to Send to All --> Nord Electro (destination) --> Program Change. Then I "mapped parameter" to whatever Program change number would select the patch where it's sitting in the Nord's patch banks. If it was PC 9 then the values would be 9 and 9. Pressing that keyboard key (F#0 in my case) while playing and having MS in Perform Mode would then switch my Nord to patch 5-B in the Electro, which is the Nord's PC9 location. It was a little tricky to figure out that I best go into the parameter graph and change the top and bottom numbers to 9, in this case. For some reason it defaults to 8 bottom and 9 top if choosing PC 9 outside the graph. It took some mousing sometime to get them the same.
    Note: NO patch changer in layout, NO channel strips, JUST the keyboard and the 8 buttons. Also for some odd reason it does NOT work in Edit mode, MS has to be in Perform or Full Screen mode.
    Granted, the number of patches you can choose is limited to the number of keyboard keys you want to reserve for this purpose. If I can give up more keys I might do 8 more to get 16 program-changing keys.
    Anyway it's great to be able to choose whatever sound I want in the Electro 3 instantly without having to madly push an up/down button on the rig -- organ, Shodes, Mellotron, choir sample, no matter where it happens to reside in the Nord's banks. Cool!
    What I couldn't figure out but might do next is to see if there's a way to use this tool, but also choose a MainStage synth patch or three from Program-changing keys without disrupting the works. I tried for a long time but couldn't find a mapping that would send something that would end up giving me a particular PC-mapoped Nord+MainStage layer -- that's probably to much. So I might default to also having a field with a patch changer window, a couple keyboard keys mapped to up/down, and just choosing up or down instead of a particular patch number or name. Dunno.
    I can post or e-mail the concert if it helps anyone.
    Neil

    You may have to call back and tell the answering party you have an
    existing open case involving a repair; tell them the 'case number' or
    'incident number' assigned your initial repair by AppleCare, and say
    if there is a problem, you've already paid; and 'please connect me to
    the supervisor.'
    A logic board issue could certainly be the cause of bizarre keyboard errors.

  • Newly created tracks (audio or aux) default to names/patches from old deleted tracks?

    Hey all. I was an extremely heavy user of Logic 9 and still am of X, and I've worked out more problems than I care to remember in both programs, but this one has me totally stumped.
    When I create new tracks, they're using patches from old tracks I've already deleted. There are not saved patches either-- Logic is just remembering the names, effects, and routing of tracks I deleted earlier in my work session and using them instead of clean tracks. Create a new auxillary track? It defaults to Ultrabeat inputs (UB 13-14, let's say) and various effects (Bitcrusher, Chorus, etc) that were used on long-since-deleted Drum Machine tracks. Create a set of new audio tracks? They use the names ("Luke Vox", "Nick Clean Vox") and effects of old, long-deleted audio tracks that I used to have.
    This is a project file I got from a friend who is not necessarily as well versed in Logic X so it's entirely possible that something just got ticked or routed weirdly or who knows what. Any ideas?
    Logic X 10.1.1
    2 x 2.8GHz Quad-Core Intel Xeon
    12GB 800Hz DDR2 RAM
    Plenty of leftover storage on the drive.

    Hi
    Go to File:Project Settings:Audio
    Do you by any chance have Automatic Management of Channel Strip Objects unchecked?
    CCT

  • [svn:fx-3.x] 11842: Submit Window/ WindowedApplication patch from Beau Scott to the 3.x branch.

    Revision: 11842
    Revision: 11842
    Author:   [email protected]
    Date:     2009-11-16 08:45:39 -0800 (Mon, 16 Nov 2009)
    Log Message:
    Submit Window/WindowedApplication patch from Beau Scott to the 3.x branch.
    Instead of using rawChildren.addChildAt() to add a non-content child, use rawChildren.addChild() and then set the child's index using rawChildren.setChildIndex().
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-16464
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16464
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/airframework/src/mx/core/Window.as
        flex/sdk/branches/3.x/frameworks/projects/airframework/src/mx/core/WindowedApplication.as

    Have you tried adding the following css selector to your css file.
    .nav-bar a {
        text-align: center;
    or insert it in the <style> tag you have on the page:
      <style type="text/css">
      body {
        margin-left: 200px;
      .n {
        text-align: center;
    .nav-bar a {
        text-align: center;
      </style>

  • Trying to Patch from EM, now nothing working

    Hi,
    I was using the Deployment tab from EM to apply a patch to the 10.1.4.0 DB and I went through the steps in setting up the job (total of 6). I was doing this from my laptop and it seems like when the Job was running, it downloaded the file from metalink and extracted it on the Linux Server. Then I waiting for about 10 minutes and tried to access the EM again and I could not get in. The error I was getting was:
    503 Service Unavailable
    Servlet error: Service is not initialized correctly. Verify that the repository connection information provided is correct.
    Then I noticed that the DB was still shutdown, and then I assumed that the patch job was still running so I let it run. I let it go for about 30 min, and I still did not recieve any emails telling me that the job ran perfectly. I tried to look for some sort of log file that would maybe tell me if the job failed or if the patch failed or was still running but nothing. So now I can not even log back into my EM.
    So my first question is if the EM can allow us to patch then where do I see some sort of log file telling me what is going. If I am patching the DB like Oracle recommends then why would they allow me to do this from the site since the EM is connecting to this DB. So essentially the EM will fail cause the DB will be shutdown!!! So now I am trying to test the agent and OMS and I am getting nothing. No response however my agent is up and running but no uploads are happening anymore. Below you can see my output from all this. Can anyone tell me what happened and why the patching from EM killed everything for me :( Did I do something wrong???
    Agent Status:
    ./emctl status agent
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.1.0
    OMS Version : 10.2.0.1.0
    Protocol Version : 10.2.0.0.0
    Agent Home : /u01/app/oracle/product/10.2.0/agent10g
    Agent binaries : /u01/app/oracle/product/10.2.0/agent10g
    Agent Process ID : 13174
    Parent Process ID : 13159
    Agent URL : https://sis-tor-em10g.concisetech.local:3872/emd/main/
    Repository URL : https://sis-tor-em10g:1159/em/upload
    Started at : 2007-04-16 12:15:05
    Started by user : oracle
    Last Reload : 2007-04-16 12:15:05
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 58
    Size of XML files pending upload(MB) : 0.54
    Available disk space on upload filesystem : 54.48%
    Last successful heartbeat to OMS : 2007-04-16 12:15:08
    Agent is Running and Ready
    OMS Status:
    ./emctl status oms
    Oracle Enterprise Manager 10g Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Management Server is not functioning because of the following reason:
    Connection to the repository failed. Verify that the repository connection information provided is correct.
    UPLOAD AGENT
    ./emctl upload agent
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    EMD upload error: uploadXMLFiles skipped :: OMS version not checked yet..
    Message was edited by:
    RG

    Seems you are trying tp patch your repository database, If you want to patch the repository datbase then stop all opm process , agent and patch the repositort database from OUI
    You can patch the database from GC but not the repository database.

  • Unable to download patches from analyze result

    This morning I tried to download a list of patches returned by smpatch analyze but most of them errored out with the error patch not found. Is there a problem with the patch database server?

    i believe this is a side effect of patch 119108-03 look at the patch details. i'm not sure myself how to resolve this issue. and i've got the problem now on 2 Sun v40z and a W2100z. here's the relevant information hopefully someone is watching this list!
    [ninesixeight]
    [root]
    [root-137]:smpatch get
    patchpro.backout.directory - ""
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source - https://updateserver.sun.com/solaris/
    patchpro.patchset - patchdb
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""
    patchpro.sun.passwd **** ****
    patchpro.sun.user - ""
    [ninesixeight]
    [root]
    [root-138]:smpatch analyze
    120132-01 SunOS 5.10_x86: patch e1000g driver
    119108-03 SunOS 5.10_x86, Sun Update Connection Client, System Edition 1.0
    118993-03 SunOS 5.10_x86: /kernel/misc/scsi patch
    119688-01 SunOS 5.10_x86: /usr/lib/inet/in.mpathd patch
    120252-01 SunOS 5.10_x86: st & mt patch
    118860-01 SunOS 5.10_x86: usbkbm patch
    119857-01 SunOS 5.10_x86: pboot hangs on memory check
    120102-01 SunOS 5.10_x86: patch usr/lib/libsmedia.so.1
    120202-01 X11 6.8.0_x86: Xorg client libraries patch
    119118-03 Evolution 1.4.6_x86 patch
    119541-02 GNOME 2.6.0_x86: Gnome Dtlogin configuration Patch
    119413-04 GNOME 2.6.0_x86: Nautilus libraries Patch
    119116-08 Mozilla 1.7_x86 patch
    119904-01 Openwindows 3.7.3_x86: Xview Patch
    [ninesixeight]
    [root]
    [root-139]:smpatch update
    119108-03 has been validated.
    119118-03 has been validated.
    119116-08 has been validated.
    119904-01 has been validated.
    Installing patches from /var/sadm/spool...
    WARNING: The installer cannot find the patch.
    119108-03 has been applied.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    119118-03 has been applied.
    WARNING: The installer cannot find the patch.
    WARNING: The installer cannot find the patch.
    119116-08 has been applied.
    119904-01 has been applied.
    /var/sadm/spool/patchpro_dnld_2005.07.26@16:42:17:EDT.txt has been moved to /var/sadm/spool/patchproSequester/patchpro_dnld_2005.07.26@16:42:17:EDT.txt
    [ninesixeight]
    [root]
    [root-140]:smpatch analyze
    Failure: Cannot connect to retrieve Database/current.zip: Server returned HTTP response code: 403 for URL: https://getupdates.sun.com/solaris/
    [ninesixeight]
    [root]
    [root-141]:smpatch get
    patchpro.backout.directory - ""
    patchpro.download.directory - /var/sadm/spool
    patchpro.install.types - rebootafter:reconfigafter:standard
    patchpro.patch.source - https://getupdates.sun.com/solaris/
    patchpro.patchset - current
    patchpro.proxy.host - ""
    patchpro.proxy.passwd **** ****
    patchpro.proxy.port - 8080
    patchpro.proxy.user - ""

  • Install patches from cd

    I am new to solaris
    how do i install patches from cd.
    I am running solaris 8 and cannot go to sun web site on the sunblade 150 due to old version of netscape, cannot upgrade to mozilla without patches. Please help

    Depending on what your CD is, the easiest way is to copy the patches off into /tmp, unzip them and cd to /tmp/<patchdir> (where they were unzipped to) and look for a file called install_cluster and run that. That will be the case if it is a 'Sunsolve CD'. You may need, depending on what patches are included, to bring the server down to single user to install.
    If they are just a 'random' bunch of patches then you may have more problems in getting the order in which to install them correct - redoing the patchadd command until all that will install are installed is one, really, REALLY, inelegant way of doing that. Failing that, looking through all the readmes to find out any pre-reqs will be required.

Maybe you are looking for

  • Cannot drag a group of photos to C.D for burning.

      I am trying to burn pictures to a C.D and when I drag and drop a group of them to the renamed Disc in finder they do not show up.  In the past I would drag and drop 100-200 pics from iphoto to a blank C.d with no issues. all of sudden this wont wor

  • Storage bin Linkage

    Hi, We had done posting and valid documents are available and we can see the document showing the storage bin. For a material , storage location can u please share the associated tables link or logic to get the data for pick the storage bin in out pu

  • Asus CM 1630 graphics issue

    The AGP 760/Radeon 3000 integrated graphics card does support World of Warcraft.  The drivers are all up to date as are relevant windows updates, etc.  I can't seem to find a digitally approved driver from Asus either.  Any suggestions? I'm thinking

  • Making a book using iPhoto

    If I make a book using iPhoto, what will it cost me to print a book approximately 30 pages long? Working on a wedding guest book. Also, is there any other information that might be helpful in this process? Thanks ahead of time .

  • My keyboard won't rotate!

    its brand new, and ever since i got it, the keyboard won't rotate... for example, when i get on facebook and try to chat, if i turn the screen to type something, nothing happens, the keyboard just remains horizontal. The same thing happens with googl