Adpatch 9239089 taking time for Updating Snapshot Tables

Hi,
I am upgrading Apps R12.1.1 to Apps R12.1.3 . Applying patch 9239089 as prerequisite of patch 9239090.
This patch is taking much time and Updating Snapshot Tables as below
No of records processed =205032 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:04:15
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:04:17
No of records processed =210033 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:06:37
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:06:38
No of records processed =215033 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:08:57
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:08:58
No of records processed =220034 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:11:17
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:11:18
No of records processed =225034 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:13:36
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:13:37
No of records processed =230035 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:15:56
Done Updating Snapshot Tables for the above rows...End Time:Sun Nov 20 2011 11:15:57
No of records processed =235035 Updating Snapshot Tables...Start time:Sun Nov 20 2011 11:18:16
Done Updating Snapshot Tables
Please see if there is any issue or how can avoid to updating snapshot tables.
Regards,
Raj

Hi Raj,
I am using shared appl_top on NFS file system , and this patch is using the NFS file system . So this issue could be NFS file system.
when I am performing any write intensive operation on NFS file system it is taking huge time. adadmin utility is also taking muchtime to invoke.I also applied the same patch on a shared APPL_TOP but never had any performance issue.
So I need some oracle recommendation to use NFS file system or how performance can be tune of nfs file system.?Have you tried to maintain snapshot via adadmin before applying the patch and see how it behaves?
Oracle Applications Maintenance Utilities
http://www.oracle.com/technetwork/documentation/applications-167706.html
Thanks,
Hussein

