A1000 phase takes too long while improving to R12.2.0 to R12.2.4

Hello

I run the patch to upgrade final R12.2.4 (patch # 17919161), and it is currently running phase A1000. Its been more than 10 hours, now it is stuck at the same phase. I installed R12.2.4 a couple of times now, but this is the first time, it takes so long to complete.

Looking at workers using adctrl, it gives the following result. Anyone know how to speed up this treatment?

Control

Status of worker Code context Filename

------  --------  -----------------  --------------------------  --------------

1 run R120 generic QPXCONAT.pll running

2. run R120 generic QPXPTMAP.pll running

3. run QPXFMLMT.pll generic R120 running

4 run R120 generic QPXQPCDT.pll running

5. run R120 generic QOTLNSRF.pll running

6 running generic R120 QPXQPCUR.pll

Concerning

Gray

Never mind. Here is the resolution:

Step 1. Use utility adcrtl to exit all workers to the status "running".

Step 2. Drop table applsys. FND_INSTALL_PROCESSES

Step 3. Restart the application of the patch using ADOPTED utiloty with the parameter 'restart = yes ".

So now the application of the fix took.

Concerning

Kamal Khan

www.AclNZ.com

Tags: Oracle Applications

Similar Questions

  • Executed scripts takes too long

    Hello

    I hope for more help with improvement / reducing the amount of time required to get a script to run. I have provided the following script to our CMDB group but they say it take too long to run (full day).

    I already use the get-view option to extract the details. Maybe someone can advise how they would improve this script. For the record, we have 2000 + vm in our environment.

    Script is attached.

    Any help is very appreciated.

    Hello, VM_.

    Well, nobody likes a slow script, that's for sure.  And a script of the day?  Double boo to that.

    I had a quick glance, and there were some spots of improvement.  I have them made here:

    Add-PSSnapin VMware.VimAutomation.Core
    
    function Get-VMSerial {  ## rewrote to take UUID; already being gotten in properties below  # param([VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl]$VirtualMachine)  # $s = ($VirtualMachine.ExtensionData.Config.Uuid).Replace("-", "")  param([string]$Uuid)  $s = $Uuid.Replace("-", "")  $Uuid = "VMware-"  for ($i = 0; $i -lt $s.Length; $i += 2)  {    $Uuid += ("{0:x2}" -f [byte]("0x" + $s.Substring($i, 2)))    if ($Uuid.Length -eq 30) { $Uuid += "-" } else { $Uuid += " " }  }
    
      return $Uuid.TrimEnd()}
    
    # Connect to vcenterConnect-VIServer vcenter
    
    #Gathering VM settingsWrite-Verbose -Verbose "Gathering VM statistics"$VMReport = @()$Count = 0
    
    ## no need to use Get-VM#Get-VM | % {## moved outside of the Foreach-Object scriptblock, so this Get-View only gets called once, not 2000+ times (not once per VM, just once at all)$filter = @{"Config.Template"="false"}Get-View -ViewType VirtualMachine -Filter $filter -Property Name,Guest.HostName,summary.config.numcpu,summary.config.memorysizemb,summary.config.numEthernetCards,Summary.Config.NumVirtualDisks,Config.Uuid,Parent,Guest.GuestFamily,config.tools.toolsversion,guest.toolsstatus,config.Version,Config.ChangeTrackingEnabled,Datastore,AvailableField,Value | %{    ## $vm is the View of the current VM    $vm = $_    ## not used -- removed it    # $CustomDetails = Get-VM $_ | Select -ExpandProperty customfields    ## rewrote to use Get-View or UpdateViewData()    # $LunTierStringArray = Get-VM $_ | Get-Datastore    $LunTierStringArray = Get-View -Property Name -Id $vm.Datastore    $LunTierString = $LunTierStringArray.Name -split "_"    $vms = "" | Select-Object VMName, Cluster, DnsName, TotalCPU, TotalMemory, TotalNics, Disks, DiskTier, SDF, UUID, Folder, OS, ToolsVersion, ToolsStatus, HardwareVersion, CBT, Serial    $vms.VMName = $vm.Name    ## rewrote to use UpdateViewData()    # $vms.Cluster = $(Get-vm $_ | Get-cluster).Name    $vms.Cluster = &{$vm.UpdateViewData("Runtime.Host.Parent.Name"); $vm.Runtime.LinkedView.Host.LinkedView.Parent.Name}    $vms.DnsName = $vm.Guest.HostName    $vms.TotalCPU = $vm.summary.config.numcpu    $vms.TotalMemory = $vm.summary.config.memorysizemb    $vms.TotalNics = $vm.summary.config.numEthernetCards    $vms.Disks = $vm.Summary.Config.NumVirtualDisks    $vms.DiskTier = $LunTierString[0]    ## getting this in some other way, from the    # $vms.SDF = ($_ | Get-Annotation -CustomAttribute 'School/Division/Faculty').Value    $vms.SDF = & {$intCustomAttributeKey = ($vm.AvailableField | ?{$_.Name -eq "School/Division/Faculty"}).Key; ($vm.Value | ?{$_.Key -eq $intCustomAttributeKey}).Value}    $vms.UUID = $vm.Config.Uuid    ## add -Property Name, though, with " | Out-Null", does this even work?    # $current = Get-View $vm.Parent | Out-Null    $current = Get-View $vm.Parent -Property Name,Parent -ErrorAction:SilentlyContinue    $path = $vm.Name    do {         $parent = $current         if($parent.Name -ne "vm"){$path =  $parent.Name + "\" + $path}         ## add -Property Name, though, with " | Out-Null", does this even work?         $current = if ($null -ne $current.Parent) {Get-View $current.Parent -Property Name,Parent -ErrorAction:SilentlyContinue}    } while ($current.Parent -ne $null)    $vms.Folder = $path    $vms.OS = $vm.Guest.GuestFamily    $vms.ToolsVersion = $vm.config.tools.toolsversion    $vms.ToolsStatus = $vm.guest.toolsstatus    $vms.HardwareVersion = $vm.config.Version    $vms.CBT = $vm.Config.ChangeTrackingEnabled    $vms.Serial = Get-VMSerial -Uuid $vm.Config.Uuid    $VMReport += $vms    $Count++    ## added Write-Verbose so that the pipeline does not get polluted with strings (for the day that this code is returning objects for further manipulation down the pipeline, instead of going straight to CSV)  Write-Verbose -Verbose $Count}#Output$VMReport | Export-Csv vcenter_vm_report.csv_tmp -NoTypeInformation -UseCultureCopy-Item vcenter_vm_report.csv_tmp vcenter_vm_report.csv
    

    I commented on the changes I made (and why) and commented on by the code I replaced.  Give a run and see if it is not faster for you / your CMDB crew.

    Message has been edited by Matt Boren on February 24, 2015: correction of the piece that gets the path of the inventory of the VM (were able only to return a parent level previously) minor

  • Open database (recovery) takes too long

    Hello
    Ive been using your great BerkeleyDB Java Edition for a couple of years and have been very happy with it.

    I am facing a problem with trying to open the database after a full disk problem (which gave rise to the database is unable to write and therefore not closed).

    While recovery seems to work, it took a lot of time - 16 hours so far. My database has data about 200 GB, which has swollen to more than 450 GB during the deletion of entries, so gobble up all the free space on the disk.

    My questions are:
    * Should I continue to wait for the recovery?
    * Are there opportunities in loop?
    * Is there an easier way (DBDump?) to extract data from the database without having to perform a recovery?

    Other information that can help:
    * The recovery has reduced the size of the last important file and created 3 new files since it started running.
    * I did open (using lsof) files and they change every now and then to other files, but a good amount of his time came near the end of the database.

    So, I feel like recovery runs normally just takes too long. Please let me know your opinion.

    A few other things I should mention about my question:
    * The database was, until yesterday, running on java bdb 3.3.75. After several hours of recovery, I upgraded to 4.1.10 (since I read about a possible recovery loop bug in one of the versions)
    * Once 4.1.10 began recovering, he spat errors on the last 2 files. Only on deleting those 2 files (the latter being 0 bytes, the 2nd last one being about 5 k) made the beginning of recovery. Note that the recovery 3.3.75's longer never complained about these files. I can post errors here as appropriate.
    * Some files jdb (about 500 cases of the 47 000 files that make up the database) are files of 100 MB, because I had experienced with files of larger sizes for a few days, then returned the setting.

    All these above would affect a successful recovery?


    My configuration is:
    OS: Linux CentOS 5.2, 64-bit, kernel 2.6.18 - 92.el5
    JVM: Sun Java 1.6.0_20, 64-bit
    Memory: 16 GB of RAM, including 8 GB is allocated to the java process (- Xmx8000M - Xms8000M)
    Cache of BDB for use 6 GB of RAM (envconfig.setCacheSize (6000000000))

    Only the basic BDB API is to be used (environment, data, the sliders). We do use DPL, or HA features.

    Waiting for your kind response,
    Sushant has
  • Statement Update takes too long to run

    Hi all

    I am trying to run this update statement. But its takes too long to run.
        UPDATE ops_forecast_extract b SET position_id = (SELECT a.row_id
            FROM s_postn a
            WHERE UPPER(a.desc_text) = UPPER(TRIM(B.POSITION_NAME)))
            WHERE position_level = 7
            AND b.am_id IS NULL;
            SELECT COUNT(*) FROM S_POSTN; 
            214665
            SELECT COUNT(*) FROM ops_forecast_extract;
            49366
    SELECT count(*)
            FROM s_postn a, ops_forecast_extract b
            WHERE UPPER(a.desc_text) = UPPER(TRIM(B.POSITION_NAME));
     575
    What could be the reason for the update statement to run so long?
    Thank you

    polasa wrote:
    Hi all

    I am trying to run this update statement. But its takes too long to run.

    What could be the reason for the update statement to run so long?

    You did not say what means "too long", but a simple and good reason might be that the scalar subquery on "s_postn" using a full table for each run scan. Potentially this subquery is executed for each row of the table "ops_forecast_extract" that satisfies your filter predicates. 'Potentially' due to "filter/subquery optimization" cunning of the Oracle execution engine that tries to cache results of already executed of instances of subquery. Given that the in-memory hash table that contains these cached results is limited in size, the optimization algorithm depends on the sort order of data and could suffer collisions of hash that it is unpredictable, how this optimization works in your particular case.

    You can view the execution plan, it should at least tell you how Oracle will run the scalar subquery (that tell you nothing about this "filter/subquery optimization" feature).

    Follow the generic guidelines how to generate a useful plan explain output and how to post here:

    Could please post a correctly formatted explain you plan output using DBMS_XPLAN. SCREEN, including the 'Predicate information' section below the plan to provide more details about your statement. Please use the noformat} [{noformat} code {noformat}] {noformat} before tag and {noformat} [{noformat} / code {noformat}] {noformat} tag or after the noformat} {{noformat} code {noformat}} {noformat} tag before and after to improve the readability of the outing:

    In SQL * more:

    SET LINESIZE 130
    
    EXPLAIN PLAN FOR ;
    
    SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY);
    

    Note that the DBMS_XPLAN package. DISPLAY is only available from 9i on.

    In 9i and above, if "Predicate information" section is missing from the DBMS_XPLAN. Output display, but you get the message "Plan table is old version" instead, you must recreate your plan table using the script server '$ORACLE_HOME/rdbms/admin/utlxplan.sql '.

    In previous versions, you can run the following in SQL * Plus (on the server) instead:

    @?/rdbms/admin/utlxpls
    

    A different approach in SQL * more:

    SET AUTOTRACE ON EXPLAIN
    
    ;
    

    also displays the execution plan.

    In order to get a better understanding where your statement passes the time, you might want to turn on SQL tracing as described here:

    When your query takes too long...

    and after the "tkprof' out here, too.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • My daughter Air2 IPad takes too long to save. It is connected to wifi, connected and the screen is locked.mAny advice?

    My daughter Air2 IPad takes too long to save. It is plugged in, connected to wifi and the screen is locked. Any tips?

    How long is too long? If it lasts for more than a few hours - and even that is too long in my humble OPINION - then something is wrong. Completely backup, because it will not terminate in any case if its been so long, forced to reboot the device and try again.

    To force the reboot your device, press and hold the two buttons of sleep/wake and home for at least ten seconds, until you see the Apple logo.

    This may not work either. The backup may be damaged and you will need to remove and start over. However, its easy starting point and it will not hurt anything. If the backup will not end, he has nothing to lose.

  • Should I keep plugging my iphone to the computer during the update download process? especially the download will take too long because it is more than 2 GB and my internet speed is not fast, I can unplug my iphone until the full download?

    I am a new user of Iphone, I must he keep plugging my Iphone to the computer during the update download process? especially the download will take too long because it is more than 2 GB and my internet speed is not fast, I can unplug my Iphone until the full download?

    Without doubt, but why not just make the day downloading overnight?

  • Why it takes too long to open attachments of the e-mail account?

    It takes forever to download attachments from my mail account. I tried to do the following tasks explained on the vista forum: http://windowshelp.microsoft.com/Windows/en-US/help/6b046ae9-1434-4423-9303-400ff6fe686b1033.mspx#ESD, but none of the fixed work possible.

    After clicking on open on the box pop up asking if I want to open or save the attachment, it takes too long to download. The transfer window remains open to showing that he is ready to download, but rest in this window of bhox. I press cancel and try to open once again, if the chance that it opens this file, otherwise it takes forever forceing me to cancel. Very small files most of the time, usually between 50 KB should take seconds.

    I even tried to save the files, but once again the same process. The transfer case remains open but does not download.

    One of the ideas.

    Thanks in advance.

    Hello

    It is not easy to tell exactly what is happening, but it must be something with the e-mail account provider and their page. For me, this case is not a typical problem of Vista, but you can try to find the solution on Vista from Microsoft IT Pro forum.

    By the way: you have an alternative email by another provider address? Is it the same situation?

  • HP ENVY 15-j110, takes too long to start

    Hey guys I have HP ENVY 15-j110 I bought recently, but now, after a month it takes too long to open and sometimes only a black screen.

    He

    Product number is this #ACJ F6C58PA

    answer as soon as possible.

    This could be due to the application running in the back ground and starting applications. Try

    Selective startup:

    http://Windows.Microsoft.com/en-us/Windows/Run-Selective-startup-system-configuration#1TC=Windows-7

  • Take too long time to come for Windows

    Hello

    I have Pavilion g6-2031se and of the last two days it takes too long to come to Windows. I faced this problem for the first time and I do not use my notebook for Skype, Facebook and only very light work. Can someone help me with this?

    Thank you

    Ganga

    @Ganga,

    No worries, I would like you to try a clean boot. This allows the computer to boot without unnecessary programs or offers to start with it.  When you open this document of croll to the section "How to perform a clean boot" once listed there to expand the section for your operating system to get the appropriate instructions.

    Once you have made the appropriate changes, restart the computer at least 3 times and see if you notice a difference not how long it takes to start.

    Please answer as soon as possible.

    Thank you

  • After the upgrade of RAM it take too long to begin and start windows.

    Original title: laptop

    Hello

    I have (HP compaq presario V6615EN)
    Core 2 duo 1.83 GHz
    2 GB OF RAM
    Windows vista Home premium 32-bit
    It took 20 seconds to start and windows boot
    (Yes, only 20 seconds)
    When I upgraded my ram to 4 GB it takes too long to start and windows boot
    nearly 160 seconds

    Hello

    1 - is the operating frequency of the matches with the 'old' RAM newly installed?
    2. how many RAM sticks are there?

    Let's try the following steps:

    Also launch memory diagnostic tool. How will I know if my computer has a memory problem?

    http://Windows.Microsoft.com/en-in/Windows-Vista/how-do-i-know-if-my-computer-has-a-memory-problem

    If there are 2 RAM sticks, remove one RAM Strip and check the speed. You can also try to swap the RAM sticks and check.

    For more help, I suggest that you post your question in the HP support forum.

    http://h30434.www3.HP.com/PSG/

  • LaserJetPro HP 1102w impression takes too long

    Hello

    I installed HP 1102w on my laptop using the driver from the CD. Printing is configured using USB and ePrint is disabled.

    Printing takes very long (18 s). When I send a print job (even test page), I don't see that it appears in the printer job window liquid. However until I see that some data has been sent to the printer (for example 4 KB / 146kb) time is about 9 seconds. To start sending data up to what the page is printed is another second 8-9 so time total is Reiver 18 seconds in the best of cases.

    My laptop is:

    Windows Visa Business, 3 GB of RAM, Dual-Core clocked at 1.6 GHZ, SSD drive 120 GB.

    I tried to install the XPS (planned it will be faster) driver for this printer however failed to install with the 0x070c error code.

    Please have a tip how to print faster (reduce the time of 8 seconds until that data is sent to the printer)

    Thank you

    Miro.

    Hi @MKLI ,

    I see by your post that the printer takes too long to print in a USB connection. I would like to help you today.

    What kind of documents you print? (PDF, Txt)

    Have what applications you tried?

    Try a different file or application to see if you have the same results.

    Try and print a self-test on the printer hardware to see if it is a hardware or software problem.

    Printing a Configuration Page. Select the method two.

    Make sure the printer is connected directly to a wall outlet and the USB cable is connected directly to the computer. The USB cable should not be more then 6 feet. Try a different USB port on the laptop. Some ports are higher power then others. You may need to try another USB cable to see if that causes this problem.

    Check the power on the computer to see if that is causing the problem.

    How to make in the Windows Device Manager?

    Go to Device Manager, under Bus for each made USB root hub controllers right click and left click on properties, for the management of the power supply remove the check box for "allow the computer to turn off this device to save energy. It allows the computer to restrict or cut off the power for this unit.

    Restart the spooler to print on the laptop.

    Click Start (), type services.msc in the Search box and press ENTER.

    Find the service named print spooler, right click and select Properties. Click on stop and then click Start.
  • LaserJet pro m401dne: fatal error, takes too long to connect with the printer

    Downloaded the driver of HP software, started installation and got to the point where it says to connect the printer, did, he recognizes it, start the data transfer and just takes forever. After ten minutes, I get fatal error takes too long to communicate with the printer, if aging persists restart the computer and try again.

    I've made this 3 times now and same result.

    Since my laptop doesn't have a cd drive, I copied the cd to a flash drive and installed the software from that. Worked perfectly. Something must be missing or corrupted download. Anyway problem solved

  • My computer became very slow (startup takes a huge time and even my internet browser takes too long to load.

    Original title: slow down the computer

    Hello world

    I am running a Win7 on an hp w1858 pavilion. My computer became very slow (startup takes a huge time and even my internet browser takes too long to load. I use Google Chrome btw)

    I also have Norton Security Suite via Comcast which shows that my system is clean, so I don't really know what the problem is. I would be grateful :) all tips thank you

    Yes svchost.exe is eating all your cpu about

    Cause the most common was that the windows update system stuck

    Please go to start and Panel and Windows updates

    On the top left click on change settings update.

    Switch to never look for updates,

    After the above, restart your machine.

    After reboot see if these updates are installed if not install it.

    KB3161664 main download page

    https://TechNet.Microsoft.com/library/security/MS16-073

    Win 7 32 bit

    https://www.Microsoft.com/en-US/Download/details.aspx?ID=52823

    Win 7 64 bit

    https://www.Microsoft.com/en-US/Download/details.aspx?ID=52794

    Same deal with it if it is not already installed

    Main download page,

    https://support.Microsoft.com/en-us/KB/3161608

    Win-7 32-bit

    https://www.Microsoft.com/en-US/Download/details.aspx?ID=52976

    Win-7 64-bit

    https://www.Microsoft.com/en-US/Download/details.aspx?ID=52974

    Once the two of them are installed,

    Change your settings to update them and manually check the updates, if this is not after the passage of the parameters and save the changes.

  • Windows update takes too long to find the updates

    I had just installed a new hard drive on my laptop Dell inspiron N5050. I did a reinstall of system clean of my operating system to windows 7. After that, I started to run windows update to get all the necessary updates that I need to update completely from the computer. He has worked for a very long time with no result. In addition, at least 2 hours. all the settings for windows update is set to the settings recommended. but for some reason, in my view, takes too long to get updates. can someone help me please this possible issue

    Hello Darrin,

    Thanks for posting your query on the Microsoft Community.

    According to the description, the Windows updates take a long time to find the updates.

    I suggest to follow the methods below and check if that helps.

    Method 1: If your computer is experiencing problems find and install updates of the operating system, try using the troubleshooter.to of update of Windows the problem fix. He makes sure your computer is connected to the Internet and checks to see if your network card and Windows Update services are running properly.

    Reference:

    Open the Windows Update troubleshooting tool

    If the problem persists, try Method 2,

    Method 2: run the clean boot: Place your system in the clean boot state helps determine if third-party applications or startup items are causing the problem. Check this question in the clean boot state.

    Reference: How to perform a clean boot in Windows

    http://support.Microsoft.com/kb/929135

     

    Note: After the boot minimum troubleshooting step, read the sections "How to reset the computer to start as usual after a clean boot troubleshooting" in the link provided to return the computer to a Normal startup mode.

    See also:

    Problems with installing updates

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • Windows 7 takes too long to respond

    Whenever I restart Windows 7 and once connected, the hard drive turns on indicating continue the constant disk activity. The hard drive light is on steadily (without blinking). This condition persists for 10 to 15 minutes during which all applications are extremely slow to react.

    Once the constant hard disk activity, the system works normally, but largely, I would prefer to start using the system shortly after the start without having to wait for what is causing the disk activity hard finish...

    even close an application as WORD takes too long and very often, he says don't ANSWER DO NOT

    Thank you very much in advance for your suggestions on how to track what is happening and the difficulty of potentiall!

    You connect to the internet using wireless or ethernet cable? An ethernet cable gives better download speeds and is particularly useful when you perform a large download.

Maybe you are looking for

  • A few questions about iCloud backup

    -If I backup my data to iCloud from an Iphone (iMessage, SMS, calls, Whatsapp story) and then attempt to restore this backup on a new iPhone with a SIM card different, using the same iCloud account, he would restore the history of calls, SMS, history

  • Using the letters on the keyboard?

    I just got a Droid X. When I try to access my voicemail, my password is not the figures, it's letters. How can I use the letters on the keyboard?

  • Cannot find the sreensaver on the computer

    I can't find my screen saver that was on my computer. We can I find it? Please help me to find I don't know were to go

  • My bb 9380 blackBerry smartphones does not "just bought it.

    I bought a blackberry curve 9380 Frankfurt and the i came to Egypt and I tried to open it, I opened would'nt, I tried to charge it and I tried to connect it to my pc, the glowing kept led then it turns off then a battery reappears with lightning insi

  • Bolld of Smartphones blackBerry 9900

    I recently bought a bold 9900 used (as in a few hours ago) and will have questions by clicking applications on the House with the trackpad Control Panel. I can see and scroll through all the different applications on my control panel, but when I clic