RH7.3/8i glibc stubs patch fails with "basename: too few arguments"

Running ./setup_stubs.sh from glibc-2_1_3-stubs.tar and in the middle of the scrolling screens of printlns I get a bunch of these:
checking file '/opt/ora8/otrace/demo/atmoci.mk'...OK.
checking file '/opt/ora8/otrace/lib/env_otrace.mk'...OK.
checking file '/opt/ora8/otrace/lib/ins_otrace.mk'...OK.
Rebuilding client shared library...expr: syntax error
expr: syntax error
basename: too few arguments
Try `basename --help' for more information.
done.
Relinking executables:
running 'ins_rdbms.mk'...done.
running 'ins_net_client.mk'...done.
This has happened on 3 different servers that I'm aware of. We didn't notice the errors at first (since the install starts and ends OK I guess), but I just found them after investingating why these linux boxes all hang on OS shutdown (on the killall line).
I found one message in google from someone who had the same problem. Their solution was to reinstall oracle after applying a different (non-oracle) glibc compatibiliyt path to linux. I don't want to do that, any way to fix these patch scripts?

No, I have not been able to track down any information on this and it is still occuring. The work around for shutting down the OS is to call /etc/init.d/oracle stop, wait for it to hang, control-c, run /etc/init.d/oracle start, once it is up immediately run /etc/init.d/oracle stop again and it won't hang this time. Then you can shutdown the OS properly.

Similar Messages

  • Patch failing with Class not found: oracle.apps.ad.jri.adjcopy

    Hi.
    Running a patch today and it is failing with:
    Class not found: oracle.apps.ad.jri.adjcopy
    The log states this:
    STRT_TASK: [Run adjcopy.class] [] [Tue Mar 02 2010 13:18:22]
    Running adjcopy.class:
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Error:
    Program exited with status 1
    Cause: The program terminated, returning status code 1.
    adjava -mx512m -nojit oracle.apps.ad.jri.adjcopy @D:\oracle\testappl\admin\TEST\out\apps.cmd
    Calling D:\oracle\testcomn\util\jre\1.1.8\bin\jre.exe ...
    Class not found: oracle.apps.ad.jri.adjcopy
    AD Run Java Command is complete.
    D:\oracle\testappl\admin\TEST\out>
    I have tried running maually and still no luck.
    It is a frteshly cloned environment. Autoconfig has been run successfully.
    The only help from Metalink was that I have unzipped the patches in a folfer with space in it. So I renamed folder but still same error.
    The patch is 7415848 ATG Framework Patch.
    oracle 11.5.10.2, Windows 2003, RDBMS 10.2.
    Thanks in advance,
    DA
    Another thing I tried was to relink, but got the following:
    Do you wish to force regeneration of all jar files? [No] ?
    Generating any out of date or missing jar files.
    Signing product JAR files in JAVA_TOP -
    D:\oracle\testcomn\java
    using entity Customer and certificate 1.
    Class not found: oracle.apps.ad.jri.adjversion
    AD Administration error:
    aiojavaGetJavaVersion(), ERROR [code= 1] creating javaversionFile.
    Error : java version file format not correct
    adogjf() Unable to generate jar files under JAVA_TOP
    Backing up restart files, if any......Done.
    You should check the file
    D:\oracle\testappl\admin\TEST\log\adadmin.log
    for errors.
    D:\oracle\testappl\ad\11.5.0\bin>
    Edited by: Dan A on Mar 2, 2010 10:03 AM

    Dan,
    Please see if these documents are applicable.
    Note: 392870.1 - Generate product JAR files aiojavaGetJavaVersion(),ERROR creating javaVersionFile
    Note: 264911.1 - adutilities error out aiojavaGetJavaVersion(), Error creating javaversionFile
    Regards,
    Hussein

  • Update trigger fails with value too large for column error on timestamp

    Hello there,
    I've got a problem with several update triggers. I've several triggers monitoring a set of tables.
    Upon each update the updated data is compared with the current values in the table columns.
    If different values are detected the update timestamp is set with the current_timestamp. That
    way we have a timestamp that reflects real changes in relevant data. I attached an example for
    that kind of trigger below. The triggers on each monitored table only differ in the columns that
    are compared.
    CREATE OR REPLACE TRIGGER T_ava01_obj_cont
    BEFORE UPDATE on ava01_obj_cont
    FOR EACH ROW
    DECLARE
      v_changed  boolean := false;
    BEGIN
      IF NOT v_changed THEN
        v_changed := (:old.cr_adv_id IS NULL AND :new.cr_adv_id IS NOT NULL) OR
                     (:old.cr_adv_id IS NOT NULL AND :new.cr_adv_id IS NULL)OR
                     (:old.cr_adv_id IS NOT NULL AND :new.cr_adv_id IS NOT NULL AND :old.cr_adv_id != :new.cr_adv_id);
      END IF;
      IF NOT v_changed THEN
        v_changed := (:old.is_euzins_relevant IS NULL AND :new.is_euzins_relevant IS NOT NULL) OR
                     (:old.is_euzins_relevant IS NOT NULL AND :new.is_euzins_relevant IS NULL)OR
                     (:old.is_euzins_relevant IS NOT NULL AND :new.is_euzins_relevant IS NOT NULL AND :old.is_euzins_relevant != :new.is_euzins_relevant);
      END IF;
    [.. more values being compared ..]
        IF v_changed THEN
        :new.update_ts := current_timestamp;
      END IF;
    END T_ava01_obj_cont;Really relevant is the statement
    :new.update_ts := current_timestamp;So far so good. The problem is, it works the most of time. Only sometimes it fails with the following error:
    SQL state [72000]; error code [12899]; ORA-12899: value too large for column "LGT_CLASS_AVALOQ"."AVA01_OBJ_CONT"."UPDATE_TS"
    (actual: 28, maximum: 11)
    I can't see how the value systimestamp or current_timestamp (I tried both) should be too large for
    a column defined as TIMESTAMP(6). We've got tables where more updates occur then elsewhere.
    Thats where the most of the errors pop up. Other tables with fewer updates show errors only
    sporadicly or even never. I can't see a kind of error pattern. It's like that every 10.000th update
    or less failes.
    I was desperate enough to try some language dependend transformation like
    IF v_changed THEN
        l_update_date := systimestamp || '';
        select value into l_timestamp_format from nls_database_parameters where parameter = 'NLS_TIMESTAMP_TZ_FORMAT';
        :new.update_ts := to_timestamp_tz(l_update_date, l_timestamp_format);
    END IF;to be sure the format is right. It didn't change a thing.
    We are using Oracle Version 10.2.0.4.0 Production.
    Did anyone encounter that kind of behaviour and solve it? I'm now pretty certain that it has to
    be an oracle bug. What is the forum's opinion on that? Would you suggest to file a bug report?
    Thanks in advance for your help.
    Kind regards
    Jan

    Could you please edit your post and use formatting and tags.  This is pretty much unreadable and the forum boogered up some of your code.
    Instructions are here: http://forums.oracle.com/forums/help.jspa                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Online backup getting failed with error BR0278E - Invalid Argument

    Hi All,
    Online backup in Production system is getting failed when taken using DB13.  Last week the SAP Production Server was migrated to SAN and it was up & running fine.
    SAP System - ECC 6
    OS                - AIX 5.3
    Database      - Oracle 10g
    Even the Archive log backup has been successful, but Online backup is failing.  Following is the error log:
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0057I Backup of database: RTP
    BR0058I BRBACKUP action ID: bebkzprw
    BR0059I BRBACKUP function ID: ant
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: /oracle/RTP/sapbackup/cntrlRTP.dbf
    BR0061I 41 files found for backup, total size 97416.297 MB
    BR0143I Backup type: online
    BR0112I Files will not be compressed
    BR0130I Backup device type: tape
    BR0102I Following backup device will be used: /dev/rmt3.1
    BR0103I Following backup volume will be used: RTPB01
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0208I Volume with name RTPB01 required in device /dev/rmt3.1
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0351I Restoring /oracle/RTP/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt3.1 ...
    BR0241I Checking label on volume in device /dev/rmt3.1
    BR0242I Scratch volume in device /dev/rmt3.1 will be renamed to RTPB01
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0202I Saving /oracle/RTP/sapbackup/.tape.hdr0
    BR0203I to /dev/rmt3.1 ...
    We have checked using different tapes, restarted SAP, etc but could not resolve it.
    Please suggest further.
    Thanks
    Vamsi

    Hi Vamsi
    Please go through below link
    Re: onLine backup fails with error BR0278E
    There is similar problem with the exact error you are facing for online backup and its solution is given in above link.
    Let us know if this information was useful to you.
    with regards,
    Parin Hariyani

  • Compress fails with errno 22: Invalid argument

    Hi all,
    we have a problem with our compress run on ECC 6.0. Database Version is 10.2.0.2.0, brtools Patchlevel is 40. Everytime we try to compress the database it fails with the following error message:
    BR0278E Command output of 'C:\usr\sap\AKE\SYS\exe\uc\NTI386\brtools.exe -f compronly file G:\ORACLE\AKE\SAPDATA4\SR3_3\SR3.DATA3 13254008832 0':
    BR0252E Function fread() failed for 'G:\ORACLE\AKE\SAPDATA4\SR3_3\SR3.DATA3' at location only_compress-4
    BR0253E errno 22: Invalid argument
    Any help is greatly aprreciated!
    Regards,
    Michael

    Hi Michael,
    How do you make your backups (which options for brbackup? Using RMAN or 3rd party software via backint?). The "compress only" run is useful only if you use the O/S level storage utilities (cpio or dd) for the backup, so it might not even be necessary.
    Running the compress-only with BR tracing enabled might also shed some light on the error (SET BR_TRACE=15, see note 29321).
    Also, just in case, please do check the "Maximize Throughput for Network Applications" setting as per note 171085.
    Regards,
    Mark

  • Patching failed with strange deps.

    Using ZLM72 fully patched and mirrored SLES10-SP2-Updates and OES2-SP1-Updates channels and applied it to my iFolder server running kernel-vmi 0.34, virtualized in esx. Cannot apply these patches cuz of this:
    12 Mar 2009 12:51:07 INFO BundleManager Bundle preparation failed: Unresolved dependencies:
    Updating mono-data-1.2.2-12.22.i586[System packages] to mono-data-1.2.2-12.24.i586[Mandatory Bundles]
    mono-core-1.2.2-12.22.i586[Mandatory Bundles] provides mono-core == 1.2.2-12.22, but another version of that package is already installed.
    mono-core-1.2.2-12.22.i586[System packages] provides mono-core == 1.2.2-12.22, but is scheduled to be uninstalled.
    Can't satisfy requirement mono-core == 1.2.2-12.22 for mono-data-1.2.2-12.22.i586[System packages]
    Can't install mono-data-1.2.2-12.24.i586[Mandatory Bundles], since mono-data-1.2.2-12.24.i586[Mandatory Bundles] is already marked as needing to be installed
    Marking this resolution attempt as invalid.
    12 Mar 2009 12:51:07 ERROR ScheduledActionsModule Novell.Zenworks.Zmd.BUNDLE_INSTALL_ERROR: Novell.Zenworks.Zmd.BUNDLE_INSTALL_ERROR
    Novell.Zenworks.Zmd.Public.ZenException: Failed to prepare bundles for install: Unresolved dependencies:
    Updating mono-data-1.2.2-12.22.i586[System packages] to mono-data-1.2.2-12.24.i586[Mandatory Bundles]
    mono-core-1.2.2-12.22.i586[Mandatory Bundles] provides mono-core == 1.2.2-12.22, but another version of that package is already installed.
    mono-core-1.2.2-12.22.i586[System packages] provides mono-core == 1.2.2-12.22, but is scheduled to be uninstalled.
    Can't satisfy requirement mono-core == 1.2.2-12.22 for mono-data-1.2.2-12.22.i586[System packages]
    Can't install mono-data-1.2.2-12.24.i586[Mandatory Bundles], since mono-data-1.2.2-12.24.i586[Mandatory Bundles] is already marked as needing to be installed
    Marking this resolution attempt as invalid.
    Any ideas?

    Hi again, sorry for delay
    allow-rebuild false
    compute-package-device-updates false
    show-updates-icon false
    store-file-deps true
    So I guess its enabled then?
    "brunold" <[email protected]> wrote in message
    news:[email protected]..
    >
    > Anders,
    >
    > check if you have the store-file-deps enabled in the zcc /
    > configuration / zlm server preferences.
    >
    > I guess it is disabled and therefor not the full rpm information was
    > stored in zlm when you uploaded the sles 10 and oes 2 distribution and
    > now it fails to solve some dependencies.
    >
    > In case you have a sles 10 sp2 network installation source add that as
    > another source as well via yast / software / installation sources, wait
    > a few seconds, refresh the zlm client and see if that would work. That
    > would verify the store-file-deps theory.
    >
    > Rainer
    >
    >
    > --
    > brunold
    > ------------------------------------------------------------------------
    > brunold's Profile: http://forums.novell.com/member.php?userid=562
    > View this thread: http://forums.novell.com/showthread.php?t=363701
    >

  • JSFL function exportPNG failing with "bitmap too large" error.

    I'm trying to export to PNG from the JSFL document.exportPNG function with 'bCurrentPNGSettings' but it fails. Flash keeps complaining that "The bitmap is too large. The largest bitmap that can be created is 8000x800 pixels."
    The width x height of the document is set to 1920x1080 and I've tried modifying the publish profile appropriately. Still no-dice.
    If I set 'bCurrentPNGSettings' to false so that the export dialog appears it pops up with the correct width and height; clicking OK exports properly.
    Anyone have any ideas?
    Cheers.

    I am experiencing a similar problem. I have hundreds of symbols, most of which export just fine. A few symbols, however, do not. Although these symbols are typically modest in size, 1x49 pixels for example, Flash throws the error "The bitmap is too large. The largest bitmap that can be created is 8000x8000 pixels." which halts the script until it is acknowledged by the user.
    It seems that this "too large" error might appear anytime the width or height is out of range, as in it is either too large OR too small. If you allow the Export PNG dialog box to appear (or manually do a File...Export Image...), it has a Width of 4 pixels. When I try to correct the value to 1 pixel, another error is shown saying "Please enter a number between 4 and 8000." Anything outside this range will not be accepted.
    I also noticed that when I specified "false, true" for the optional 2nd and third parameters, the Export PNG dialog fails to appear.
    I am using Flash Pro CS5 on a PC.
    I tried this using Flash CS4/PC. I had an even worse time with the dialog, as I changed the width and height, it automatically changed the dpi from 72 to whatever value entered.
    So in order for the script to be able to exportPNG on all of the symbols in the library, I have to first check the symbol's dimensions, and either abort the export operation, or correct the values, forcing a minimum dimension of 4 pixels.

  • Expdp failing with snapshot too old error

    Hi,
    We are getting the below errors while migrating partitioned tables using expdp.
    The source and target databases are both running on 10.2.0.5 and the main thing is source database doesn't have any active sessions. This is a clone of a Prod Database and no one is accessing it.
    ORA-31693: Table data object "DPMMGR"."WHSE_CTNR_EVNT_W":"MSG_PRCS_N"."MSG_PRCS_N_DC556" failed to load/unload and is being skipped due to error:
    ORA-02354: error in exporting/importing data
    ORA-01555: snapshot too old: rollback segment number 31 with name "_SYSSMU31$" too small
    ORA-31693: Table data object "DPMMGR"."RLTM_PRDCT_LOG":"RPL_20120814" failed to load/unload and is being skipped due to error:
    ORA-02354: error in exporting/importing data
    ORA-01555: snapshot too old: rollback segment number 14 with name "_SYSSMU14$" too small
    Undo Tablespace has enough space but still the expdp is failing.
    SQL>/
    TABLESPACE Totalspace(MB) Used Space(MB) Freespace(MB) % Used % Free
    UNDO01 145096 115338 29758 79.49 20.51
    SQL> show parameter undo
    NAME TYPE VALUE
    undo_management string AUTO
    undo_retention integer 14400
    undo_tablespace string UNDO01
    Please let me know any workarounds.
    Thanks

    Undo Tablespace has enough space but still the expdp is failing.increasing undo_retention will helps here.
    undo_retention integer 14400currently 4 hr,increase it to 6 hr and try expdp again.

  • Master data failed with  error `too many duplicate records'

    Dear all
    below is error message
                Data records for package 1 selected in PSA -                                             
                error                                                 4 in the update
    LOng text is giving as below
    Error              4 in the update
    Message no. RSAR119
    Diagnosis
    The update delivered the error code                                                   4.
    Procedure
    You can find further information on this error in the error message of the update.
    WOrking on BI - 7.0
    any solutions
    Thanks
    satish .a

    Hi,
    Go through these threads, they have same issue:
    Master data load: Duplicate Records
    Re: Master data info object - duplicate records
    Re: duplicate records in master data info object
    Regards
    Raj Rai

  • Media Encoder failing with AVCHD

    There's been a few discussions about AVCHD but I haven't been able to find any that were resolved. In using AVCHD footage from my Canon C100 I've found that media encoder fails if CUDA hardware acceleration is enabled for the project. Having acceleration disabled slows down my system a lot so I wondered if anybody found a solution?
    I'm using 6.2 on the Mac with a Quadro 4000 GPU.

    Hi Ann
    Good point, I assumed it was the AVCHD footage as I've not had a problem exporting with MPE turned on until using this footage but I just tested some Canon MXF footage from the C300 and AME failed with that too.

  • Patch 9655006 failed with code 135 when applying to Oracle Restart

    Hi all,
    I install Oracle RAC single node version 11.2.0.1 on Linux (kernel 2.6.18).
    I try to apply patch 9655006 (prerequis for upgrade to 11.2.0.2).
    Everything is OK for grid applying with success.
    When I apply this patch to oracle db home, I get :
    Oracle Interim Patch Installer version 11.2.0.1.5
    Copyright (c) 2010, Oracle Corporation. All rights reserved.
    Argument(s) Error... Given 'ocmrf' file does not exists.
    Please check the arguments and try again.
    OPatch failed with error code 135
    I've given the complete path and filename (same as for grid applying).
    I've found A document [ID 1283954.1], but not useful in my case.
    Any ideas for workaround ?
    TIA
    yang
    ps. this does not occur when applying to a RAC with 2 nodes.

    yang wrote:
    Hi all,
    I install Oracle RAC single node version 11.2.0.1 on Linux (kernel 2.6.18).
    I try to apply patch 9655006 (prerequis for upgrade to 11.2.0.2).
    Everything is OK for grid applying with success.
    When I apply this patch to oracle db home, I get :
    Oracle Interim Patch Installer version 11.2.0.1.5
    Copyright (c) 2010, Oracle Corporation. All rights reserved.
    Argument(s) Error... Given 'ocmrf' file does not exists.
    Please check the arguments and try again.
    OPatch failed with error code 135
    I've given the complete path and filename (same as for grid applying).
    I've found A document [ID 1283954.1], but not useful in my case.
    Any ideas for workaround ?
    TIA
    yang
    ps. this does not occur when applying to a RAC with 2 nodes.Hello Yang,
    Could you try it again with debug info? Before you run the opatch, run the following:
    $ set OPATCH_DEBUG=TRUE; export OPATCH_DEBUG
    Regards
    Gokhan

  • Patch p11879896_112020_Generic failed with req comp missing error

    Hi,
    Applying the subject patch on Linux 32 with
    opatch apply -invPtrLoc /u01/app/oraInventory/oraInst.loc
    failed (with the message
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ] ),
    the debug follows below. Any idea?
    Thank you.
    Anatoliy
    _osArch is
    /u01/app/oracle/product/11.2.0/home11gR2/jdk/bin/java -mx96m -cp /u01/app/oracle/product/11.2.0/home11gR2/OPatch/ocm/lib/emocmutl.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/share.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/srvm.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/orai18n-mapping.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/xmlparserv2.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatch.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchutil.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchprereq.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchactions.jar: -DOPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2 -DOPatch.DEBUG=true -DOPatch.RUNNING_DIR=/u01/app/oracle/product/11.2.0/home11gR2/OPatch oracle/opatch/OPatch apply -invPtrLoc /u01/app/oraInventory/oraInst.loc
    Invoking OPatch 11.1.0.6.6
    Oracle Interim Patch Installer version 11.1.0.6.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    CmdLineParser::initRuntimeOptions()
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$StringArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$StringArguments
    There are 7 fields defined in this class.
    adding option "fp"
    adding option "dp"
    adding option "fr"
    adding option "dr"
    adding option "mp"
    adding option "phbasedir"
    adding option "phbasefile"
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$BooleanArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$BooleanArguments
    There are 2 fields defined in this class.
    adding option "delay_link"
    adding option "cmd_end"
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$IntegerArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$IntegerArguments
    There are 2 fields defined in this class.
    adding option "integerarg1"
    adding option "integerarg2"
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$StringtegerArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$StringtegerArguments
    There are 5 fields defined in this class.
    adding option "stringtegerarg1"
    adding option "stringtegerarg2"
    adding option "ps"
    adding option "mp"
    adding option "xmlinput"
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$DoubleArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$DoubleArguments
    There are 2 fields defined in this class.
    adding option "doublearg1"
    adding option "doublearg2"
    Checking on class oracle.opatch.opatchutil.CmdLineOptions$RawStringArguments
    Get list of fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$RawStringArguments
    There are 1 fields defined in this class.
    adding option "cmd"
    CmdLineHelper::loadRuntimeOption() for Class "oracle.opatch.opatchutil.OUSession"
    initializing String option 0, fp
    initializing String option 1, dp
    initializing String option 2, fr
    initializing String option 3, dr
    initializing String option 4, mp
    initializing String option 5, phbasedir
    initializing String option 6, phbasefile
    done init. String arg.
    initializing Boolean option 0, delay_link
    initializing Boolean option 1, cmd_end
    done init. Boolean arg.
    initializing Integer option 0, integerarg1
    initializing Integer option 1, integerarg2
    done init. Integer arg.
    initializing StringTeger option 0, stringtegerarg1
    initializing StringTeger option 1, stringtegerarg2
    initializing StringTeger option 2, ps
    initializing StringTeger option 3, mp
    initializing StringTeger option 4, xmlinput
    done init. SringTeger arg.
    initializing Double option 0, doublearg1
    initializing Double option 1, doublearg2
    done init. Double arg.
    initializing RawString option 0, cmd
    done init. RawString arg.
    CmdLineHelper::loadRuntimeOption() for Class "oracle.opatch.opatchutil.OUSession", done.
    CmdLineParser::initRuntimeOptions()
    Checking on class oracle.opatch.opatchprereq.CmdLineOptions$StringArguments
    Get list of fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$StringArguments
    There are 3 fields defined in this class.
    adding option "phbasedir"
    adding option "patchids"
    adding option "phbasefile"
    Checking on class oracle.opatch.opatchprereq.CmdLineOptions$BooleanArguments
    Get list of fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$BooleanArguments
    There are 2 fields defined in this class.
    adding option "booleanarg1"
    adding option "booleanarg2"
    Checking on class oracle.opatch.opatchprereq.CmdLineOptions$IntegerArguments
    Get list of fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$IntegerArguments
    There are 2 fields defined in this class.
    adding option "integerarg1"
    adding option "integerarg2"
    Checking on class oracle.opatch.opatchprereq.CmdLineOptions$StringtegerArguments
    Get list of fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$StringtegerArguments
    There are 2 fields defined in this class.
    adding option "stringtegerarg1"
    adding option "stringtegerarg2"
    Checking on class oracle.opatch.opatchprereq.CmdLineOptions$DoubleArguments
    Get list of fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$DoubleArguments
    There are 2 fields defined in this class.
    adding option "doublearg1"
    adding option "doublearg2"
    CmdLineHelper::loadRuntimeOption() for Class "oracle.opatch.opatchprereq.PQSession"
    initializing String option 0, phbasedir
    initializing String option 1, patchids
    initializing String option 2, phbasefile
    done init. String arg.
    initializing Boolean option 0, booleanarg1
    initializing Boolean option 1, booleanarg2
    done init. Boolean arg.
    initializing Integer option 0, integerarg1
    initializing Integer option 1, integerarg2
    done init. Integer arg.
    initializing StringTeger option 0, stringtegerarg1
    initializing StringTeger option 1, stringtegerarg2
    done init. SringTeger arg.
    initializing Double option 0, doublearg1
    initializing Double option 1, doublearg2
    done init. Double arg.
    CmdLineHelper::loadRuntimeOption() for Class "oracle.opatch.opatchprereq.PQSession", done.
    reqVer For using getEnv() = 10.2.0.4.0
    curVer = 11.2.0.1.0
    Current Ver later than required? :true
    Current Ver equals required? :false
    Checking EMDROOT using OUI's API...
    CmdLineParser.processOPatchProperties() begins
    CmdLineParser.processOPatchProperties() ends
    OUIReplacer::runEnvScript() called
    SystemCall:RuntimeExec(cmds, runDir): GOING to start thread to read Input Stream
    SystemCall:RuntimeExec(cmds, runDir): Started thread to read Input Stream
    SystemCall:RuntimeExec(cmds, runDir): GOING to start thread to read Error Stream
    ReaderThread::run(): Stream InputStream about to be read
    SystemCall:RuntimeExec(cmds, runDir): Started thread to read Error Stream
    SystemCall:RuntimeExec(cmds, runDir): GOING into process.waitFor()
    ReaderThread::run(): Stream ErrorStream about to be read
    ReaderThread::run(): Stream InputStream reading completed
    ReaderThread::run(): Stream ErrorStream reading completed
    SystemCall:RuntimeExec(cmds, runDir): process.waitFor() is OVER
    SystemCall:RuntimeExec(cmds, runDir): Error stream thread joined successfully
    SystemCall:RuntimeExec(cmds, runDir): Input stream thread joined successfully
    OUIReplacer::setKeyValue() called
    OPatchSession::main()
    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    oracle.installer.oui_loc=/u01/app/oracle/product/11.2.0/home11gR2/oui
    oracle.installer.library_loc=/u01/app/oracle/product/11.2.0/home11gR2/oui/lib/linux
    oracle.installer.startup_location=/u01/app/oracle/product/11.2.0/home11gR2/oui
    OPatch.PLATFORM_ID=
    os.name=Linux
    OPatch.NO_FUSER=
    OPatch.SKIP_VERIFY=null
    OPatch.SKIP_VERIFY_SPACE=null
    oracle.installer.clusterEnabled=false
    TRACING.ENABLED=TRUE
    TRACING.LEVEL=2
    OPatch.DEBUG=true
    OPATCH_VERSION=11.1.0.6.6
    Bundled OPatch Property File=properties
    Minimum OUI version: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Stand-Alone home : false
    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    oracle.installer.oui_loc=/u01/app/oracle/product/11.2.0/home11gR2/oui
    oracle.installer.library_loc=/u01/app/oracle/product/11.2.0/home11gR2/oui/lib/linux
    oracle.installer.startup_location=/u01/app/oracle/product/11.2.0/home11gR2/oui
    OPatch.PLATFORM_ID=
    os.name=Linux
    OPatch.NO_FUSER=
    OPatch.SKIP_VERIFY=null
    OPatch.SKIP_VERIFY_SPACE=null
    oracle.installer.clusterEnabled=false
    TRACING.ENABLED=TRUE
    TRACING.LEVEL=2
    OPatch.DEBUG=true
    OPATCH_VERSION=11.1.0.6.6
    Bundled OPatch Property File=properties
    Minimum OUI version: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Stand-Alone home : false
    Oracle Home : /u01/app/oracle/product/11.2.0/home11gR2
    Central Inventory : /u01/app/oraInventory
    from : /u01/app/oraInventory/oraInst.loc
    OPatch version : 11.1.0.6.6
    OUI version : 11.2.0.1.0
    OUI location : /u01/app/oracle/product/11.2.0/home11gR2/oui
    Log file location : /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch2012-01-19_04-10-13AM.log
    Patch history file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch_history.txt
    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() will retry 0 times with 120-second interval to get an Inventory lock.
    OUISessionManager::lockCentralInventory() try round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates a OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() sets up READ-ONLY session
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() set up session OK
    reqVer = 10.2
    curVer = 11.2.0.1.0
    Current Ver later than required? :true
    Current Ver equals required? :false
    ApplySession::process()
    ApplySession::process(): loading patch object.
    ApplySession::loadAndInitPatchObject()
    PatchObject(patchLocation)
    PatchObject::PatchObject looks for the actions file /u01/app/oraInventory/etc/config/actions.xml
    PatchObject::PatchObject looks for the inventory file /u01/app/oraInventory/etc/config/inventory.xml
    parserXMLFile : start
    parserXMLFile : start
    Bugs fixed by this patch 11879896:
    11879896: SMPSSE : DATABASE PERFORMANCE OVERVIEW DOESNT WORK ON MAC/LINUX
    PatchObject::setPreReadMeAction: readMeFile = /u01/app/oraInventory/custom/pre.txt
    noOp = true
    fileContent =
    PatchObject::setPreScriptAction: [PreScriptAction:-------------------------------
    no-op.=true, fileLoc=/u01/app/oraInventory/custom/scripts/pre
    Pre script is not present.-----------------------------------------------]
    PatchObject::setPostReadMeAction: readMeFile = /u01/app/oraInventory/custom/post.txt
    noOp = true
    fileContent =
    PatchObject::setPostScriptAction: [PostScriptAction:------------------------------
    no-op.=true, fileLoc=/u01/app/oraInventory/custom/scripts/post
    Post script not present.-----------------------------------------------]
    PatchObject::setInitReadMeAction: readMeFile = /u01/app/oraInventory/custom/init.txt
    noOp = true
    fileContent =
    PatchObject::setInitScriptAction: [InitScriptAction:-------------------------------
    no-op.=true, fileLoc=/u01/app/oraInventory/custom/scripts/init
    Init script not present.-----------------------------------------------]
    ApplySession applying interim patch '11879896' to OH '/u01/app/oracle/product/11.2.0/home11gR2'
    ApplySession::processLocal()
    OPatchEnv:
    [OPatchEnv: OracleHome="/u01/app/oracle/product/11.2.0/home11gR2", force= false, report= false, inv. mod.= true, system mod.= true, local mode= false, lsinv all= false, lsinv detail= false, lsinv patch= false, nolink= false, Retry=30, Delay=120, CallerName=OPatch, CallerVersion=11.1.0.6.6, SessionType=apply, JdkLoc=/u01/app/oracle/product/11.2.0/home11gR2/jdk, JreLoc=/u01/app/oracle/product/11.2.0/home11gR2/jre/1.4.2, OracleHome via -oh=, OracleHome via env.=/u01/app/oracle/product/11.2.0/home11gR2, OracleHome via response file=, OPatch recognised InvPtrLoc=/u01/app/oraInventory/oraInst.loc, User specified InvPtrLoc=/u01/app/oraInventory/oraInst.loc, No relink=false, Patch ID used in Rollback=, Patch ID with OPack timestamp=, PreOpt=, PostOpt=, OSName=Linux, IsWindows=false, .patch_storage=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage, .patch_storage/<ID>=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/, Whole patch is saved to=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//original_patch, Backup for Restore path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//backup, Backup for Rollback path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//files, FilesMap info from=/u01/app/oracle/product/11.2.0/home11gR2/inventory/oneoffs/<Patch_ID>, PatchLoc=/u01/app/oraInventory, SyntaxErrorMsg= ]
    Process InitReadMeAction()
    InitReadMeAction::catFile() is a no-op
    InitScriptAction::process() is a no-op
    Running Prerequisite check "CheckApplicableProduct"...
    PrereqAPI::checkApplicableProduct
    PrereqAPI::checkStandAloneHome())
    Prereq checkApplicableProduct passed
    OPatch checks if the patch is applicable on this home product type
    ApplySession::setupPatchStorage()
    ApplySession::processLocal() load the inventory
    OracleHomeInventory::createInventoryObj()
    OracleHomeInventory::createInventoryObj() gets OUIInventorySession object
    Locker::lock()
    calling lockCentralInventory()
    OUISessionManager::getInventorySession()
    Caller Details:
         Caller Name : OPatch     Caller Version : 11.1.0.6.6     Requested Read-only access : false     Oracle Home : /u01/app/oracle/product/11.2.0/home11gR2
    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() will retry 30 times with 120-second interval to get an Inventory lock.
    OUISessionManager::lockCentralInventory() try round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates a OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() sets up READ-WRITE session
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() set up session OK
    OUISessionManager::register()
    Registering the caller : OPatch
    Locker::lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage exists, no need to mkdir.
    Locker::lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free exists, will delete file.
    Locker::lock() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    OracleHomeInventory::createInventoryObj() gets OUIInstallAreaControl object
    OracleHomeInventory::createInventoryObj() gets OUIInstallInventory object
    OracleHomeInventory::createInventoryObj() gets OUIOracleHomeInfo object
    OracleHomeInventory::createInventoryObj() construction done
    OracleHomeInventory::load()
    OracleHomeInventory::load() gets a Vector of all product entries
    OracleHomeInventory::load() gets a Vector of all one-off entries
    OracleHomeInventory::load() begins to process raw data from OUI to build up OPatch primitive classes
    Rac::getInstance()
    initializing racType
    Rac::getClusterNodes()
    calling OiiOracleHomeInfo::getNodeList()
    OiiiOracleHomeInfo::getNodeList() returned 0 elements.
    RAC::getClusterNodes() returned a list of 0 elements.
    User did not use -no_inventory, so why clusterNodes are empty?
    clusterNodes is null or empty, set racType to NO_RAC
    checkIfSidAddition()
    OracleHomeInventory::load()
    OracleHomeInventory::load() gets a Vector of all product entries
    OracleHomeInventory::load() gets a Vector of all one-off entries
    OracleHomeInventory::load() begins to process raw data from OUI to build up OPatch primitive classes
    ApplySession::processConflict()
    PrereqAPI::checkConflictAgainstOHWithDetail()
    Number of Oneoffs in the Oracle Home : 0
    PrereqAPI::checkConflictAgainstOH()
    List of patches on which the InterConflict prereq runs are :
    11879896
    OneOffEntry::getBugIDsFixed()
    OneOffEntry::getBugIDsFixed() returns 1 bugs.
    There are no conflicts/supersets.
    Prereq checkConflictAgainstOHWithDetail Passed
    Run all the prereqs related to apply.
    Running prerequisite checks...
    Running prerequisite check "CheckForInputValues" ...
    PrereqAPI::checkForInputValues()
    Input values is present for the all the actions of the given patches.
    Running prerequisite check "CheckSystemSpace" ...
    PrereqAPI::checkSystemSpace()
    Finding the total space needed...
    Total space needed for the patches are: 11865356
    Checking if enough space is present on the disk...
    Required amount of space is availale on the disk.
    Prereq checkSystemSpace Passed
    Enough system space is available.
    Running prerequisite check "CheckPatchApplicableOnCurrentPlatform" ...
    PrereqAPI::checkPatchApplicableOnCurrentPlatform()
    Reading the platforms for patch11879896
    Genereic Platform ID 0is specified for patch : 11879896
    All the given patches are applicable on the current platform.
    Running prerequisite check "CheckSystemCommandAvailable" ...
    PrereqAPI::checkSystemCommandAvailable()
    Rules::shouldSearchOrInvokeFuser()
    user didn't set OPATCH_NO_FUSER but executable list is either null or empty, return false.
    PatchObject: Patch will need to following commands:
    Need fuser archive make mkpatch sqlplus ptlpatch
    false false false false false false
    Have fuser archive make mkpatch sqlplus ptlpatch
    true true true true true true
    All the required commands are available.
    Prereq checkSystemCommandAvailable Passed
    All the required system commands are present.
    Running prerequisite check "CheckActiveFilesAndExecutables" ...
    PrereqAPI::checkActiveFilesAndExecutables()
    Invoking fuser on the executable list...
    getCommandInPropertyFiles(): looking up command "fuser" in property file "properties"
    Path in merged property files: /sbin:/usr/sbin:/usr/local/sbin
    check on "/sbin/fuser"
    found "/sbin/fuser"
    getCommandInPropertyFiles(): looking up command "fuser" in property file "properties"
    Path in merged property files: /sbin:/usr/sbin:/usr/local/sbin
    check on "/sbin/fuser"
    found "/sbin/fuser"
    There are no active executables.
    Prereq checkActiveFilesAndExecutables Passed
    None of the executables are active.
    Running prerequisite check "CheckApplicable" ...
    PrereqAPI::checkApplicable() checking if each Action is applicable or not
    PrereqAPI::checkComponents()
    PrereqAPI::checkComponents searches for required compoments.
    OracleHomeInventory::haveComponents()
    there are 1 components to check.
    Patch Component (component to check) is "oracle.sysman.console.db", "11.2.0.2.0", required = "true"
    OracleHomeInventory::haveComponents() : installInventory.getCompInvEntries() on "oracle.sysman.console.db", homeIndex = "1" returns 1 components.
    Process installed component "oracle.sysman.console.db", version "11.2.0.1.0"
    Check installed product: name="oracle.sysman.console.db", ver="11.2.0.1.0"
    Installed Comp >< Patch Comp:
    Installed Comp Version later than Patch Comp = false
    Installed Comp can replace Patch Comp = false
    Install Comp Version equals or is later than Patch Comp: false
    Req. comp. not in OH inventory: oracle.sysman.console.db, 11.2.0.2.0
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ]
    PrereqAPI::checkComponents searches for optional compoments.
    OracleHomeInventory::haveComponents()
    OracleHomeInventory::haveComponents() gets an empty list. Nothing to do, return empty list back.
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ]
    System intact, OPatch will not attempt to restore the system
    Locker::release()
    OUISessionManager::unRegister()
    Un-Registering the caller : OPatch
    Locker::release() deletes /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    Locker::release() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free
    Cleaning up the directory : "/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_unzip"...
    OPatch failed with error code 74

    Helios,
    Looks like I should not apply this patch, it assume the version of 11.2.0.2, I am on 11.2.0.1.
    What took me off a little was this statement me in the BUG:12317756 - DBCONSOLE PERFORMANCE PAGE NO LONGER DISPLAYS ON LINUX
    "it used to work in previous versions including 11.2.0.1"
    and this is not true for me - I have 11.2.0.1. and it is not working - the graph can not be displayed.
    So I guess I am back to the original question I was asking about in my other post. Let me see if other 2 Notes you provided will take me to any other patch
    Thank you
    Anatoliy

  • Worker failed with patch 3480000

    Dear All,
    Please worker failed during patch 3480000 as following:
    H:\oracle\prodappl\fnd\11.5.0\bin\CONCSUB.exe &ui_apps SYSADMIN 'System Administrator' SYSADMIN CONCURRENT FND FNDGSCST ALL 10
    Error:
    Program exited with status 3
    Cause: The program terminated, returning status code 3.
    Action: Check your installation manual for the meaning of this code on this operating system.Please enter a valid responsibility. The responsibility System Administrator does not exist or is not active. Check that the correct application short name is specified for your responsibility.
    Please advise
    Tarek

    Hussein,
    Following is part of worker log file:
    Time when worker completed job: Fri May 20 2011 09:50:06
    Evaluating symbolic arguments ....
    Done evaluating symbolic arguments.
    Time when worker started job: Fri May 20 2011 09:50:06
    Start time for file is: Fri May 20 2011 09:50:06
    H:\oracle\prodappl\fnd\11.5.0\bin\CONCSUB.exe &ui_apps SYSADMIN 'System Administrator' SYSADMIN CONCURRENT FND FNDGSCST ALL 10
    Error:
    Program exited with status 3
    Cause: The program terminated, returning status code 3.
    Action: Check your installation manual for the meaning of this code on this operating system.Please enter a valid responsibility. The responsibility System Administrator does not exist or is not active. Check that the correct application short name is specified for your responsibility.
    AD Worker error:
    The above program failed with error code 3.
    See the AD Worker log file and/or the program log file for details
    Thanks,
    Tarek

  • ACR 8.4 CC RC install fails with AAM message 'patch not applicable'

    ACR 8.4 CC RC install fails with AAM message 'patch not applicable' - Running Photoshop CC on OSX 10.7.5
    Anyone seen this or have any ideas for a fix?
    I also have my legacy CS6 installed on the same Mac - tried installing ACR 8.4 CS6 RC and that fails with the same dialogue box from AAM
    The DNG converter installs no issue.
    Thx
    Chris.

    Do you have some other software, like Photoshop Elements 12 on your system that would generally also be compatible with ACR 8.4 final but isn’t compatible with the RC because the RC’s only for PS users? 
    I installed the RC the same day it was released on my computer that has PS-CS6 & PS-CC with Windows 7 and it worked ok, so the update generally works, but something isn’t on your systems.
    Are you up-to-date with your PS-CC version, which seems to be 14.2.1:
    http://blogs.adobe.com/crawlspace/2014/02/photoshop-cc-14-1-1-update-now-available.html
    And is CS6 updated to 13.0.6?
    http://www.adobe.com/support/downloads/product.jsp?product=39 <http://www.adobe.com/support/downloads/product.jsp?product=39&platform=Macintosh> &platform=Macintosh

  • Critical patch update fails with error code 73

    RDBMS Version: 10.2.0.3
    Operating System and Version: solaris 5.9
    Error Number (if applicable): error code 73
    Product (i.e. SQL*Loader, Import, etc.): oracle server enterpirse edition
    Product Version: 10.2.0.3
    Critical patch update fails with errors(urgent)
    UD00_102030>pwd
    /mnt/base_install/downloads/10gR2/cpu/6394981
    UD00_102030> opatch apply
    Invoking OPatch 10.2.0.3.0
    Oracle interim Patch Installer version 10.2.0.3.0
    Copyright (c) 2005, Oracle Corporation. All rights reserved..
    Oracle Home : /u01/app/oracle/product/10.2.0
    Central Inventory : /u01/app/oracle/oraInventory
    from : /var/opt/oracle/oraInst.loc
    OPatch version : 10.2.0.3.0
    OUI version : 10.2.0.3.0
    OUI location : /u01/app/oracle/product/10.2.0/oui
    Log file location : /u01/app/oracle/product/10.2.0/cfgtoollogs/opatch/opatch2007-10-19_19-53-31PM.log
    Failed to load the patch object. Possible causes are:
    The specified path is not an interim Patch shiphome
    Meta-data files are missing from the patch area
    Patch location = /mnt/base_install/downloads/10gR2/cpu/6394981
    Details = PatchObject constructor: Input file "/mnt/base_install/downloads/10gR2/cpu/6394981/etc/config/actions" or "/mnt/base_install/downloads/10gR2/cpu/6394981/etc/config/inventory" does not exist.
    ApplySession failed: PatchObject constructor: Input file "/mnt/base_install/downloads/10gR2/cpu/6394981/etc/config/actions" or "/mnt/base_install/downloads/10gR2/cpu/6394981/etc/config/inventory" does not exist.
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 73
    This cpu oct 2007 patch for 10.2.0.3(for solaris)

    That's great :) ...
    Does anybody know which is the difference between
    opatch napply
    and
    opatch apply ?
    thanks,
    P.

Maybe you are looking for

  • TS4002 How do I re-add an existing iCloud email account to iPad 2?

    I set up iCloud email OK on my new iPad 2. I did not previously have a MobileMe account. When the email stopped working (I got repeated messages to say server unavailable) I followed Apple instructions to delete the account from the iPad with the int

  • Master Slide will Not unlock

    Master Slide will Not unlock, I need to edit a bullet point style and I cant seem to edit it. I can see the master slide and when I goto arrange unlock, it is all greyed out. I tried to select different pages in the master select and it still does no

  • Whether I'm in Mail or downloading from YouTube or the internet, lately I'm getting a message "Plug-in Failed".  What can I do?

    Whether I'm in Mail or downloading from YouTube or the internet, lately I'm getting a message "Plug-in Failed".  What can I do?

  • Distiller 5.0 uninstalled

    Hello: In the process of upgrading to Framemaker 8 and Acrobat 9, my Distiller 5.0 application, unbeknownst to me, was uninstalled. I did not see any prompts related to this de-install. Anyone know what happened? And where can I get Distiller now? Th

  • Converting files to PS

    Hi all... forgive me if this is not the right place for a question like this, but since I haven't found a better one... :/ I'm into building a Java based solution for convert generic documents from inside a document management system to PostScript in