Foglight v558 - Script fails with ScriptAbortException: script1001968: java.util.ConcurrentModificationException

I have changed most of our rules through several Wssf and use a number of rule-level Variables. I got these variables through groovy scripts.

Recently, I had to change a variable that appears in all the rules.

This is the script that I have written so far:

com.quest.nitro.service.sl.interfaces.rule import. *;

def ruleInfo = "";
def ruleSvc = server.get ("RuleService");
def ruleList = ["DBSS - ADH Service status"];
def varExp = "INST_NAME;
def varText = "scope.parent_node.mon_instance_name";

allRules = ruleSvc.getAllRules ();

for (rule allRules) {}
ruleName def = rule.getName ();
def ruleCart = rule.getCartridgeName ();

If (ruleList.contains (ruleName))
If (ruleCart.equals ("DB_SQL_Server_UI")) {}
def ExpressionSet = rule.getExpressions ();
for (expression in ExpressionSet) {}
If (expression.getName () .equals ("INST_NAME")) {}
ExpressionSet.remove (expression);
ruleInfo += "Removed variable $varExp of $ruleName \n";
}

}
Add a new term
ExpressionSet.add (rule.createExpression ("INST_NAME", varText));

rule.setExpressions (ExpressionSet);
ruleSvc.saveRule (rule);
ruleInfo += "added $varExp variable $ruleName \n";
}
}

Return ruleInfo;

The part of the script that adds the variable work consistantly.  The part of the script removes it expresion of level rule fails most of the time with the following error:

com.quest.nitro.service.sl.interfaces.scripting.ScriptAbortException: script1001968: java.util.ConcurrentModificationException

I'm still fairly new to groovy and java script, but I gather that when I have to iterate over a collection that is changed in another thread, the iterator survey a java.util.ConcurrentModificationException.  I read that I should look somehow collection synchronization.  Before we go down this rabbit hole, I thought I would just ask here, how should I write this code then it work consistantly?

This is due to brakes on an object. You can try to break your code into pieces. First of all try and get all the rules in a list that matches your criteria. Call it a refinedRuleList, and then iterate through this refinedRuleList for Expressions and remove them. This gives a try!

Thank you

#AJ Aslam

Tags: Dell Tech