Similar Messages

  • API for updating pay_people_groups table..

    Hi,
    Is there any API for updating pay_people_groups table. I know we can do it using hr_assignment_api.update_emp_asg_criteria but this API updates the assignement with the new pay_group_id. I want to know is there is any API which can only update the pay_people_groups and not the assignment.
    Regards,
    Shabana.

    Hi,
    Technically you want update values for people group. If you remember At the time of definition of people group you created value set and attached people group flex field.
    People group are created on the basis of combination of segments. So you have to update only values not people group.
    I doubt oracle provides API to update key flex field.
    You may get API to update values try out that option.
    Hope this helps.
    Sathish

  • Taking time in updating the dml form

    Hi friends
    i have made a dml form and that form is updating one of my table. there is a report on basis of that from where one edit button is there. Once i am clicking the edit button it is redirecting me to the form of that record to edit the fields value. when i am trying to edit the field value it is taking time to update it. but this is working fine with development.
    suggest something on this. what could be the reason?
    Regards

    Hi,
    I do not think it relates to your Apex.
    Do you have it in some other places?
    Your DBA may investigate and put traces.
    If you check Google on ora-02049 or Oracle docs about this error, you will be sure that it is on Db level
    Regards
    Oleg
    Edited by: oleg.lihvoinen on Feb 6, 2010 3:02 PM

  • This window service has timer for update record once in a day at 5 pm.

    Hi Guys Please help me.
    Actully i create a window service. This window service has timer for update record once in a day at 5 pm.
    I have write a code but it is not working fin
    Here is my code.
    App.Config File:-
    <appSettings>  
        <add key="IsTrace" value="YES"/>
        <add key="SourceServerPath" value="Server=DATASERVER\SQL2008R2;database=WDSBHN;User ID=Wireless;pwd=chetu@123"/>
        <add key="ArchiveServerPath" value="Server=CHETUIWK091\SQL2008R2;database=Demo;User ID=sa;pwd=Chetu@123"/>
        <add key="ReportHour" value="22"/>
        <add key="ReportMinut" value="01"/>
        <add key="ReportSecond" value="20"/>
        <add key="ReportMilisecond" value="230"/>
        <add key="DailyTimer" value="tmrProductionDataTransfer"/>
        <add key="MonthlyTimer" value="tmrProductionCleanUp"/>
        <add key="ActionParameter" value="WDS-DataTransfer"/>
      </appSettings>   
    Vb.Net Code:-
    Protected Overrides Sub OnStart(ByVal args() As String)
            ' Add code here to start your service. This method should set things
            ' in motion so your service can do its work.
            Try
                LoggingTracing.WriteTrace("DataTransfer Service START " & Now.ToLongDateString & " " & Now.ToLongTimeString())
                '***Get the Time of service run
                Dim svcRunTime As System.DateTime = Configuration.ConfigurationManager.AppSettings("ServiceRunTime")
                '***differance of these two time
                Dim ts As TimeSpan = DateTime.Now.Subtract(svcRunTime)
                '***production data transfer
                tmrProductionDataTransfer.Enabled = True
                tmrProductionDataTransfer.Interval = 1000
                tmrProductionDataTransfer.Start()
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    Private Sub tmrProductionDataTransfer_Elapsed(sender As Object, e As Timers.ElapsedEventArgs) Handles tmrProductionDataTransfer.Elapsed
            Try
                Dim time As Date = Date.Now
                Dim currHour As Integer
                Dim currMinute As Integer
                Dim currnSecond As Integer
                Dim reportHour As Integer
                Dim reportMinute As Integer
                Dim reportSecond As Integer
                Dim reportMiliSecond As Integer
                Dim actionParameter As String = Configuration.ConfigurationManager.AppSettings("ActionParameter")
                Dim actionTimerName As String = Configuration.ConfigurationManager.AppSettings("DailyTimer")
                currHour = time.Hour
                currMinute = time.Minute
                currnSecond = time.Second
                reportHour = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportHour"))
                reportMinute = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMinut"))
                reportSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportSecond"))
                reportMiliSecond = Convert.ToInt32(Configuration.ConfigurationManager.AppSettings("ReportMilisecond"))
                If currHour = reportHour AndAlso currMinute = reportMinute AndAlso currnSecond = reportSecond Then
                    ObjProductionDataTransfer.CopyDataToArchiveServerDayWiseDL(Configuration.ConfigurationManager.AppSettings("SourceServerPath"), Configuration.ConfigurationManager.AppSettings("ArchiveServerPath"),
    actionTimerName, time, actionParameter)
                End If
            Catch ex As Exception
                LoggingTracing.WriteError(ex.ToString())
            End Try
        End Sub
    It is running at 5 pm , but run 3 times, for that records has updated 3 time 
    How i can resolve it, If any problem in this code please give me the write direction or code. And this thing i have been searching for 3 days , but stile i didn't get any solution
    sonesh

    Sonesh,
    Sorry but you have posted to a forum that deals exclusively with questions/issues about customizing and programming Microsoft Project, a planning and scheduling application. I suggest you delete this post and find a more appropriate forum.
    John

  • XD02 transaction to change the customer data for updating KNA1 table?

    Hi all,
    How can we use XD02 transaction to change the customer data for updating KNA1 table?
    Give the steps.
    Thanks in advance
    rk

    Hi KR,
    Why don't u use BDC to run XD02.
    With Regards,
    Zafar Ali

  • Down time for 2LIS_03_BX setup table

    Hello SDN,
    I have data reconcilation issue in my BW server for inventort managenent, for data source 2LIS_03_BX and 2LIS_03_BF. For this I have to refill setup table of 2LIS_03_BX in R3 server. For filling setup table for R3 system I need to ask for down time from cleint
    I NEED TO KNOW HOW DO I CALCULATE REQUIRED DOWN TIME FOR FILLING SETUP TABLE FOR DATA SOURCE 2LIS_03_BX.

    Dear Pravender,
    I understand your statement (" For the complete load, check in how much time you can do initialization? That much down time only you need, later you can fill setup tables for history data and load.") as to follow following steps:
    1. In the down time, start initialization without data transfer info package in BIW for 2LIS_03_BF and 2LIS_03_UM.
    2. Then during up time (after releasing down time, transactional data posting allowed in R3), fill setup table for 2LIS_03_BX.
    3. Run full upload info package for 2LIS_03_BX
    4. Start Delta info package for data sources 2LIS_03_BF and 2LIS_03_UM
    Let me know if I am right for the above procedures. These steps will allow us take very less down time.
    Thanks for the reply
    Regards,
    Jaydeep
    Edited by: Jaydeepsinh Rathore on Sep 4, 2009 8:23 AM

  • When I updated my iphone 5 to ios8 the apps is taking time to update? And as of now it's been 2-1/2hrs. none of the apps are updated?

    The apps on iphone 5 ios8 is taking time to update 2-1/2 hrs to be exact 7 none of the apps have finished updating?

    Hi bH0n,
    If you are still having issues with stuck or hung updates to your apps on your iPhone, you may want to try resetting your iPhone (as outlined in the following article) and see if the updates restart and complete:
    Turn your iOS device off and on (restart) and reset
    Regards,
    - Brenden

  • I installed mountain lion over snow leopard and my macbook pro 13" taking time for login and logout,

    i installed mountain lion over snow leopard and my macbook pro 13" taking time for login and logout.. any solution

    Hi JoeyR.  Well, according to this link at the Apple Store, OS X Moutain Lion became available in July and I downloaded it for $19.99.  I figured I would do that before renewing my Norton security SW.  Are we talking about the same thing?
    http://www.apple.com/osx/

  • Last Logon date and Logon time not updating in table USR02

    Hi,
    Please help us on this. After customer successfully logged in the webshop, we are checking the table USR02 in CRM system and the Logon date and Logon time is not updated. Because of this, the customer will be locked after certain number of days. When we check it in ECC system, customer's last logon date and time is updated. Can you tell us what could be causing this? Any advise what we need to check? Thanks in advance!
    Regards,
    Mike

    Hi
    1. Please check if the USAPPLREF table in ECC has the correct mapping done between the LOGON User and the Sold-to party (Customer)
    2. Please check the validity of those user in SU01 user data.
    3. Please check the USERS data from the USERADMIN Link (if it is configured in your scenario through XCM settings for USERS)
    Hope this will help.
    Regards

  • FOR UPDATE OF table.field

    Why does the following not work
    create table division (code varchar2(2) primary key, div_desc varchar2(20));
    insert into division values ('01', 'Ninja assassins');
    insert into division values ('02', 'Working for the man');
    create table employees (tk number, first_name varchar2(10), last_name varchar2(10), code varchar2(2) references division(code));
    insert into employees values (1, 'Chuck', 'Smith', '01');
    insert into employees values (2, 'John',  'Smith', '02');
    DECLARE
      CURSOR my_csr IS
        Select e.tk, e.first_name, e.last_name
        From employees e, division d
        Where e.code = d.code
          and e.code = '01'
          and e.last_name = 'Smith'
        For update;
        cnt_updated NUMBER;
    BEGIN
      cnt_updated := 0;
      FOR my_row IN my_csr
      LOOP
        Update employees
        Set last_name = 'Forbes'
        Where current of my_csr;
        cnt_updated := cnt_updated + SQL%ROWCOUNT;
        dbms_output.put_line('You updated '||cnt_updated||' records');
      END LOOP;
    END;but just adding to the "for update" clause allows for an update?
    DECLARE
      CURSOR my_csr IS
        Select e.tk, e.first_name, e.last_name
        From employees e, division d
        Where e.code = d.code
          and e.code = '01'
          and e.last_name = 'Smith'
        For update *of e.tk*;We found this out recently, and fellow Developers are asking "Why?". Is there a documented reason, or is that just how it is?
    Thanks,
    --=Chuck

    It is not about locking it is how oracle translate the "where current". it is a simple rowid.
    did a little trace, and look what I got from 10046 trace file:
    For the update without the "update of", look at the 0 at the cr in the plan,
    Oracle already knows that this update will not do anything:
    PARSING IN CURSOR #6 len=62 dep=1 uid=82 oct=6 lid=82 tim=88904356722 hv=1877266405 ad='1a9b0404' sqlid='5a5zpz5ry9mz5'
    UPDATE EMPLOYEES_T SET LAST_NAME = 'Forbes' WHERE ROWID = :B1
    END OF STMT
    PARSE #6:c=0,e=258,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,tim=88904356717
    BINDS #6:
    Bind#0
      oacdty=208 mxl=3950(3950) mxlc=00 mal=00 scl=00 pre=00
      oacflg=00 fl2=206001 frm=00 csi=00 siz=3952 off=0
      kxsbbbfp=0c2ef090  bln=3950  avl=00  flg=05
    EXEC #6:c=0,e=1108,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,tim=88904357955
    STAT #6 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE  EMPLOYEES_T (cr=0 pr=0 pw=0 time=0 us)'
    STAT #6 id=2 cnt=0 pid=1 pos=1 obj=74422 op='TABLE ACCESS BY USER ROWID EMPLOYEES_T (cr=0 pr=0 pw=0 time=0 us cost=1 size=29 card=1)'for the update with the "update of", look at the 1 at the cr in the plan:
    PARSING IN CURSOR #6 len=62 dep=1 uid=82 oct=6 lid=82 tim=88913977309 hv=1877266405 ad='1a9b0404' sqlid='5a5zpz5ry9mz5'
    UPDATE EMPLOYEES_T SET LAST_NAME = 'Forbes' WHERE ROWID = :B1
    END OF STMT
    PARSE #6:c=0,e=87,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,tim=88913977304
    BINDS #6:
    Bind#0
      oacdty=208 mxl=3950(3950) mxlc=00 mal=00 scl=00 pre=00
      oacflg=00 fl2=206001 frm=00 csi=00 siz=3952 off=0
      kxsbbbfp=09f3abfc  bln=3950  avl=13  flg=05
      value=
    Dump of memory from 0x09F3ABFC to 0x09F3AC09
    9F3ABF0                            22010001              [..."]
    9F3AC00 000400B6 00780401 00000000           [......x.....]   
    EXEC #6:c=0,e=379,p=0,cr=1,cu=1,mis=0,r=1,dep=1,og=1,tim=88913977802
    STAT #6 id=1 cnt=1 pid=0 pos=1 obj=0 op='UPDATE  EMPLOYEES_T (cr=1 pr=0 pw=0 time=0 us)'
    STAT #6 id=2 cnt=1 pid=1 pos=1 obj=74422 op='TABLE ACCESS BY USER ROWID EMPLOYEES_T (cr=1 pr=0 pw=0 time=0 us cost=1 size=29 card=1)'Also notice that in the update version with the "update of" we can see dump of memory.
    There are some binds type that oracle won't show directly in the dump (e.g. timestamp, rowid, etc)
    For future, more hex oriented readers here is the rowid from table:
    SQL> select rowid from employees_t;
    ROWID
    AAASK2AAEAAAQR4AAAIf, somebody out there, can show me a way to read the memory dump back into the real rowid,
    I will be very happy.
    Amiel

  • Initial download taking time for CTParts in syclo inventory manager 3.2

    Hi All,
    While doing the Initial download in syclo inventory manager 3.2 we have observed that it is taking a lot of time for fetching the data from the complex table CTParts.
    In agentry diagram CTParts complex table is showing nine fields, out of this nine fields few fields like UOM, BatchIndicator etc does not have any dependency.So can i delete those fields?
    If yes, what will be the impact on application after deleting those fields .
    Thanks for your help
    -Garima
    Tags edited by: Michael Appleby

    Garima,
    You  need to analyze couple of things before making any program changes:-
    a) Can you check if you have set filter for ctparts MDO object in SAP ?  if MDO filter for plant points to user parameter "WRK'  , look at value of WRK in SU3.  Make sure that you have plant value maintained for WRK parameter.
    b) if indeed WRK value is maintained then go to MARC and check the number of  materials that exists for WRK  plant. if it is too many then do you  really all those materials downloaded to Mobile device ? check if you can maintain other filters values to restrict material records downloaded like material type , material group etc.
    c) Check  the point of bottlecheck a) whether it takes more  time to execute query in SAP . b) whether it takes time to transfer data from SAP to Java layer.  if so try to increase Java heap size.
    d)  Also look at MDO  field selections for ctparts in SAP. Only  select fields that you want to do.
    e) Did you create additional indexes for ctparts  complex table ?
    f)  Finally if nothing works then look at option of replacing output structure in BAPI  which return CTparts with Z structure with only required 9 fields which also  requires Z Java code changes for ctparts complex table.
    Thanks
    Manju.

  • Module pool - for updating Z table

    Moderator message: please using a more meaningful subject.  I've edited it for you this time.
    Hi i have a reuire ment like  this.
    i want to update Z table, by using report program.report is having selection screen ti select data from Z table and to disply in a screen like SM30, i am displying in table control using screen.and i am updating Z table.
    i want to display the selection screen data which ever i have given just above the table control which ever i am displaying now.
    can any body help me out pls.
    Regards
    naidu

    Hi palani thanks for reply.
    i tried in this way already but the problem is we dont know how many values user  will enter to define, suppose if user may enter 1000 entries in one selection field  or beyond that also.
    in this case again the problem.
    and one more thing suppose i ahve selection screen like this
    company code   parameter               mandatory
    sales org.          ranges
    division              ranges
    KUNNR               ranges
    if suppose user entered only mandatory value, and KUNNR we need to display only those two in output, but here in module pool by using screen table if we disable the screen two blank lines will come.
    ex
    cmpany code 0001
    KUNNR         from 1000 TO 2000.
    expected result for this is
    cmpany code 0001
    KUNNR         from 1000 TO 2000.
    i used scren-input for this but ididnt get,
    could you please help me in this.
    thanks and regards
    naidu

  • User exit/BADI for updating custom table in MB1B transaction-

    Dear All,
    When performing a material to material conversion in MB1B transaction for  batch managed materials,system is creating a new batch by copying the characteristics of issuing material/batch.The details of the new batch created are updated in standard batch tables(MCH1,MCHA,MCHA).
    The requirement is when the new batch is created,the batch details and characteristics has to be stamped in a custom table.
    Kindly suggest a user exit/BAIi available for updating the same in the custom table.
    Regards,
    Deepak

    Deepak, Exits for MB1B are
    MBCF0002            Customer function exit: Segment text in material doc. item
    MBCF0005            Material document item for goods receipt/issue slip
    MBCF0006            Customer function for WBS element
    MBCF0007            Customer function exit: Updating a reservation
    MBCF0009            Filling the storage location field
    MBCF0010            Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0011            Read from RESB and RKPF for print list in  MB26
    MB_CF001            Customer Function Exit in the Case of Updating a Mat. Doc.

  • Performance manager sql action rule for updating metric table

    Hi, I need to update metric stop_date using a sql action rule (Performance Manager execute sql action rule). My problem is I can't update stop_date into the PM Repository Database. Sql action database connection is properly set, but when I set sql for executing update in table ci_probe and I schedule the rule the system doesn't seem to connect to Database (the rule run successfully, but the table ci_probe is not updated). I don't understand if the problem is database connection or wrong sql code.
    Can Anyone help me with suggestions or sql action rule samples?
    Thanks
    Luigi
    Edited by: Luigi Oliva on Jun 13, 2008 1:32 PM

    Hi It's working, Problem was in repeat_interval it's working now,
    Thanks,
    I changed
      repeat_interval          => 'FREQ=DAILY;BYSECOND=10',to
      repeat_interval          => 'FREQ=SECONDLY;BYSECOND=10',Thanks,
    Edited by: NSK2KSN on Jul 26, 2010 11:14 AM

  • How to write a procedure for update the table

    Hi all
    can any body please tell me how to write a procedure to update the table......
    I have a table with about 10,000 records...........Now I have add a new column and I want to add values for that like
    registration Code Creidits
    13213 BBA
    1232 MCS
    I had add the creidit now i want to update the table.........the new value want to get by SQL like
    Creidit = select creidit from othere_table...........
    Hope u can understand my problem
    Thanks in advance
    Regards
    Shayan
    [email protected]

    Please try the following --
    update Program_reg a
    set TotalCreidit = ( select tot_cr <Accroding to your logic>
                                from Program_reg b
                                where a.Registration = b.Registration
                                and    a.Enrollment = b.Enrollment
                                and    a.code = b.code
    where a.Registration in ( select distinct Registration
                                        from Program_reg );
    N.B.: Not Tested....
    Regards.
    Satyaki De.

Maybe you are looking for