Sol 9 smpatch missing some patch names from analyze results

when running smpatch analyze -x idlist=patches_to_analyze (which contains 9 patches), some of the results are missing their names:
bash-2.05# smpatch analyze -x idlist=patches_to_analyze
118322-01
112233-12 SunOS 5.9: Kernel Patch
112912-01 SunOS 5.9: libinetcfg Patch
115683-03 SunOS 5.9: Header files Patch
114344-21 SunOS 5.9: kernel/drv/arp Patch
113207-12
112392-08
117171-17 SunOS 5.9: Kernel Patch
113859-04 SunOS 5.9: Sun ONE Directory Server 5.1 patch
114129-02 SunOS 5.9: multi-terabyte disk support -libuuid patch
114127-03 SunOS 5.9: abi_libefi.so.1 Patch
113073-14 SunOS 5.9: ufs_log patch
112963-25 SunOS 5.9: linker patch
112785-56 X11 6.6.1: Xsun patch
Is this common?
I know that it's working, since it's returning more than the 9 that went in, but I'd like to get the info for every patche returned by the analysis.

Neither of the three patches without descriptions above are listed in the patchdb.zip file. As such there is no metadata available for them. I assume then that they must be listed in the requirements of one or more of the other patches.
Anyway, the reason ther is no descriptions is that they are not listed in the patchdb.zip file and as such no metadata is available to be presented.