Similar Questions

  • java.util.ConcurrentModificationException

    Hi all

    I have the following code:
        private static ArrayList<Integer> findCommonMovies(int[] userIDsForReducedIndex) {
    
            ArrayList<ArrayList> watchedMoviesSet = new ArrayList<ArrayList>();
            for (int i = 0; i < userIDsForReducedIndex.length; i++) {
                ArrayList<Integer> watchedMovies =  findWatchedMovies(userIDsForReducedIndex, trainingMatrix);
    watchedMoviesSet.add(watchedMovies);
    }

    //Initialize the commonMovies with first and second users' common movies
    ArrayList<Integer> commonMovies = new ArrayList<Integer>();
    ArrayList<Integer> watchedMovies = watchedMoviesSet.get(0);
    ArrayList<Integer> watchedMoviesNextUser = watchedMoviesSet.get(1);
    for (int movie : watchedMovies) {
    for (int movieNextUser : watchedMoviesNextUser) {
    if (movie == movieNextUser) {
    commonMovies.add(movie);
    }
    }
    }

    ArrayList<Integer> tempCommonWatchedMovies = new ArrayList<Integer>();
    for (int i = 2; i < watchedMoviesSet.size(); i++) {
    ArrayList<Integer> tempWatchedMovies = watchedMoviesSet.get(i);
    for (int movie : tempWatchedMovies) {
    *** for (int commonMovie : commonMovies) {
    if (movie == commonMovie) {
    tempCommonWatchedMovies.add(movie);
    }
    }
    }
    commonMovies = tempCommonWatchedMovies;
    }

    return commonMovies;
    }
    and getting following error related with the line that I put "***":
    Exception in thread "main" java.util.ConcurrentModificationException
    in java.util.AbstractList$ Itr.checkForComodification (AbstractList.java:372)
    in java.util.AbstractList$ Itr.next (AbstractList.java:343)
    to webmining. Main.findCommonMovies (Main.java:273)
    to webmining. Main.findSuggestedCommonMovies (Main.java:240)
    to webmining. Main.main (hand. Java:73)
    What's wrong with it? I thought that I can iterate through two ArrayList in a way that I do for arrays.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    It's your original code, with a few lines more pronounced:

    ArrayList tempCommonWatchedMovies = new ArrayList();
            for (int i = 2; i < watchedMoviesSet.size(); i++) {
                ArrayList tempWatchedMovies = watchedMoviesSet.get(i);
                for (int movie : tempWatchedMovies) {
    ***            for (int commonMovie : commonMovies) {
                        if (movie == commonMovie) {
    @@@                    tempCommonWatchedMovies.add(movie);
                        }
                    }
                }
    ###         commonMovies = tempCommonWatchedMovies;
            }
    

    Although the version of your table might work, I'll explain the problem with your original version of ArrayList.

    The line I marked with # fact "commonMovies" have the same value as "tempCommonWatchedMovies". For i = 2, your loop will pass by without exceptions. At that time, ' commonMovies! = ' tempCommonWatchedMovies and therefore him 'Add' on the line with @ has no bearing on the same list. However, for I = 3, 'commonMovies' points to the same list as "tempCommonWatchedMovies" (that is, "commonMovies == tempCommonWatchedMovies' set to true). Then when you are iterating "commonMovies" online *, you are iterating over the same list to which you add items to the line. So, the ConcurrentModificationException occurs. According to what is originally watchedMoviesSet, the error may occur not on i = 3. The error occurs for the first 'i' for which the line @ is called.

    For I > = 3, your loop where the error occurs is actually:

    ***            for (int commonMovie : tempCommonWatchedMovies) {
                        if (movie == commonMovie) {
    @@@                    tempCommonWatchedMovies.add(movie);
                        }
                    }
    

    or equivalently,

    ***            for (int commonMovie : commonMovies) {
                        if (movie == commonMovie) {
    @@@                    commonMovies.add(movie);
                        }
                    }
    

    When writing in this way, it may be more obvious as to why the ConcurrentModificationException happens - you are iterating over the list to which you add items.

    Instead of line #, you can try this:

    commonMovies = new ArrayList(tempCommonWatchedMovies);
    

    Then you hold the same values in both lists, but the lists themselves are different, and the ConcurrentModificationException will not happen.

    You can also try to look of the ArrayList retainAll method. You'll probably want to make copies of the list (as in my example of code) to avoid damaging the original lists (if you need the originals to be still intact). But, retainAll should allow you easy ways to keep only the common elements. Underneath, retainAll will always make the loops that you do, but your code will be shorter, because the curls will no longer appear in your own code. You will have just a few copies and a few calls to retainAll.

  • Failed to load the script fails with class "HostSriovInfo" error

    Hi all

    We have just improved of RHEL5 to RHEL6 and tried to load the SDK v6.  * SOME * our standard perl scripts that collect data of the inventory of the vCenter servers assorted fail with the following error:

    Unable to load the 'HostSriovInfo' class on line 52 of usr/local/share/perl5/VMware/VIMRuntime.pm.

    However, we are able to run a connect.pl of vCenters successfully all with the same credentials.  Here from the ideas that could help us solve?

    Thank you

    -Mike Gray

    Unfortunately, the modules are not versioned, each version uses the same name "VIM25Stub.pm" in this case.  The likely problem here is an older (from VIM25Stub.pm<5.5, since="" 5.5="" introduced="" that="" object="">

    Can check to see how many files VIM25Stub.pm is on the system, and if they are the same (simple md5sum would work).

    My 6.0 vsphere SDK VIPerl install system:

    $ sudo find /-name VIM25Stub.pm - type f-exec (md5). 2 >/dev/null

    MD5 (/ System/Library/Perl/5.18/VMware/VIM25Stub.pm) = 6740555623a9613b4f9a50b29b457eaf

    You can just check if the name of the package is in the file (make sure you get one that Perl is picking up it is @INC).

    $ egrep - r "HostSriovInfo". / *

    ./VIM25Stub.pm:package HostSriovInfo;

    ./VIM25Stub.pm:VIMRuntime::make_get_set ('HostSriovInfo', 'sriovEnabled', 'sriovCapable', 'sriovActive', 'numVirtualFunctionRequested', 'numVirtualFunction', 'maxVirtualFunctionSupported');

  • Script fails with 1 user - no other users

    Hello

    I have a problem with one user where a script on a drop-down list box preOpen event fails. The script is located in FormCalc.

    The error message says:

    Error: accessor unknown ' Cell'.

    I use various hidden tables to store 2 multidimensional tables and name all ranks 'Row' and each ' cell '. This allows me to access the information of things like the values of list box by using a loop to fill lists drop-down and search for values, etc.

    I used this technique for a couple of years and there is no problem with the scores of users. I had this user, completely uninstall Reader 9.x and go to the Adobe.com site and install X. They have encountered the same problem with X.

    It runs Windows XP.  Any ideas?

    Stephen

    Ok

    I was only guessing how looks like to your form, thougt you're table is dynamically, so I used the instanceManager.count method.

    If this isn't the case, you can also use a fixed value that you mentioned.

    It is the same for the columns.

    In this case you can also drop the second loop.

    Variables are not used outside of the loop, so I put them in it.

    But it also works with the varibales outdoors.

    You cannot use the nodes.length method, when the table contains header/footer lines.

    $. clearItems()

    var MH = SubformHeader.SubformFormType.ExclGrpMobileHome

    var SubformHeader.SubformFormType.ExclGrpOwnerOccd = OO

    Var SubformHeader.SubformFormType.ExclGrpSeasonal = sea

    var type = SubformHeader.SubformFormType.DdlRateType

    var j = 0

    Var lines = SubformControlPanel.CPWrapper1.TableHORates.Row.instanceManager.count

    var / / Desc

    Michael l. var

    var oMH

    oOO var

    oTyp var

    for r = 0 upto lines-1 step 1

    DESC = SubformControlPanel.CPWrapper1.TableHORates.Row [r] .cell [0].value.text.value

    Maëlle = SubformControlPanel.CPWrapper1.TableHORates.Row [r] .cell [1].value.text.value

    oMH = SubformControlPanel.CPWrapper1.TableHORates.Row [r] .cell [2].value.text.value

    oOO = SubformControlPanel.CPWrapper1.TableHORates.Row [r] .cell [3].value.text.value

    oTyp = SubformControlPanel.CPWrapper1.TableHORates.Row [r] .cell [4].value.text.value

    If (MH oMH and seas maëlle and Typ oTyp oOO OO eq eq eq eq) then

    $.addItem (Desc, r)

    j = j + 1

    endif

    ENDFOR

    if(j EQ 0) then

    xfa.host.messageBox ("No. political Types correspond to the combination of choice for: Mobile-Home owner occupied seasonal rate Type try to change one or more of the foregoing", "Mix of unavailable coverage" ", 3)

    endif

    xfa.host.resetData ("xfa.form.form1.Subform2ColumnWrap.SubformLeftColum nWrap.SubformPropCoverages.SubformTypeDeduct.DdlFireClass")

  • Reference failed with "Agent already has a script execute task"TaskId (SCRIPT, attbid, BaselineUpdate)"

    Hello

    EndecaScriptService service script fails with the following exception when you try to run indexing. I checked is there is any job stuck in InMemoryQueue but none. Please let us know how to fix the error below. Script only service fails, but the records are loaded into the record store. As a temp work around we run the base with in short.

    ProductCatalogSimpleIndexingAdmin - atg.repository.search.indexing.IndexingException: failed to start application attbid BaselineUpdate script

    ProductCatalogSimpleIndexingAdmin to atg.endeca.eacclient.ScriptRunner.startScript(ScriptRunner.java:277)

    ProductCatalogSimpleIndexingAdmin to atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIndexable.java:262)

    ProductCatalogSimpleIndexingAdmin to atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(ScriptIndexable.java:202)

    ProductCatalogSimpleIndexingAdmin to atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:421)

    ProductCatalogSimpleIndexingAdmin to atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.java:364)

    ProductCatalogSimpleIndexingAdmin to atg.endeca.index.admin.IndexingPhase$ IndexingTaskJob.invoke (IndexingPhase.java:476)

    ProductCatalogSimpleIndexingAdmin to atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherThread.java:178)

    ProductCatalogSimpleIndexingAdmin caused by: an error occurred trying to start the script: Agent already has a 'TaskId (SCRIPT, attbid, BaselineUpdate)' execute script task: Agent already has a task of running script "TaskId(SCRIPT,attbid,BaselineUpdate)".

    ProductCatalogSimpleIndexingAdmin at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method)

    ProductCatalogSimpleIndexingAdmin at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)

    ProductCatalogSimpleIndexingAdmin at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)

    ProductCatalogSimpleIndexingAdmin to java.lang.reflect.Constru

    Can you try to kill the forging process running and then try again the kickoff of basic indexing?

  • The cube update fails with an error below

    Hello

    We are facing this problem below when planning application database update. We've been refreshing the database daily, but all of a sudden the error below appeared in the newspaper. The error is something like below:


    The cube refresh failed with the error: java.rmi.UnmarshalException: error demarshalling return; nested exception is:
    java.io.EOFException


    During the updating of the database is manual workspace, the updating of the database that happens successfully. But when the unix script, its lift the above error.

    There is some question related provisioning for which the user has been removed from MSAD? Please help me on this.


    Thank you
    Mani

    Published by: sdid on 29 July 2012 23:16

    have you tried restarting the RMI process for planning and then check that it runs without a doubt 11333 port

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • LoadLibrary failed with error 126 that the specified module could not be found

    Hello, I receive this error randomly when am using oracle sql developer, sometimes, it happens just after the start and sometimes after 5 minutes.

    the error closes the program

    Help, please

    Looking for "loadlibrary failed with the 126 java error" seems to indicate problems with OpenGL and some video drivers and/or environments with multiple monitors. Here are several discussions...

    https://NetBeans.org/bugzilla/show_bug.cgi?id=243153

    Error "LoadLibrary failed with error 126: the module could not - Microsoft Community.

    [SOLVED] Problem with Launcher Technic: load library failed with error 126 - Technic Launcher - Technic Forums

    Therefore, it seems that this issue is not specific to SQL Developer. The last discussion includes a video link in his last message saying that ".dll" is sought instead of "atioglxx.dll' on 32 - bit or systems 'atio6axx.dll' on 64 bit (in the C:\Windows\system32 folder) system, so a workaround is to copy one of those to".dll ".

  • createModelEntity module vCAC fail with java.lang.Double cannot be cast in java.lang.Short

    With the help of plugin vCAC (5.1) I tried to create an entity PhysicalMachine vCAC.  Couple of attributes of the entity PhysicalMachine is numeric.

    For example: to create a PhysicalMachineEntity I send you under properties map to createModelEntity

    var physicalMachineProps = {}

    PhysicalMachineID = "UUID".

    MemoryInMB = 1121,

    Processor = 2 speed,

    Name of the vendor = "Seller,"

    AssetTag = "ALEX."

    Model = "usrLbl."

    ServiceTag = "DN,"

    Location = 0

    };

    createModelEntity always fail with java.lang.Double cannot be cast as a java.lang.Short error. Rhino still get converted to java.lang.Double and its plugin failure looks like number type. How can we force type is short

    One has seen elsewhere. Appreciate any inputs on this.

    Caused by: java.lang.ClassCastException: java.lang.Double cannot be cast in java.lang.Short

    at org.odata4j.core.OSimpleObjects.create(OSimpleObjects.java:38)

    at org.odata4j.core.OProperties.simple(OProperties.java:54)

    at com.vmware.o11n.plugin.dynamicops.model.support.ODataAccessService.createSimpleProperty(ODataAccessService.java:1012)

    at com.vmware.o11n.plugin.dynamicops.model.support.ODataAccessService.populateSimpleArgument(ODataAccessService.java:934)

    at com.vmware.o11n.plugin.dynamicops.model.support.ODataAccessService.saveEntity(ODataAccessService.java:843)

    at com.vmware.o11n.plugin.dynamicops.model.EntityManager.createModelEntity(EntityManager.java:53)

    to com.vmware.o11n.plugin.dynamicops.model.EntityManager$ $FastClassByCGLIB$ $5bb4b803.invoke (< generated >)

    at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)

    to org.springframework.aop.framework.Cglib2AopProxy$ CglibMethodInvocation.invokeJoinpoint (Cglib2AopProxy.java:689)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)

    to com.vmware.o11n.plugin.sdk.spring.impl.CurrentFactoryAnnotationAdvisor$ 1.call(CurrentFactoryAnnotationAdvisor.java:71)

    at com.vmware.o11n.plugin.sdk.spring.AbstractSpringPluginFactory.doInCurrent(AbstractSpringPluginFactory.java:193)

    at com.vmware.o11n.plugin.sdk.spring.impl.CurrentFactoryAnnotationAdvisor.invoke(CurrentFactoryAnnotationAdvisor.java:67)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)

    to org.springframework.aop.framework.Cglib2AopProxy$ DynamicAdvisedInterceptor.intercept (Cglib2AopProxy.java:622)

    to com.vmware.o11n.plugin.dynamicops.model.EntityManager$ $EnhancerByCGLIB$ $93e675fa.createModelEntity (< generated >)

    Thank you, open a support request. For now, workaround is to remove the attribute properties Slot, then I was able to create the PhysicalMachine entity. But there may be other entities with Int16

  • InitialLdapContext fails with Java 6 and 7

    I work with GSSAPI successfully with JAVA 5. With JAVA 6 and 7 of the InitialLdapContext call fails with the following stacktrace:

    > > > KRBError:
    sTime is Fri 14 Jun 13:40:01 CEST 2013 1371210001000
    suSec is 948732
    error code is 7
    Error message is that server not found in the Kerberos database
    Realm is DE.XXX.NET
    sName is ldap/yyy.de.xxx.net
    msgType is 30
    KrbException: Server not found in the Kerberos database (7)
    to sun.security.krb5.KrbTgsRep. < init >(Unknown Source)
    at sun.security.krb5.KrbTgsReq.getReply (unknown Source)
    at sun.security.krb5.KrbTgsReq.sendAndGetCreds (unknown Source)
    at sun.security.krb5.internal.CredentialsUtil.serviceCreds (unknown Source)
    at sun.security.krb5.internal.CredentialsUtil.acquireServiceCreds (unknown Source)
    at sun.security.krb5.Credentials.acquireServiceCreds (unknown Source)
    at sun.security.jgss.krb5.Krb5Context.initSecContext (unknown Source)
    at sun.security.jgss.GSSContextImpl.initSecContext (unknown Source)
    at sun.security.jgss.GSSContextImpl.initSecContext (unknown Source)
    at com.sun.security.sasl.gsskerb.GssKrb5Client.evaluateChallenge (unknown Source)
    at com.sun.jndi.ldap.sasl.LdapSasl.saslBind (unknown Source)
    at com.sun.jndi.ldap.LdapClient.authenticate (unknown Source)
    at com.sun.jndi.ldap.LdapCtx.connect (unknown Source)
    to com.sun.jndi.ldap.LdapCtx. < init >(Unknown Source)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL (unknown Source)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs (unknown Source)
    at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance (unknown Source)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext (unknown Source)
    at javax.naming.spi.NamingManager.getInitialContext (unknown Source)
    at javax.naming.InitialContext.getDefaultInitCtx (unknown Source)
    at javax.naming.InitialContext.init (unknown Source)
    to javax.naming.ldap.InitialLdapContext. < init >(Unknown Source)
    in kerberos. UserRoles2.getUserRoles (UserRoles2.java:27)
    in kerberos. Server$ 2.Run(Server.Java:240)
    in kerberos. Server$ 2.Run(Server.Java:1)
    at java.security.AccessController.doPrivileged (Native Method)
    at javax.security.auth.Subject.doAs (unknown Source)
    in kerberos. Server.getRoles (Server.java:233)
    in kerberos. Server.main (Server.Java:95)
    Caused by: KrbException: identifier does not match value expected (906)
    at sun.security.krb5.internal.KDCRep.init (unknown Source)
    at sun.security.krb5.internal.TGSRep.init (unknown Source)
    to sun.security.krb5.internal.TGSRep. < init >(Unknown Source)
    ... more than 29

    Problem research directory: javax.naming.AuthenticationException: GSSAPI [root exception is javax.security.sasl.SaslException: Insider GSS failed [caused by GSSException: no information provided valid identification (level mechanism: server not found in the Kerberos database (7))]]

    Does anyone has an idea what is going wrong at Java 6 or 7?

    The ktab file is created with the tool of a JRE version 7 ktab.

    "c:\Program Files\Java\jre7\bin\ktab.exe" - a [email protected] password my.keytab - n 0 k

    "c:\Program Files\Java\jre7\bin\ktab.exe" - a Service/[email protected] password my.keytab - n 0 k

    Active directory in Windows server 2008

    Don't forget: if I use Java 5, the call to InitialLdapContext works as expected.

    Thanks in advance

    Michael

    The problem is resolved.

    I used an alias in dns for the ldap_url property name. In Java 1.5, the dns alias name has been resolved to the real dns name. It can't even solve it in Java 1.6 and 1.7.

    A real dns name change solved the problem.

  • NAS NFS Mount/Unmount Test failed with this error - "failed to Test script 300 s to/opt/vmware/VTAF/Certification/Workbench/VTAFShim line 279, line &lt; STDIN &gt; 309 cleaning" it's a matter of workbench?

    Excerpts from run.log

    *****************

    2014-09-10 13:21:51 UTC...

    2014-09-10 13:21:51 UTC [VMSTAF] [0] INFO: VM: [PID 13775] command (perl /iozone - duration.pl d 3600 f - 128 m - r 1024 k t /tmp/iozone.dat 1 > /iozone.2.log 2 > & 1) on 192.168.1.25 is completed.

    2014 09/11 01:36:16 UTC Test script failed to 300 s to/opt/vmware/VTAF/Certification/Workbench/VTAFShim 279, < STDIN > line 309 cleaning.

    2014 09/11 01:36:16 UTC interrupted Test

    One thing noticed here is that there is no logs generated during about 12 hours between the completion of test on one of the GOS and Test Script failed.

    All of the recommendations will help...

    Do not wait more than 2 hours if you think that the test case is stuck. Clean and restart the test.

  • All reports fail with the error in R12

    Hi all

    EBS R12.1.3
    DB R11.2.0.2

    All reports, including the standard fail with the error, I have tried by bouncing the Application and rebuild the files of reports and also refreshed the jar files, there is no error in the log manager. Take a look in the application log content.

    All other concurrent programs are running normal.issue with reports only

    =======================
    ---------------------------------------------------------------------------
    Application object library: Version: 12.0.0

    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

    Module FNDSCURS: active users

    | Starting the competitor program...

    NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are:
    AMERICAN_XXXXX. AR8ISO8859P6

    '.,'

    stat_low = 6
    stat_high = 0
    EMSG: led by signal 6
    Enter the password:
    Pasta: error: error reading the configuration file
    # An unexpected error has been detected by the Machine virtual HotSpot:
    SIGSEGV (0xb) at pc = 0xf62ca328, pid = 1194, tid is 3453340560
    # Java VM: Java hotspot Server VM (mixed mode 1.4.2_14 - b05)
    # Problematic frame:
    # C [libix.so + 0xe328] IxpitTTFQueryFont + 0x3c
    A report of errors with more information file is saved as hs_err_pid1194.log
    # If you want to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Builder: release 10.1.2.3.0 - Production on Wed Jan 23 12:46:55 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ---------------------------------------------------------------------------
    Beginning of the FND_FILE log messages

    End of the FND_FILE log messages
    ---------------------------------------------------------------------------
    Program ended by signal 6
    Competitor Manager encountered an error when executing Oracle * report for your concurrent request 10988252.
    Review your output request file competitor newspaper and/or report for more information.
    Options, AutoComplete, the request for enforcement.
    Size of the output file:
    0
    End of query options AutoComplete.
    Simultaneous request ended
    Current system time is January 23, 2013 12:46:56
    ==========================

    content of hs_err_pid1194.log

    # An unexpected error has been detected by the Machine virtual HotSpot:
    # SIGSEGV (0xb) at pc = 0xf62ca328, pid = 1194, tid is 3453340560
    # Java VM: Java hotspot Server VM (mixed mode 1.4.2_14 - b05)
    # Problematic frame:
    # C [libix.so + 0xe328] IxpitTTFQueryFont + 0x3c

    -------------- T H R E A D ---------------
    The current thread (0x0a60e4b0): JavaThread 'Thread-4' [_thread_in_native, id = 1341]
    siginfo:si_signo = 11, si_errno = 0, si_code = 1, si_addr = 0 x 00000008
    Records:
    Battery: [(0xcdcea000, 0xcdd5d000), sp is 0xcdd595e0, free space = 445 k]
    Native frames: (J = compiled code Java, j = interpreted, Vv = VM code, C = native code)
    [Libix.so + 0xe328] C IxpitTTFQueryFont + 0x3c
    [Libuipr.so.0 + 0x32af2] C uipfzsn_SearchNearest + 0 x 434
    [Libuipr.so.0 + 0x12b24] uifnpl_Lookup + 0x15e C
    [Libuipr.so.0 + 0x3af7d] C uiprzflu_FontLookup 0 x 47
    C [libuimotif.so.0 + 0x72df2] + 0 uifnlk x 52
    [Librw.so + 0x27680c] C rwbvgvf + 0 x 316
    [Librw.so + 0x276cd3] C rwbvstate + 0 x 347
    [Librw.so + 0x2f963b] C
    Rwfrbprint + 0x1ac [librw.so + 0x2f6926] C
    [Librw.so + 0x2bb305] rwfdtprint + 0x8bd C
    Rwsjnidr + 0xd1 [librw.so + 0x1cd14b] C
    [Librw.so + 0x1cab20] C
    [Librw.so + 0x1c9474] C Java_oracle_reports_engine_EngineImpl_CRunReport + 0 x 922
    j oracle.reports.engine.EngineImpl.CRunReport (JLjava/lang/String; (J) J + 0
    j oracle.reports.engine.EngineImpl.run (Ljava/lang/String ;) V + 117
    j oracle.reports.server.JobManager.runJobInEngine (Loracle/reports/Server/CreateJobObject; Loracle/reports/server/EngineInfo ;) Z + 669
    j oracle.reports.server.ExecAsynchJobThread.run (V + 11)
    v ~ StubRoutines::call_stub
    ...............
    Java images: (J = compiled Java code, j = interpreted, Vv = VM code)
    j oracle.reports.engine.EngineImpl.CRunReport (JLjava/lang/String; (J) J + 0
    j oracle.reports.engine.EngineImpl.run (Ljava/lang/String ;) V + 117
    j oracle.reports.server.JobManager.runJobInEngine (Loracle/reports/Server/CreateJobObject; Loracle/reports/server/EngineInfo ;) Z + 669
    j oracle.reports.server.ExecAsynchJobThread.run (V + 11)
    v ~ StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java threads: (= > current thread)
    = > 0x0a60e4b0 JavaThread 'Thread-4' [_thread_in_native, id = 1341]
    0x0a59bf00 JavaThread 'Thread-3' [_thread_blocked, id = 1323]
    0x0a599630 JavaThread "JavaIDL Listener" daemon [_thread_in_native, id = 1306]
    0x0a597be8 JavaThread "Thread-1" [_thread_blocked, id = 1287]
    0x0a3942f8 JavaThread 'Thread-0' [_thread_blocked, id = 1216]
    0x0a01fe50 "CompilerThread1" [_thread_blocked, id = 1208] demon JavaThread
    0x0a01edb0 "CompilerThread0" [_thread_blocked, id = 1207] demon JavaThread
    0x0a01df20 "AdapterThread" [_thread_blocked, id = 1206] demon JavaThread
    0x0a01d108 JavaThread 'Dispatcher of Signal' demon [_thread_blocked, id = 1205]
    0x0a019ce8 JavaThread 'Finalizer' daemon [_thread_blocked, id = 1203]
    0x0a018a48 JavaThread "Reference Handler" daemon [_thread_blocked, id = 1202]
    0x09fb5d48 JavaThread 'hand' [_thread_blocked, id = 1194]
    Other topics:
    0x0a017fa8 VMThread [id = 1201]
    0x0a0216c8 WatcherThread [id = 1209]
    VM status: not to the point of restoration (normal execution)
    VM Mutex/monitor currently owned by thread: None
    Bunch
    def generation total 576K, used 322K [0xdbc90000, 0xdbd30000, 0xdd900000)
    Eden space 512K, 60% have used [0xdbc90000, 0xdbcde098, 0xdbd10000)
    Since the space of 64K, 16% used [0xdbd20000, 0xdbd22a58, 0xdbd30000)
    64K-space, 0% used [0xdbd10000, 0xdbd10000, 0xdbd20000)
    tenure generation total 2244K, used 2074K [0xdd900000, 0xddb31000, 0xebc90000)
    the space K 2244, 92% have used [0xddb06978, 0xddb06a00, 0xdd900000, 0xddb31000)
    compaction perm gen K total of 16384, used 4867K [0xebc90000, 0xecc90000, 0xefc90000)
    the space K 16384, 29% have used [0xec150fa0, 0xec151000, 0xebc90000, 0xecc90000)
    Dynamic libraries:
    00101000-00200000 r - xp 00000000 fd:03 659117 /usr/lib/libX11.so.6.2.0
    00200000-00204000 rwxp 000ff000 fd:03 659117 /usr/lib/libX11.so.6.2.0
    00237000 - 0024e000 r - xp 00000000 fd:03 657921 /usr/lib/libICE.so.6.3.0
    0024e000-0024f000 rwxp 00016000 fd:03 657921 /usr/lib/libICE.so.6.3.0
    0024f000-00251000 rwxp 0024f000 00:00 0
    00253000. 0025 b 000 r - xp 00000000 fd:03 659126 /usr/lib/libSM.so.6.0.0
    b 0025, 000-000 rwxp 00007000 fd:03 659126 /usr/lib/libSM.so.6.0.0 0025c
    0025e000-00271000 r - xp 00000000 fd:00 3408917 /lib/libnsl-2.5.so
    00271000-00272000 r - xp 00012000 fd:00 3408917 /lib/libnsl-2.5.so
    00272000-00273000 rwxp 00013000 fd:00 3408917 /lib/libnsl-2.5.so
    00273000-00275000 rwxp 00273000 00:00 0
    0089c 000-008 has 0000 r - xp 00000000 fd:03 856188 /usr/X11R6/lib/libXtst.so.6.1
    008a 0000-008 has 1000 rwxp 00003000 fd:03 856188 /usr/X11R6/lib/libXtst.so.6.1
    00931000-00985000 r - xp 00000000 fd:03 658012 /usr/lib/libXt.so.6.0.0
    00985000-00989000 rwxp 00054000 fd:03 658012 /usr/lib/libXt.so.6.0.0
    00 has 23000-00a3d000 r - xp 00000000 fd:00 3408905 /lib/ld-2.5.so
    00a3d000-00a3e000 r - xp 00019000 fd:00 3408905 /lib/ld-2.5.so
    00a3e000-00a3f000 rwxp 0001 has 000 fd:00 3408905 /lib/ld-2.5.so
    00 has 41000 - 00b 80000 r - xp 00000000 fd:00 3408906 /lib/libc-2.5.so
    00b 80000-00b 81000 - p 0013f000 fd:00 3408906 /lib/libc-2.5.so
    00b 81000-00b 83000 r - xp 0013f000 fd:00 3408906 /lib/libc-2.5.so
    00b 83000-00b 84000 rwxp 00141000 fd:00 3408906 /lib/libc-2.5.so
    00b 84000-00b 87000 rwxp 00b84000 00:00 0
    00b 89000 - 00b8b000 r - xp 00000000 fd:00 3408908 /lib/libdl-2.5.so
    00b8b000-00b8c000 r - xp 00001000 fd:00 3408908 /lib/libdl-2.5.so
    00b8c000-00b8d000 rwxp 00002000 fd:00 3408908 /lib/libdl-2.5.so
    00b8f000-00ba3000 r - xp 00000000 fd:00 3408910 /lib/libpthread-2.5.so
    00ba3000-00ba4000 r - xp 00013000 fd:00 3408910 /lib/libpthread-2.5.so
    00ba4000-00ba5000 rwxp 00014000 fd:00 3408910 /lib/libpthread-2.5.so
    00ba5000-00ba7000 rwxp 00ba5000 00:00 0
    00ba9000-00bce000 r - xp 00000000 fd:00 3408907 /lib/libm-2.5.so
    00bce000-00bcf000 r - xp 00024000 fd:00 3408907 /lib/libm-2.5.so
    00bcf000-00bd0000 rwxp 00025000 fd:00 3408907 /lib/libm-2.5.so
    00bd2000-00be1000 r - xp 00000000 fd:00 3407953 /lib/libresolv-2.5.so
    00be1000-00be2000 r - xp fd:00 3407953 /lib/libresolv-2.5.so 0000e000
    00be2000-00be3000 rwxp fd:00 3407953 /lib/libresolv-2.5.so 0000f000
    00be3000-00be5000 rwxp 00be3000 00:00 0
    00ccd000 - 2000-00cd r - xp 00000000 fd:03 659116 /usr/lib/libXdmcp.so.6.0.0
    00 00cd 2000-3000 rwxp 00004000 fd:03 659116 /usr/lib/libXdmcp.so.6.0.0 CD
    00cd 5000-00cd 7000 r - xp 00000000 fd:03 657687 /usr/lib/libXau.so.6.0.0
    00cd 7000-8000 rwxp 00001000 fd:03 657687 /usr/lib/libXau.so.6.0.0 00cd
    00d7f000-00d8e000 r - xp 00000000 fd:03 659119 /usr/lib/libXext.so.6.4.0
    00d8e000-00d8f000 rwxp fd:03 659119 /usr/lib/libXext.so.6.4.0 0000e000
    08048000-08072000 r - xp 00000000 fd:1 d 4472848 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bin/rwrun
    08072000. 080 b 4000 rwxp 00029000 fd:1 d 4472848 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bin/rwrun
    09f1d000 - 0 to 650000 rwxp 09f1d000 00:00 0 [heap]
    ..................
    cdf2a000-cdf5c000 r - xs 00000000 fd:1 d 2411811 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar
    cdf5c000-ce124000 r - xs 00000000 fd:1 d 2409195 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/forms/java/frmall.jar
    ce124000-ce18e000 rwxp ce124000 00:00 0
    ce18e000-d1d7e000 r - xs 00000000 fd:1 d 8229584 /uatapps/prodapps/oracle/PROD/apps/apps_st/comn/java/lib/appsborg.zip
    d1d7e000-d1e04000 rwxp d1d7e000 00:00 0
    d1e04000-d4e81000 r - xs 00000000 fd:1 d 5624878 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar
    d4e81000-d5a6b000 r - xs 00000000 fd:1 d 5624872 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar
    d5a6b000-d5a8f000 r - xs 00000000 fd:1 d 5624605 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar
    d5a8f000-d5af4000 r - xs 00000000 fd:1 d 2151756 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/help4.jar
    d5af4000-d5af8000 r - xs 00000000 fd:1 d 2151763 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/importer.jar
    d5af8000-d5cbf000 r - xs 00000000 fd:1 d 2282519 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/reports/jlib/rwxdo.jar
    d5cbf000-d5cfc000 r - xs 00000000 fd:1 d 2151803 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/jewt4-nls.jar
    d5cfc000-d5e6c000 r - xs 00000000 fd:1 d 2283392 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/olap_api.jar
    d5e6c000-d60b7000 r - xs 00000000 fd:1 d 2283385 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bidata-nls.zip
    d60b7000-d64c0000 r - xs 00000000 fd:1 d 2283390 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bidatasvr.jar
    d64c0000-d6730000 r - xs 00000000 fd:1 d 2283384 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bidatacmn.jar
    d6730000-d6a9f000 r - xs 00000000 fd:1 d 2283391 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bidataclt.jar
    d6a9f000-d6bec000 r - xs 00000000 fd:1 d 2283393 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bipres-nls.zip
    d6bec000-d7035000 r - xs 00000000 fd:1 d 2283383 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bipres.jar
    d7035000-d71df000 r - xs 00000000 fd:1 d 2283389 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bicmn-nls.zip
    d71df000-d7286000 r - xs 00000000 fd:1 d 2283388 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/bicmn.jar
    d7286000-d7292000 r - xs 00000000 fd:1 d 2283387 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/bibeans/lib/biamlocal.jar
    d7292000-d72d2000 r - xs 00000000 fd:1 d 2412533 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/BC4J/lib/collections.jar
    d72d2000-d7525000 r - xs 00000000 fd:1 d 2412536 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/BC4J/lib/bc4jmt.jar
    d7525000-d7683000 r - xs 00000000 fd:1 d 2411939 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/ord/jlib/jai_core.jar
    d7683000-d7738000 r - xs 00000000 fd:1 d 2151759 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/oracle_ice.jar
    d7738000-d7900000 r - xs 00000000 fd:1 d 2151788 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/ewt3.jar
    d7900000-d7953000 rwxp d7900000 00:00 0
    d7953000-d7a00000 - p d7953000 00:00 0
    d7a0b000-d7a3d000 r - xs 00000000 fd:1 d 2411938 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/ord/jlib/jai_codec.jar
    d7a3d000-d7a3f000 r - xs 00000000 fd:1 d 2151758 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/dfc.jar
    ... r.jar
    d94f1000-d9596000 r - xs 00000000 fd:1 d 2411340 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/owm/jlib/owm-3_0.jar
    d9596000-d9a76000 r - xs 00000000 fd:1 d 2151744 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/orai18n.jar
    d9a76000-d9a7b000 r - xs 00000000 fd:1 d 2151738 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/javax-ssl-1_1.jar
    d9a7b000-d9a87000 r - xs 00000000 fd:1 d 2151739 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jlib/jssl-1_1.jar
    ...............
    ecc90000-efc90000 rwxp ecc90000 00:00 0
    efc90000-efc93000 r - xs 00000000 fd:1 d 2197424 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/ext/smtp.jar
    efc93000-efc94000 r - xs 00000000 fd:1 d 2197427 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/ext/sslqueries.jar
    f2d7c000-f3351000 r - xs 00000000 fd:1 d 2196894 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/charsets.jar
    f3351000-f3363000 r - xs 00000000 fd:1 d 2196932 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/jce.jar
    f3363000-f3440000 r - xs 00000000 fd:1 d 2196951 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/jsse.jar
    f3440000-f3456000 r - xs 00000000 fd:1 d 2196887 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/sunrsasign.jar
    f34a0000-f4e51000 r - xs 00000000 fd:1 d 2196837 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/rt.jar
    f4e51000-f4e5f000 r - xp 00000000 fd:1 d 2197440 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libzip.so
    f4e5f000-f4e61000 rwxp 0000 000 d 2197440 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libzip.so fd:1 d
    f4e61000-f4e65000 rwxs 00000000 fd:01 2588686/tmp/hsperfdata_applmgr/1194
    f4e65000-f4e6e000 r - xp 00000000 fd:00 3407912 /lib/libnss_files-2.5.so
    f4e6e000-f4e6f000 r - xp 00008000 fd:00 3407912 /lib/libnss_files-2.5.so
    f4e6f000-f4e70000 rwxp 00009000 fd:00 3407912 /lib/libnss_files-2.5.so
    f4f6d000-f4f7a000 r - xp 00000000 fd:1 d 2197439 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libverify.so
    f4f7a000-f4f7c000 rwxp c 0000 000 d 2197439 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libverify.so fd:1
    f4f7c000-f4fcf000 r - xp 00000000 fd:1 d 2197434 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libmlib_image.so
    f4fcf000-f4fd0000 rwxp 00052000 fd:1 d 2197434 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libmlib_image.so
    f4fd1000-f4fed000 r - xp 00000000 fd:1 d 2197462 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libjava.so
    f4fed000-f4fef000 rwxp 0001 b 000 d 2197462 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libjava.so fd:1
    f4fef000-f527b000 r - xp 00000000 fd:1 d 2197454 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libawt.so
    f527b000-f5291000 rwxp 0028b 000 d 2197454 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libawt.so fd:1
    f5291000-f52b7000 rwxp f5291000 00:00 0
    f52b7000-f52d9000 r - xp 00000000 fd:1 d 2196621 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libcxa.so.3
    f52d9000-f52ea000 rwxp 00021000 fd:1 d 2196621 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libcxa.so.3
    f52ea000-f52eb000 r - xp 00000000 fd:1 d 2197464 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libjawt.so
    f52eb000-f52ec000 rwxp 00000000 fd:1 d 2197464 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/libjawt.so
    f5f54cb000-f54d1000 r - xp 00000000 fd:1 d 2197450 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads/libhpi.so
    f54d1000-f54d3000 rwxp 00005000 fd:1 d 2197450 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads/libhpi.so
    f54d3000-f54d4000 rwxp f54d3000 00:00 0
    f54d4000-f564f000 r - xp 00000000 fd:1 d 2196336 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libnnz10.so
    f564f000-f5669000 rwxp 0017 has 000 d 2196336 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libnnz10.so fd:1
    f5669000-f566a000 rwxp f5669000 00:00 0
    f566a000-f61a4000 r - xp 00000000 fd:1 d 2196430 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libclntsh.so.10.1
    f61a4000-f6211000 rwxp fd:1 d 2196430 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libclntsh.so.10.1 00b 39000
    f6211000-f6227000 rwxp f6211000 00:00 0
    f6227000-f622b000 r - xp 00000000 fd:1 d 2196465 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutsl.so.0
    f622b000-f622d000 rwxp 00003000 fd:1 d 2196465 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutsl.so.0
    f622d000-f623e000 r - xp 00000000 fd:1 d 2196452 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutl.so.0
    f623e000-f6243000 rwxp 00010000 fd:1 d 2196452 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutl.so.0
    f6243000-f624b000 r - xp 00000000 fd:1 d 2196457 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutj.so.0
    f624b000-f624d000 rwxp 00007000 fd:1 d 2196457 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutj.so.0
    f624d000-f624e000 rwxp f624d000 00:00 0
    f624e000-f6254000 r - xp 00000000 fd:1 d 2196777 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutc.so.0
    f6254000-f6256000 rwxp 00005000 fd:1 d 2196777 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libutc.so.0
    f6256000-f6258000 r - xp 00000000 fd:1 d 2196614 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libdfc.so.0
    f6258000-f6259000 rwxp 00001000 fd:1 d 2196614 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libdfc.so.0
    f6259000-f626e000 r - xp 00000000 fd:1 d 2196604 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libuat.so.0
    f626e000-f6272000 rwxp 00014000 fd:1 d 2196604 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libuat.so.0
    .......................
    f64cd000-f6632000 r - xp 00000000 fd:1 d 2196347 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libuimotif.so.0
    f6632000-f6667000 rwxp 00164000 fd:1 d 2196347 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libuimotif.so.0
    f6667000-f6668000 rwxp f6667000 00:00 0
    f6668000-f66ad000 r - xp 00000000 fd:1 d 2196348 /uatapps/prodapps/oracle/PROD/apps/tech_st/10.1.2/lib/libuipr.so.0
    ................
    SHELL = / bin/bash
    DISPLAY = tst2:0.0
    --------------- S Y S T E M ---------------
    Version is: Red Hat Enterprise Linux 5.5 Server (Tikanga)
    uname:Linux-2.6.18 - 194.el5 #1 SMP kills Mar 16 21:52:39 EDT 2010 x86_64
    2.5 libc:glibc 2.5 NPTL
    RLimit: BATTERY 10240 k, CORE 0 infinite NOFILE 65536, AS k, NPROC 2047.
    load average:0.00 260219922385968069729110364943787797688896596432821400307719942835910701425965903742693349903723337087228595378570682066221623792106031691364210242450816834544015712558186004178746203606659286243719179019485184.00 177842483722168517742098732790950687621750830720695060824467715489357813427131576483511674471100065829529060399307305199073232163973417691407997097213739181669173474762977596247552173167944648915404311788509987144385540434647742189258045934019178159691095681642911858950144.00
    Family CPU:total 16 6 cmov cx8 fxsr, mmx, sse, sse2
    Memory: 4 k page, physical 8046 k (883 k free), Exchange 4351 k (4186 k free)
    vm_info: Java hotspot Server VM (1.4.2_14 - b05) for linux - x 86, built on March 16, 2007 00:12:34 by unknown with unknown compiler

    and added IX_REPORTING and IX_RENDERING in custom EPS file. "and bounced cm," Generate treatment simultaneous environment information yet "in this display IX_PRINTING (only) of PROD path."

    where can I find IX_PRINTING entries in all other env

    Please add the "export IX_PRINTING =" line in the script adcmctl.sh and bounce the CM, then run the simultaneous program and see if you can reproduce the problem-[816879.1 ID] ".

    See also:

    Format Postscript Oracle EBS application generate Code wild Chinese characters [ID 1109994.1]

    because I already changed en./ad/12.0.0/admin/template/custom/APPLSYS_ux.env correct path.

    It will cause any problem if we have the same entries in custom env and .env (this file is also the towns of IX_RENDERING, IX_PRINTING)

    N °

    Thank you
    Hussein

  • patch p11879896_112020_Generic failed with the missing req for error computer

    Hello
    Apply the fix for issue on Linux 32 with

    opatch apply - invPtrLoc /u01/app/oraInventory/oraInst.loc

    has failed (with message
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]),

    debugging 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
    Citing O Patch 11.1 .0.6.6

    Setup Oracle interim Patch version 11.1.0.6.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.

    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    There are 7 fields defined in this class.
    Add option "fp".
    Add option "dp".
    Add option "fr".
    Add option "dr."
    Add option "mp".
    Add option 'phbasedir '.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'delay_link '.
    Add option "cmd_end.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    There are 5 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Add option "ps".
    Add option "mp".
    Add option "xmlinput.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    There are 1 fields defined in this class.
    Add option "cmd".
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession".
    option string initialization 0, fp
    initialization of string option1, dp
    initialization of string option 2, en
    option during initialization of channel 3, dr
    4, MP initialization string option
    initialization string 5 option, phbasedir
    initialization string 6 option, phbasefile
    does init. String argument.
    initialization of the Boolean option 0, delay_link
    initialization of the Boolean option 1, cmd_end
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    initialization of StringTeger option 2, ps
    initializing StringTeger option 3, mp
    initialization of StringTeger option 4, xmlinput
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    initialization of RawString option 0, cmd
    does init. RawString arg.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession", actually.
    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    There are 3 fields defined in this class.
    Add option 'phbasedir '.
    Add option "patchids.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'booleanarg1 '.
    Add option 'booleanarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    There are 2 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession".
    initialization string 0 option, phbasedir
    the initialization of the option channel 1, patchids
    initialization of string option 2, phbasefile
    does init. String argument.
    the initialization Boolean option 0, booleanarg1
    the initialization of the Boolean option 1, booleanarg2
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession", actually.
    reqVer to use getEnv() = 10.2.0.4.0
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    Checking the EMDROOT using the API of YES...
    CmdLineParser.processOPatchProperties () starts
    Ends of CmdLineParser.processOPatchProperties)
    OUIReplacer called::runEnvScript()
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the error stream
    ::Run() ReaderThread: Stream InputStream about to be read
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the error stream
    SystemCall:RuntimeExec(cmds,_runDir): ENTER process.WAITFOR()
    ::Run() ReaderThread: ErrorStream stream being read
    ::Run() ReaderThread: Stream InputStream finished reading
    ::Run() ReaderThread: reading stream ErrorStream completed
    SystemCall:RuntimeExec(cmds,_runDir): process.WAITFOR() is ON
    SystemCall:RuntimeExec(cmds,_runDir): Wire flow error joined with success
    SystemCall:RuntimeExec(cmds,_runDir): Input stream thread joined with success
    OUIReplacer called::setKeyValue()
    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
    Delivered OPatch property file = properties
    Minimum version of YES: 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
    Independent House: 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
    Delivered OPatch property file = properties
    Minimum version of YES: 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
    Independent House: false



    Oracle home: /u01/app/oracle/product/11.2.0/home11gR2
    Inventory Center: / u01/app/oraInventory
    from: /u01/app/oraInventory/oraInst.loc
    OPatch version: 11.1.0.6.6
    YES version: 11.2.0.1.0
    YES location: /u01/app/oracle/product/11.2.0/home11gR2/oui
    Location of the log file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch2012-01-19_04-10-13AM.log

    History of patch file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch_history.txt

    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 0 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() implements READ ONLY session
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    reqVer = 10.2
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    ApplySession::process()
    ApplySession::process(): loading object patch.
    ApplySession::loadAndInitPatchObject()
    PatchObject (patchLocation)
    PatchObject::PatchObject looking for file /u01/app/oraInventory/etc/config/actions.xml actions
    PatchObject::PatchObject looking for the file /u01/app/oraInventory/etc/config/inventory.xml inventory
    parserXMLFile: start
    parserXMLFile: start

    Bugs fixed by this patch 11879896 :
    11879896: SMPSSE: OVERVIEW OF THE PERFORMANCE OF DATABASE DOES NOT 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 does not exist.-]

    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 does not exist.-]

    Fix provisional application '11879896' ApplySession 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, value = false, mod. inv. = true, the system mod. = true, local mode = false, all the lsinv = 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, via the response file OracleHome =, OPatch recognized InvPtrLoc=/u01/app/oraInventory/oraInst.loc, InvPtrLoc=/u01/app/oraInventory/oraInst.loc is specified by the user, without re-creating a link = false, Patch ID used in Rollback =, Patch ID with OPack timestamp =, PreOpt =, PostOpt =, OSName = Linux, is = 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/ entire Patch is saved to=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//original_patch, backup 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
    Checking prerequisites 'CheckApplicableProduct '...

    PrereqAPI::checkApplicableProduct
    PrereqAPI::checkStandAloneHome())
    PREREQ checkApplicableProduct spent
    OPatch checks if the patch is applicable to this type of product home
    ApplySession::setupPatchStorage()
    ApplySession::processLocal() load inventory
    OracleHomeInventory::createInventoryObj()
    OracleHomeInventory::createInventoryObj() gets OUIInventorySession object
    Locker: lock()
    call of lockCentralInventory()
    OUISessionManager::getInventorySession()
    Details of the appellant:
    Name calling: OPatch calling Version: 11.1.0.6.6 requested access read-only: false Oracle Home: /u01/app/oracle/product/11.2.0/home11gR2
    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 30 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() put in place the session of READING / WRITING
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    OUISessionManager::register()
    Record of the appellant: OPatch
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage does exist, no need of mkdir.
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free exists, will delete the 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() built
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    RAC::GetInstance()
    initializing racType
    RAC::getClusterNodes()
    call OiiOracleHomeInfo::getNodeList()
    OiiiOracleHomeInfo::getNodeList() returned 0 items.
    RAC::getClusterNodes() returns a list of items from 0.
    The user has not used - no_inventory, then why clusterNodes are empty?
    clusterNodes is null or empty, set racType to NO_RAC
    checkIfSidAddition()
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    ApplySession::processConflict()
    PrereqAPI::checkConflictAgainstOHWithDetail()

    Number of Oneoffs in the Oracle home: 0
    PrereqAPI::checkConflictAgainstOH()

    List of patches on which runs the prereq InterConflict are:
    11879896
    OneOffEntry::getBugIDsFixed()
    OneOffEntry::getBugIDsFixed() returns 1 bugs.

    There is no conflict/supersets.
    PREREQ checkConflictAgainstOHWithDetail Passed
    Run all the prereqs associated with apply.

    Prior running check...

    Checking prerequisites 'CheckForInputValues '...
    PrereqAPI::checkForInputValues()
    Input values is present for all the shares of the given patches.

    Checking prerequisites 'CheckSystemSpace '...
    PrereqAPI::checkSystemSpace()

    Find the total space required...

    Space required for patches are total: 11865356

    Checking if a space is present on the disk...

    Amount of required space is available on the disk.
    PREREQ checkSystemSpace Passed
    Enough space system is available.

    Checking prerequisites 'CheckPatchApplicableOnCurrentPlatform '...
    PrereqAPI::checkPatchApplicableOnCurrentPlatform()
    Read the platforms for patch11879896

    Genereic 0est platform ID specified for the patch: 11879896
    All the given patches are applied on the current platform.

    Checking prerequisites 'CheckSystemCommandAvailable '...
    PrereqAPI::checkSystemCommandAvailable()
    Rules: shouldSearchOrInvokeFuser()
    the user did not OPATCH_NO_FUSER but executable list is null or empty, return false.

    PatchObject: Patch will need of following commands:
    --------------------------------------------------------------------
    Archives of fuser need do sqlplus ptlpatch mkpatch
    false false false false false false
    --------------------------------------------------------------------
    Do the sqlplus ptlpatch Archives of fuser mkpatch
    true true true true true true


    All the required commands are available.
    PREREQ checkSystemCommandAvailable Passed
    All required system controls are present.

    Checking prerequisites 'CheckActiveFilesAndExecutables '...
    PrereqAPI::checkActiveFilesAndExecutables()

    Fuser invoking the executable list...
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.

    There is no executable assets.
    PREREQ checkActiveFilesAndExecutables Passed
    None of the executables is active.

    Checking prerequisites 'CheckApplicable '...
    PrereqAPI::checkApplicable() check whether each Action is applicable
    PrereqAPI::checkComponents()
    PrereqAPI::checkComponents search required components.
    OracleHomeInventory::haveComponents()
    There are 1 items to check.
    Patch (component to check) Component is "oracle.sysman.console.db", "11.2.0.2.0", required = "true".
    OracleHomeInventory::haveComponents(): installInventory.getCompInvEntries () on 'oracle.sysman.console.db', '1' = homeIndex returns 1 components.

    Installed process component 'oracle.sysman.console.db', version '11.2.0.1.0 '.
    Installed control product: name = "oracle.sysman.console.db', version = '11.2.0.1.0'
    Installed Comp > < Patch Comp:
    Installed the Comp Version later than Patch Comp = false
    Installed model can replace Patch Comp = false
    Install the Comp Version is equal to or later than the Comp Patch: fake
    Comp. req. not in the inventory OH: oracle.sysman.console.db, 11.2.0.2.0
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    PrereqAPI::checkComponents search option components.
    OracleHomeInventory::haveComponents()
    OracleHomeInventory::haveComponents() Gets an empty list. Nothing to do, returns a list return empty.
    The prerequisite checking 'CheckApplicable' failed.
    The details are:
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    System intact, OPatch will not attempt to restore the system
    Locker: release()
    OUISessionManager::unRegister()
    Registration not calling: OPatch
    Locker: release() removes /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 of the directory: ' / u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_unzip '...

    OPatch failed with the error code 74

    Well its quite obvious, isn't?

    Check installed product: name="oracle.sysman.console.db", ver="11.2.0.1.0"
    ...
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ]
    

    11.2.0.1 vs 11.2.0.2

  • All security updates fail with the error A 80071, 91 code

    Hello!

    System information: Windows 7 Ultimate 64-bit, i7-720QM, 6 GB RAM, 256 GB SSD, ATI 4670 [Dell Studio XPS 1645]

    Background:

    • UAC was arrested. Turn on UAC stop my gadgets to work [another thread on these forums...].
    • A week ago, I got speech recognition works only with a local edition. Insert this ctfmon '=' CTFMON registry entry. EXE, to HKLM\Software\Microsoft\Windows\CurrentVersion\Run, fixed the problem. However, I can't find to this registry entry.
    • Four days ago, I had slow internet speed. I did a 'Complete' Microsoft Security Essentials scan and it found many exploits (Explot: Java/CVE-2009-3867.) BX, TrojanDownloader / OpenConnection.AK, TrojranDownloader:Java / Rexec.c and a dozen others). I removed all the. The internet speed is back to normal.
    • This morning, I have updated the firmware on my SSD to activate the TRIM. I restored an image of the drive I did with Windows Backup and Restore just before updating the drive.

    Problem:

    • I tried Windows Update after update of the SSD. It downloads all updates, installs, and prompts you to restart the computer to complete the installation. During the shutdown, some files are 'configured '. Upon restart, during the boot of Windows GUI (circles of flight), there is a break-up of the code, something about the registry. On logon, it gets "35%" and says so "returning default configuration updates,' or something like that. I get a notification indicating that the updates failed.
    • On Windows Update, only Silverlight, Windows malicious software removal, MSE definition updated and updated Office Publisher are successful.
    • All other updates (security updates, cumulative updates, security updates for IE, updates for Windows) fail with the error code A 80071, 91.
    • If you are looking for updates that fail, here they are: KB2416400, KB2296199, KB2305420, KB2385678, KB2423089, KB24236673, KB2442962, KB246759 and KB2443685.

    What I tried:

    • Disk Cleanup attempt (and unfortunately removed all restore points). Did not work.
    • Attempt to sfc/scannow. He found a few files, that it could not correct; I have the CBS.log newspaper if you need. However, updates still do not work.
    • Tried to reset the resource manager to file with "fsutil resource setautotest true c:\ ». She is successful. However, after the restart, the updates still do not work.
    • Tried a Full scan with MSE. No anomaly.
    • Tried to reset components to update Windows (using the Vista Fix - It via KB971058). Updates still do not work.
    • Attempt of Microsoft Malicious Software Removal Tool (updated dec 2010) Full Scan, no malicious software was detected. Updates still do not work.
    • Attempt of Anti-Malware analysis complete Malwarebyte, no malicious software found. Updates still do not work.

    I don't think that this is malware, but a Windows problem... My internet is wobbly for these last two days, a lot of packet loss (pages only "" half load, some missing frames, etc.). Not sure if this is related, but it downloads the updates very well. It is not always the marker "35%".

    I'm out of ideas. What's next?

    Thank you

    ~ Ibrahim ~.

    1. about 1 year, I installed MSE.

    2 McAfee has been preloaded; the subscription was updated (in a 90-day trial), and I uninstalled McAfee completely (regular uninstall and Removal Tool provided by McAfee).

    3. Yes, for about 30 minutes before I uninstalled and installed MSE.

    4. Yes.

    However, with a little help seven forums, we have figured out it is the registry. I did a reinstall and then the updates installed correctly.

    Thanks for the help, if! :)

  • KB2686509 repeatedly fails with ErrorCode 0x8007F0F4

    KB2686509 repeatedly fails with ErrorCode 0x8007F0F4

    It is obsolete

    I wrote a VB Script to solve two problems when running microsoft KB2686509 security update

    HKLM\SYSTEM\CurrentControlSet\Control\Keyboard Layout
    and
    HKLM\SYSTEM\CurrentControlSet\Control\Keyboard layouts

    for those who are not freaks of registry.

    Here you can download my little fix in the ZIP file.

    What is doing? No magic!

    1 made a backup of the registry

    2 remove the entries with the keyboard

    3 checks each keyentry in Keyboard Layouts against file in %SystemRoot%\System32

    Hope I have someone help with this script.

    Concerning

    Germany Christian

    Updated 2012/06/03

    I wrote a batch file too. If you use this place the vbs solution.

    It is a little more difficult, because the batch file exports the two keys, the destroyed, creates the empty entries. Then, you must rerun the KB2686509! After this do not restart, press on continue in the command window (restoration of the old entries) and then restart.

    If one of the buttons (bad) does not exist, the command file creates an empty entry, so KB2686509 should work.

    Here you can download the http://www.vivus.net/dl/ batch file

  • Error - Installer: wrapper. creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect when installing any program.

    Original title: there is an error then that inistalling some programs such as, java, internet download manager and...

    There is an error then that inistalling some programs such as, java, internet download manager and...

    for example, I want inistall an application or a program like Java, but when I start to inistall, it works like adminstere then said: (Installer: wrapper. creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect.)

    It even I mean to inistall Internet download manager and VLC...

    my pc is automatically updated and when updates are available whenever I download inistall,.

    Please help me, I love my windows Vista, tnx

    Hello Aliahriman,

    Please look at the post below and see if it will solve your "creatFile failed with error 123: the file name, directory name or volume label syntax is incorrect" question.
    He has helped others with a similar issue.
    http://social.answers.Microsoft.com/forums/en-us/VistaInstall/thread/3b180316-95c2-4613-8c38-8515481db22c

    If please reply back and let us know if this helps solve your problem.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

Maybe you are looking for