Similar Messages

  • FNDLOAD missed some personalization's from 11.5.10.2 to 12.1.2

    Hi,
    I am working on the Upgrade project . We are upgrading the Oracle applications from 11.5.10.2 to 12.1.2 . So i am uploading the all personalizations from 11i to R12.
    I created the ldt file from 11i and and tried to upload in R12. But some of the functions are missed in R12 so the Count is not matched as per the 11i personalizations. I checked in the meta link and they suggested the patch p9446215_R12.FND.B_R12_GENERIC.Zip for R12.
    So i tried with latest lct file which is provided with patch also i am missing some data after uploading in the R12. when i check the log file after uploading the data, it is throwing some error. I am mentioning the error below.
    I tried to Upload form level as well as Function level. In both ways count of personalizations are not matched.
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    module:
    Current system time is 15-FEB-2012 05:24:55
    Uploading from the data file CSXSRISV_15022012_FF.ldt
    Altering database NLS_LANGUAGE environment to AMERICAN
    Dump from LCT/LDT files (/tmp/naga/affrmcus.lct(120.3.12010000.4), CSXSRISV_15022012_FF.ldt) to stage tables
    Dump LCT file /tmp/naga/affrmcus.lct(120.3.12010000.4) into FND_SEED_STAGE_CONFIG
    Dump LDT file CSXSRISV_15022012_FF.ldt into FND_SEED_STAGE_ENTITY
    The value cannot be uploaded without a prepare statement
    The value cannot be uploaded without a prepare statement
    The value cannot be uploaded without a prepare statement
    Dumped the batch (FND_FORM_CUSTOM_RULES 121 , FND_FORM_CUSTOM_SCOPES 281 30 MAINTENANCE_PROTECTION ) into FND_SEED_STAGE_ENTITY
    Upload from stage tables
    Concurrent request completed successfully
    Current system time is 15-FEB-2012 05:25:06
    Thanks on Advance,
    Nag.

    For Download:
    FNDLOAD <username>/<password> 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct <ldt file name> FND_FORM_CUSTOM_RULES form_name=<form_name>Could you please confirm that the data has been downloaded successfully in the ldt file?
    In the custom mode i tried in both ways like custom_mode=FORCE as well as UPLOAD_MODE=REPLACE. but there is no change in the uploaded R12 files.What if you use "WARNING=YES" option in the FNDLOAD command, do you get any details in the log?
    Thanks,
    Hussein

  • How to use column name from subquery result set.

    I have these 2 tables
    SQL> select * from temp
      2  ;
    TABLE_NAME                     COLUMN_NAME                    TYPE
    lst                            name                           STATUS
    lst                            val
    SQL> select * from lst;
    TYPE                           NAME
      VAL
    STATUS                         Pending
      Pendiente
    STATUS                         Closed
      Cerrado
    STATUS                         ABC
      ABSI want to select column_name from temp table and generate select statements.
    select name from lst;
    select (select COLUMN_NAME from temp where rownum<2) from lst;
    SQL> select (select COLUMN_NAME from temp where rownum<2) from lst;
    (SELECTCOLUMN_NAMEFROMTEMPWHER
    name
    name
    nameoutput I expect is
    SQL> select name from lst;
    NAME
    Pending
    Closed
    ABC

    MichaelS wrote:
    Can I do it using SQLe.g.:)
    I was just about to post a similar approach (which should work from 10.2 and upwards) :
    SQL> SELECT value(x).getRootElement() col_name,
      2         extractvalue(value(x),'*') col_value
      3  FROM ( SELECT column_name, table_name
      4         FROM temp
      5         WHERE rownum = 1
      6       ) v
      7     , XMLTable(
      8        '/ROWSET/ROW/*'
      9        passing dbms_xmlgen.getXMLType('SELECT '||v.column_name||' FROM '||v.table_name)
    10       ) x
    11  ;
    COL_NAME        COL_VALUE
    NAME            Pending
    NAME            Closed
    NAME            ABC

  • Missing some error messages from the error stack

    Hi all,
    We use some PL/SQL code to load data in to the database.
    One value was to large for a column.
    I got the errors below, but there are some messages missing from the alert file and from the trace file.
    Error messages:
    ORA-06502: PL/SQL: numeric or value error
    ORA-01401: inserted value too large for column
    That's it, noting else. I can't see anything else in the alert log either.
    No trace files either.
    Can someone please explain to me why am i missing the rest of the error stack, like the column name where the issue occurs?
    Thanks.

    Peter,
    No your code won't work the same in 10g as it would in 9i and earlier. The -1401 exception is not secretly catching -12899 now. So that means it could be an upgrade issue: you'd have to manually change the code when upgrading to 10.
    Here is a little test on 10.2.0.1:
    SQL> create table t
      2  ( id number(2)
      3  , name varchar2(2)
      4  )
      5  /
    Tabel is aangemaakt.
    SQL> declare
      2    my_exception exception;
      3    pragma exception_init(my_exception,-1401);
      4  begin
      5    insert into t values (99,'AAA');
      6  exception
      7  when my_exception then
      8    dbms_output.put_line('my error message');
      9  end;
    10  /
    declare
    FOUT in regel 1:
    .ORA-12899: waarde te groot voor kolom "RWIJK"."T"."NAME" (huidige waarde: 3, maximumwaarde: 2)
    ORA-06512: in regel 5Regards,
    Rob.

  • 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 - ""

  • Logic missing some patches

    I bought and downloaded Logic Pro. Some of the patches seem to be missing something. Half the notes on the keyboard DO NOT WORK.  Its like all the elements that make up some of the patches did not complete. Of all the sounds in the app, I think I have found about 10 that have this problem. How I fix this. Thanks.

    Here is an example of a file that plays 5 notes across the whole 61 note keyboard. Its looking for more files that make up the complete patch.

  • Missing Some Audio Tracks from Premeire Queue'd videos

    Hi I am useing Premeire CC 2014 to Queue some videos that have 4-8 tracks of audio. They play fine in Premeire. When I Queue the clips in AME CC 2014 and then render them with a H264 codec transcode, I am only getting the last track (Music) in the outputted video. I am missing the voice over tracks.
    Not sure why this is happening? Any suggestions. I am using the Audio Track Mixer with Submixes and effects on the Submix in Premiere. Perhaps there is an issue with this.
    Thanks
    DB

    It can be done with QuickTime Pro
    <http://store.apple.com/us/product/D3380Z/A>
    "Show Movie Properties" in "Window" menu, detete the unwanted track, then "Save" in "File" menu.
    You may need to install Perian
    <http://www.perian.org>

  • Can't see some tables name from connection navigation

    I use sql developer to connect 10g database, I have 50 tables within a user, but it only shows 27 tables. I don't know why. Can anyone tell me ? Thx

    We have 2 oracle10g database.
    If I use Oracle Enterprise Manage(OEM), and login as user A, I can see all tables in both of 2 oracle10g database. but if I use SQL developer connecting with user A, SQL developer can see only part of tables ( about 1/2) in one database and all tables in another databse. I don't know why. but this two database has replication relationship. As I opinion, if I can see in OEM, I can also see in SQL developer.
    anyway, I didn't apply filter. And my privilege is ok. Because I use below in user A:
    select table_name from user_table. this select is only select the tables belong to user A, it has the same result with OEM.
    Thanks anyway

  • Getting table name from a query

    Hi, I'm trying to get the table name from my sql query
    My code is as follows;
    ResultSetMetaData metadata = rs.getMetaData();
    for (int i = 1; i < metadata.getColumnCount(); i++)
    System.out.println(metadata.getTableName(i));
    I just get a blank output. Yet my sql query executes and I can pull down the records, and grab the column names from the result sets.
    Any ideas on how I can get the table name for the columns. The reason being is on one of my querys I'm using join statements and i need to retrieve the table name for the column i'm displaying, as some tables have similar column names.
    Thanks in advance.

    Hi,
    What db are you using?
    I also get a blank output with ResultSetMetaData.getTableName because Oracle doesn't implement this method.
    Why do you not know the table name anyway?
    regards
    Nick

  • Just bought some domaine names, but can't see them. they are redirected. best guess it is something embedded in firefox. i can't see anything though. help!

    I bought some domain names from Godaddy. when i type the name into my firefox address line, instead of going to the parking page at godaddy, where it should go, it gets redirected to searchpagefix and there is a message on the side that says looksafe has blocked a hijacking page, etc.. i've spent hours on the phone with godaddy. they say the problem is not on their end. they see my domain name (peter-maloney.com) on their parking page. i spent hours on the phone with Norton support, my security software. They ran tests and diagnostics and found nothing. I downloaded ad-aware and ran that, nothing. I looked for looksafe to uninstall, etc. and it doesn't show up anywhere on my windows 7 machine. any suggestions? did this looksafe thing somehow get embedded in firefox? do i need to reinstall firefox? would i lose all my favorites?

    Bad redirects can result from a variety of causes, including (1) system level malware, (2) system level settings changes, (3) bad Firefox add-on, (4) Firefox settings changes, (5) other (depending on the nature of the redirect).
    Here's what I suggest for tracking it down:
    (1) Open the Windows '''Control Panel''', Uninstall a Program. After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help in smoking out undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    (2) Then, in Firefox, open the '''Add-ons page''' using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Plugins. Set nonessential and unrecognized plugins to "Never Activate".
    In the left column, click Extensions. Then, if in doubt, disable (or Remove, if possible) unrecognized and unwanted extensions.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    (3) Check your '''Firefox connection setting''' in the Options dialog here:
    "3-bar" menu button (or Tools menu) > Options > Advanced > Network mini-tab > "Settings" button
    The default of "Use system proxy settings" should piggyback on your Windows/IE "LAN" connection settings, but you also can try "No Proxy" to see whether that works better.
    (4) Search for remaining issues with the '''scanning/cleaning tools''' listed in our support article: [[Troubleshoot Firefox issues caused by malware]].
    Are you able to get rid of the unwanted redirects?

  • Help with dynamic checkbox from database results

    Hi,
    I am creating some dynamic checkboxes from the results of a database read to sqlite.  I am able to get the data and the correct number of checkboxes is being created but I'm having a problem populating the labels for the checkboxes.  Here is the section of code that gets the results from the database and creates the checkboxes.
                    var result:Array = stmt.getResult().data;
                    for each( var obj:Object in result )
                        var cb:CheckBox = new CheckBox();
                        cb.label = obj.toString();
                        cb.setStyle("color", 0x00593B);
                        cb.setStyle("symbolColor", 0x000000);
                        container.contentGroup.addElement(cb);                   
    Neil

    This was answered on another forum for me.
    The line cb.label = obj.toString();
    needed to be changed to the data.
    cb.label=obj.myDatabaseFieldName;
    myDatabaseFieldName would be whatever column you are pulling the data in from and should be the actual name in the table.
    Neil

  • Apple recently replaced my broken iPhone 5 with a new one. I backed up all my stuff in iCloud. When I set up the new phone I apparently used a back up from an earlier date. Now I am missing some of my stuff. How do I go back and use the most current I cln

    Apple recently replaced my broken iPhone 5 with a new one. I backed up the contents of my phone with iCloud.
    When setting up my new phone I used an iCloud back up from an earlier date. Now I am missing some of my most recent stuff. How
    Do I go back to use the proper iCloud back up to set up my new phone?

    Tap settings> general> reset> erase all content and settings...then you'll have a chance to setuo your phone again

  • My iPad air is missing some apps from my phone. It keeps saying, " there is not enough storage available to download..."

    My iPad air is missing some apps from my phone. It keeps saying, " there is not enough storage available to download...." I purchased additional storage twice, my device now shows 18GB free of a total 25GB, and still I cannot download apps I've had for yrs

    iCloud space is for backup only.
    You need more local storage; free up space on iPad:
    Settings>General>Usage>Storage>Delete what is not needed to free up space on iPad.

  • PDF missing some text from FM 9 using Acrobat 9.2

    When I generate a PDF frome FM 9, it's missing some of the text (non-bold)
    and one of the chapters is missing the chapter number in the TOC.
    It worked fine with Acrobat 6.0, but now I'm using Acrobat 9.2 and some
    text is missing. Any suggestions?  Thanks!

    You do not mention your OS, but there is a hot fix for some problems with postscript drivers that cause missing data in pdfs.
    http://support.microsoft.com/?id=952909

  • I just purchased a macbook pro and was wondering about an install disk.  It seems to be missing some of the applications that should be on it from a fresh install.  I was wondering if I would have to purchase a new OS and do a fresh install?

    I just purchased a macbook pro and was wondering about an install disk.  It seems to be missing some of the applications that should be on it from a fresh install.  I was wondering if I would have to purchase a new OS and do a fresh install?

    Ahhh, well  you never mentioned that before. You need to contact your friend from whom you purchased the computer. He/She should have any and all install discs for any third-party software included as well as for OS X and the original pre-installed software.
    Apple will gladly sell you replacements for any discs that did come with the computer originally, but they will not do anything for you because you purchased the computer used. If it's in warranty still, then you can get any warranty covered things taken care of through AppleCare:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support visit online support site.

Maybe you are looking for

  • My firefox will not open.

    My firefox was working the other day but will not open anymore. I have tried uninstalling and reinstalling but that doesn't work. It sometimes even says firefox needs to be closed before uninstalling even when is not open and after I crt+alt+delete a

  • How do I create Local Network Home Folders for Users from an Active Directory binding?

    My situation is this... I run an iMac lab at my school.  I have a server set up to manage the network user accounts in the lab.  Currently, I can sucessfully create Local Network Users and log in to them from any of the iMacs.  My school has an Activ

  • Can't remove Criteria box under find - Mavericks, CC

    I am trying to organize a large number of files using Bridge and keywords. it was working just fine when I would right click on a keyword and find that way. I typed a search term in the search box in the top right corner. Now when I right click a key

  • Alv grid control toolbar exclude generic functions

    Hi, I'm attempting to exclude certain functions from the toolbar of an (editable) alv grid (of class cl_gui_alv_grid). The problem is that the  buttons still show on the toolbar. My program is based on the SAP example program 'BCALV_EDIT_03'. It woul

  • Updating combo box in JTable

    While updating combo box in a JTable, after updating the first row when pointer (logical) goes to the second row it says value already exists. Kindly let me know if anyone has the solution for the same.