BW Job Taking more time than normal execution time

Hi,
Customer is trying to extract data from R/3 with BW OCPA Extractor.
Selections within Infopackage under tab Data Selection are
0FISCPER = 010.2000
ZVKORG = DE
Then it is scheduled (Info Package), after this monitor button is selected for the scheduled date and time, which gathers information from R/3 system is taking approximately 2 hours which used to take normally minutes.
This is pulling data from R/3 which is updating PSA, the concern is the time taken for pulling data from R/3 to BW.
If any input is required please let me know and the earliest solution is appreciated.
Thanks
Vijay

Hi Vijay,
If you think the data transfer is the problem (i.e. extractor runs for a long time), try and locate the job on R/3 side using SM37 (user ALEREMOTE) or look in SM50 to see of extraction is still running.
You can also test the extraction in R/3 using tcode RSA3 and use same selection-criteria.
If this goes fast (as expected) the problem must be on BW side. Another thing you can do is check if a shortdump occurred in either R/3 or BW -> tcode ST22. This will often keep the traffic light on yellow.
Hope this helps to solve your problem.
Grtx,
Marco

Similar Messages

  • When i put my Mac for sleep it takes more time than normal ( 20 secs). Sometimes, coming back from sleep the system is not responding (freeze).

    When i put my Mac for sleep it takes more time than normal (>20 secs). Sometimes, coming back from sleep the system is not responding (freeze).

    Perform SMC and NVRAM resets:
    http://support.apple.com/en-us/HT201295
    http://support.apple.com/en-us/HT204063
    The try a safe boot:
    http://support.apple.com/en-us/HT201262
    Any change?
    Ciao.

  • Layout taking more space than necessary...

    Hi folks...my applet has two panels inside it arranged in a flowlayout. The first panel is a 5 row x 1 col gridlayout, and the second is working fine. The problem with the first one is that that it is taking more space than necessary and going out the bottom of the applet. Now if I do this in appletviewer, resizing the window by a few pixels will make it relayout the panel and everything looks fine, but of course you can't ask people to do that =) What's the problem here? I've tried validating both the applet and the problem panel, and tried invalidating it first. Any ideas? thanks!

    Here is the first half of it...it has all the relevant info. I took out the validate stuff 'cause it wasn't helping.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Hashtable;
    public class Spit extends Applet implements KeyListener {
         Hashtable images = new Hashtable();
         CardPacket myPacket;
         PlayerCardPile[] myPiles;
         Hand myHand;
         CardPacket oppPacket;
         PlayerCardPile[] oppPiles;
         Hand oppHand;
         MainCardPile[] mainPiles;
         CardPile takenFrom;
         private final int WIDTH = 700;
         private final int HEIGHT= 800;
         Graphics offscreen;
         Image image;
         ChatPanel theChatPanel = new ChatPanel(this);
         public final int HAND = -1;
         public final int PACKET = -2;
         public final int LEFT_MAIN_PILE = 0;
         public final int RIGHT_MAIN_PILE = 1;
         boolean pendingMainPileMove = false;
         Panel gameSpace = new Panel();
         public void init() {
              loadImages();
              initPiles();
              placePiles();
              addKeyListener( this );
              myPacket.addKeyListener( this );
              mainPiles[0].addKeyListener( this );
              mainPiles[1].addKeyListener( this );
              for( int i = 0 ; i < 5 ; i++ )
                   myPiles.addKeyListener( this );
              image = createImage( WIDTH, HEIGHT );
              offscreen = image.getGraphics();
              myPacket.requestFocus();
         public void loadImages() {
              MediaTracker t = new MediaTracker(this);
              for( int i = Card.CLUB; i <= Card.SPADE ; i++ )
                   for( int j = Card.ACE; j <= Card.KING; j++ )
                        images.put( Card.toString(i,j),
                             getImage(getCodeBase(),"images/"+Card.toString(i,j)+".gif") );
              images.put( "back", getImage(getCodeBase(),"images/back.gif") );
              // wait for all images to finish loading
              try {
                   t.waitForAll();
              }catch (InterruptedException e) {}
              // check for errors //
              if (t.isErrorAny()) {
                   showStatus("Error Loading Images!");
              else if (t.checkAll()) {
                   showStatus("Images successfully loaded");
         public void dealNewGame() {
              emptyPiles();
              Deck theDeck = new Deck( images );
              for( int i = 0 ; i < 26 ; i++ )
                   oppPacket.add( theDeck.getCard(i) );
              for( int i = 26 ; i < 52 ; i++ )
                   myPacket.add( theDeck.getCard(i) );
              theChatPanel.sendCardPackets( oppPacket.toString() , myPacket.toString() );
              dealMyPacket();
              dealOppPacket();
              repaint();
         public void dealMyPacket() {
              for( int i = 0 ; i < 5 && myPacket.numCards() > 0 ; i++ ) {
                   for( int j = i ; j < 5 && myPacket.numCards() > 0 ; j++ ) {
                        Card temp = myPacket.remove();
                        if( j == i )
                             temp.flip();
                        myPiles[j].deal( temp );
                   myPiles[i].repaint();
         public void dealOppPacket() {
              for( int i = 0 ; i < 5 && oppPacket.numCards() > 0 ; i++ ) {
                   for( int j = i ; j < 5 && oppPacket.numCards() > 0 ; j++ ) {
                        Card temp = oppPacket.remove();
                        if( j == i )
                             temp.flip();
                        oppPiles[j].deal( temp );
                   oppPiles[i].repaint();
         public void setPackets( String strMyPack , String strOppPack ) {
              emptyPiles();
              myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
              oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
              dealMyPacket();
              dealOppPacket();
         public void setOppPacket( String strOppPack ) {
              String strMyPack = myPacket.toString();
              emptyPiles();
              myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
              oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
              dealMyPacket();
              dealOppPacket();
         public void emptyPiles() {
              myPacket.makeEmpty();
              oppPacket.makeEmpty();
              myHand.makeEmpty();
              oppHand.makeEmpty();
              for( int i = 0 ; i < 5 ; i++ ) {
                   myPiles[i].makeEmpty();
                   oppPiles[i].makeEmpty();
              mainPiles[0].makeEmpty();
              mainPiles[1].makeEmpty();
         public void initPiles() {
              myPacket = new CardPacket();
              myPiles = new PlayerCardPile[5];
              myHand = new Hand();
              oppPacket = new CardPacket();
              oppPiles = new PlayerCardPile[5];
              oppHand = new Hand();
              mainPiles = new MainCardPile[2];
              for( int i = 0 ; i < 5 ; i++ ) {
                   oppPiles[i] = new PlayerCardPile();
                   myPiles[i] = new PlayerCardPile();
              mainPiles[0] = new MainCardPile();
              mainPiles[1] = new MainCardPile();
         public void placePiles() {
              Panel row1 = new Panel();
              row1.add( (Component)oppHand );
              row1.add( (Component)oppPacket );
              Panel row2 = new Panel();
              for( int i = 4 ; i >= 0 ; i-- )
                   row2.add((Component)oppPiles[i]);
              Panel row3 = new Panel();
              row3.add( mainPiles[0] = new MainCardPile() );
              row3.add( mainPiles[1] = new MainCardPile() );
              Panel row4 = new Panel();
              for( int i = 0 ; i < 5 ; i++ )
                   row4.add((Component)myPiles[i]);
              Panel row5 = new Panel();
              row5.add((Component)myPacket);
              row5.add((Component)myHand);
              gameSpace.setLayout( new GridLayout(5,1) );
              gameSpace.add(row1);
              gameSpace.add(row2);
              gameSpace.add(row3);
              gameSpace.add(row4);
              gameSpace.add(row5);
              this.add( gameSpace );
              this.add( theChatPanel );
              this.setBackground( Color.white );
              gameSpace.setBackground( Color.white );
              theChatPanel.setBackground( Color.white );
    public void paint( Graphics g ) {
              super.paint( offscreen );
              offscreen.setColor(Color.white);
              offscreen.fillRect(0,0,WIDTH,HEIGHT);
              g.drawImage(image,0,0,this);

  • UTC Date Time and Normal Date Time

    Hi All,
    1. How UTC date time and Normal date time differs in siebel.
    2. If legacy data needed to be loaded into siebel, in siebel few fields are date time and UTC date time fields. what would happen if we load both normal date time and UTC date time without considering them techinically?
    3. UTC date time holds any specific format in physical database? If we want to load legacy data to UTC date time format what is the query to manipulate it?
    Thankyou
    Sean

    Sean,
    Please check document below, I believe it has most of the answers to the questions you have:
    http://download.oracle.com/docs/cd/E14004_01/books/GlobDep/GlobDepUTC.html
    Hope it helps,
    Wilson

  • MRP Job taking more time

    Dear Folks,
    We run the MRP at MRP area level with total 72 plants..Normally this job takes 3 to 4 hour to complete...but suddenly since last two weeks it is taking more than 9 hours. with this delaying business is getting problem to send the scheudles at proper time and becomes critical issue.
    Now anybody have idea to check the root causes of this delay? And how to reduce the time... We have already processing this job with parallel processing.
    Reasonable answer will get full points.
    Regards
    TAJUDDIN

    Hi TAJUDDIN
    Unfortunately, I do not have any documents related to parallel processing.
    But I can explain how to do, So I hope following explanation help you.
    1. At first you need to check whether current parallel MRP works fine or not.
        To do this, please check MRP result in the spool.
         (In the last page of spool, you can see the result task use of each WP.
          To open last page of spool, just go to SM37 and find MRP job and then
          press spool button. Now you will see spool overview.  But before open
          spool please change page setting that you will see.
          <From the menu,  Goto=>Display request=>Setting> Then select last
          10 page.  By doing this operation, you can see last 10 page.
    2.In the button of the spool page, you will see task use of MRP.
       For example. if you use 2 application servers and each application server,
       if you assign 3 work process, you will see 6 task.
                             Number of calculated item   Runtime
       AP1 WP1        1000                                  30 min
       AP1 WP2        500                                     5  min
       AP1 WP3        200                                     3  min
       AP2 WP1        200                                     3  min
       AP2 WP2        200                                     3  min
       AP2 WP3        100                                     2  min
      In the log, if you observed above situation, this indicate unbalanced system use.
      (This situation occur depending on your BOM structure). So there is a possibility
      that dispatching system use more equally improve MRP performance.
      To do equal dispatch, you need to de-activate MRP package logic to  bottlneck
       Lowlevel code.(You can see bottlneck item in the spool.  So if you observe
       10 items belongs to lowlevel code 5, it is better to deactivate package logic
       for lowlevel code 5. Then for this lowlevel code, no package logic works and this
       bring to equal distribution of task use).
    The way to de-activate is described in SAP Note 568593  and 52033
       (Until 46C, you need to use modification <manual change coding>. From
        Enterprise, you can use BADI).
    Regarding on package logic, I recommned you to read SAP Note 52033
    (Depending on runtime of former task, MRP combine several item into 1 package.
    So if task 1 finish previous MRP around 60 sec, next MRP for this task will contain
      more material <package comes to contain more material>. But if bottlneck items
      are put in togather in 1 package, this task 1 might take more longer time
      cpmpared to others.  And MRP calculation occur low level code by low level
      code. So if this task 1 does not finish calculation < other task already finish
      MRP calculation>, other task cannot start MRP for next lowlevel. So other task
      have to wait until task 1 finish his MRP.  Due to this, you will see big task usage
      and runtime difference in spool).
    But this behavior depend on BOM structure. So you also have possibility not to see
    this behavior in your spool. In this case, no necessity to consider balancing..
    I hope this help you.
    best regards
    Keiji

  • Issue with background job--taking more time

    Hi,
    We have a custom program which runs as the background job. It runs every 2 hours.
    Itu2019s taking more time than expected on ECC6 SR2 & SR3 on Oracle 10.2.0.4. We found that it taking more time while executing native SQL on DBA_EXTENTS. When we tried to fetch less number of records from DBA_EXTENTS, it works fine.
    But we need the program to fetch all the records.
    But it works fine on ECC5 on 10.2.0.2 & 10.2.0.4.
    Here is the SQL statement:
    EXEC SQL PERFORMING SAP_GET_EXT_PERF.
      SELECT OWNER, SEGMENT_NAME, PARTITION_NAME,
             SEGMENT_TYPE, TABLESPACE_NAME,
             EXTENT_ID, FILE_ID, BLOCK_ID, BYTES
       FROM SYS.DBA_EXTENTS
       WHERE OWNER LIKE 'SAP%'
       INTO
       : EXTENTS_TBL-OWNER, :EXTENTS_TBL-SEGMENT_NAME,
       :EXTENTS_TBL-PARTITION_NAME,
       :EXTENTS_TBL-SEGMENT_TYPE , :EXTENTS_TBL-TABLESPACE_NAME,
       :EXTENTS_TBL-EXTENT_ID, :EXTENTS_TBL-FILE_ID,
       :EXTENTS_TBL-BLOCK_ID, :EXTENTS_TBL-BYTES
    ENDEXEC.
    Can somebody suggest what has to be done?
    Has something changed in SAP7 (wrt background job etc) or do we need to fine tune the SQL statement?
    Regards,
    Vivdha

    Hi,
    there was an issue with LMT's but that was fixed  in 10.2.0.4
    besides missing system statistics:
    But WHY do you collect every 2 hours this information? The dba_extents view is based on really heavy used system tables.
    Normally , you would start queries of this type against dba_extents ie. to identify corrupt blocks and such:
    SELECT  owner , segment_name , segment_type
            FROM  dba_extents
           WHERE  file_id = &AFN
             AND  &BLOCKNO BETWEEN block_id AND block_id + blocks -1
    Not sure what you want to achieve with it.
    There are monitoring tools (OEM ?) around that may cover your needs.
    Bye
    yk

  • Jobs taking more than 3 hrs to complete!!!

    i have a job which creates indexes..
    the job used to get completed within 28 mins..
    however yesterday it took more than 3 hrs and still running..any ideas ??

    however yesterday it took more than 3 hrs Start by checking the execution plans for the historical SQL and ensure that they are the save (see dba_hist_sqlplan). If the execution plans changed, that's a big clue.
    It could be several things:
    - Did you re-analyze stats recently?
    - Could there be contention for data blocks?
    Run a STATSPACK report for both time periods, and you should be able to see the exact issue.
    Hope this helps. . .
    Donald K. Burleson
    Oracle Press author

  • Background job taking more time.

    Hi All,
    I have a background job for standard program RBDAPP01 which is scheduled to run after every 3 minutes.
    The problem is that it takes very long time at particular time everyday.
    Like normally it take 1 or 2 second.
    But at 11.14 it takes approx 1500 seconds to execute.
    Can anybody help me about what may be the reason for this?
    Regards,
    VIkas Maurya

    has it been sucessfully executed..if not then there must be an open loop in the back ground program. Generally a open loop is put in the program for debugging purpose in background programs, if its not removed, the program gets stuck....
    Or if it has been executed successfully...then u have to check the performance...u can make use of st05 or se30..for the same..

  • UAR Job taking more than 36 hours

    Dear GRC Gurus,
    We are running our User Access Review on GRC 10 SP13.
    We have set the Admin review to "Yes"
    The workflow has been successfully tested with few roles. Now we have kicked off the UAR review data generation job for around 18000 roles. its been more than 36 hours and the job is still running. We would like to know if there is a way to check if the requests are being generated before the completion of the job.
    I understand that the tables GRACREQ / GRACREVITEM will not be populated before the completion of the job. Any help is greatly appreciated.
    Thanks,
    Karthik.

    Dear Vittal,
    to speed up the job you can implement note 1959512.
    Please let us know if it helps.
    Regards,
    Alessandro

  • ADOBE AN ABSOLUTE DISCGRACE OF A COMPANY TAKING MORE MONEY THAN THEY SHOULD OFF MY ACCOUNT EVERY MON

    I have been having major issues with my Adobe Creative Cloud Account.  The problem started when I had a normal subscription, then upgraded to Team for additional space.  Due to changes in my team I reverted back to normal subscription 3 months later.  I had hoped that I could just update my monthly subscription to one subscription... but No!!  Adobe said I couldnt restart my normal subscription and I had to start a new one, so I did.  I then tried to cancel my Team subscription and they say every month that they have.  Yet every month I still get charged for it along with my new and old normal subscriptions. (3 CC Payments per month)
    I have tried cancelling my Adobe Creative Cloud Subscrition for 5 months.  Time and time again Adobe keep saying that its cancelled and every month I get charged.  I have to go through support and battle for refunds and spend hours of my time speaking to overseas support operators going over the same stupid things.
    Adobe support is hopeless and I have raised over 10 support cases to sort this and well over 15 hours of my time to rectify the situation.  Time and Time again Adobe escalate it, say they have fixed then every month I get billed for my Team on the 8th of the month then billed for 2 x normal subscriptions on the 18th of every month.
    It has now got to the stage that I am sick of support and I need to look at alternatives to sort this.  My bank cant cancel it because it is not a direct debit or a standing order.  Adobe has my card details and it lies with them to cancel it.  The only option the bank said I can choose is to cancel my cards.
    Adobe Can you please cancel my Adobe please.  I wish to cancel everything as I have had enough.
    Here are all my support cases trying to cancel.
    #0210696665
    #0210598930
    #0210656123
    #021065 4488
    #0210119710
    #0210386192
    #0210385224
    #02103852 20
    #0210385197
    #0210270656
    #0210217642
    #0210042906
    #0210210299
    #0209901892
    You will get my details from those
    Looking forward to your response

    Ken G. Rice wrote:
    @W_J_T and Aegis Kleais - I deleted the original post from W_J_T: "Sad isn't it. To bad Adobe could not be more professional via the conventional methods you tried. Welcome to the Creative Cloud utopia going forward. Buckle up people, brace yourselves."
    I hardly feel my original comment was out of line given Adobe's failure on the matter being discussed in this thread.
    Ken G. Rice wrote:
    If a customer has a problem please post a helpful response.
    In all honesty that's a rather audacious comment in and of itself, look at the original post and what they stated.
    Billygunn111 wrote:
    - ADOBE AN ABSOLUTE DISCGRACE OF A COMPANY...
    - I have been having major issues with my Adobe Creative Cloud Account.
    - I have tried cancelling my Adobe Creative Cloud Subscrition for 5 months.
    - Adobe support is hopeless and I have raised over 10 support cases to sort this and well over 15 hours of my time to rectify the situation.
    - Here are all my 14 support cases trying to cancel.
    #0210696665
    #0210598930
    #0210656123
    #021065 4488
    #0210119710
    #0210386192
    #0210385224
    #02103852 20
    #0210385197
    #0210270656
    #0210217642
    #0210042906
    #0210210299
    #0209901892
    Did Adobe use a similar approach of "If a customer has a problem please "provide" (post) a helpful response." I mean come on, my comment was in direct correlation to the topic at hand, the customer tried conventional methods and Adobe failed repeatedly and miserably by conventional methods. The customer then caused public noise, Adobe wanted no bad PR and finally took action. 14 support tickets over 5 months before posting on a public forum and "finally" getting help? So is that considered a professional approach to "customer support" by a corporation dealing with its "flagship" offering to a customer? This is not the first instance of this either, one merely has to search the forum to find similar issues regarding similar situations.
    This is what is considered by Adobe as "A customer has a problem and providing help?" Really, 5 months and 14 support tickets, then needing to post what should be a private business matter publicly on a public forum for resolution?

  • Why is apple ram so much more expensive than normal ram

    for 2 gb of apple ram for the dual 2.7 is about $300, this ram doesn't even have its own heatsink and is only CL3. why is ram with a heatsink and CL2( which is faster) about 200 $$ cheaper? is there any difference in the ram or is apple trying to make a big profit ?

    I found out that there is nothing special about the
    ram.. and the corsair ram is a lot faster and better
    So, is the Corsair ram you are talking about that which TigerDirect.com has advertised over at dealmac.com today. The after rebate price for a 1Gb stick of 4200 is about $45. Not too bad if it would work in a Quad.

  • Database shutdown taking more time, is listener process a problem??

    Dear all,
    though its a general process to stop the listener before shutting down the database for cold backup. but is it so that if you don't stop the listener before giving shutdown immediate command, the shutdown process takes long time than normal expected time?
    because as per my understanding, the listener process is used just for the connection and when we give shutdown command the database automatically rejects any new connections. your valuable comments are required.

    No version, as usual, and the answer is version specific.
    Why is it so difficult to include those 4 digits?
    Dear all,
    though its a general process to stop the listener
    before shutting down the database for cold backup.
    but is it so that if you don't stop the listener
    before giving shutdown immediate command, the
    shutdown process takes long time than normal expected
    time? No. Must be a fairy tale without proof.
    You might need set job_queue_processes to 0 and aq_tm_processes to 0, but that has nothing to do with the listener.
    >
    because as per my understanding, the listener process
    is used just for the connection and when we give
    shutdown command the database automatically rejects
    any new connections. your valuable comments are
    required.--
    Sybrand Bakker
    Senior Oracle DBA

  • Long execution times for TestStand conditional statements

    I have two test stations – one here, one at the factory in China that has been operating for about a year. The test program uses TestStand 3.1 and calls primarily dll's developed using CVI. Up until a couple months ago, both test stations performed in a similar manner, then the computer at the factory died and was replaced with a new, faster computer. Now the same test sequence at the factory take three times as long to execute (30 min at the facotry, 10min here).
    I have recoded the execution time at various point during the execution, and have found that the extra times seems to be occurring during the evaluation of conditional statements in TestStand (i.e. for loops, if statements, case statements). For example, one particular ‘for’ evaluation takes 30 ms on the test station here, but takes 400 ms at the test station at the factory (note: this is just the evaluation of the for condition, not the execution of the steps contained within the for loop).
    The actual dll calls seem to be slightly faster with the new computer.
    Also the ‘Module Times’ reported don’t seem to match the actual time for the module for the computer at the factory. For example, for the following piece of TestStand code:
    Label1
    Subsequence Call
    Label2
    I record the execution time to the report text in both Label1 and Label2. Subtracting one from the other gives me about 18 seconds. However the ‘Module Time’ recorded for ‘Subsequence Call’ is only 3.43 seconds.
    Any body have any ideas why the long execution time with the new computer? I always setup the computers in exactly the same way, but maybe there is a TestStand setting somewhere that I have missed? Keep in mind, both test stations are running exactly the same revision of code.

    Got some more results from the factory this morning:
    1) Task Manager shows that the TestExec.exe is the only thing using CPU to any significant degree. Also CPU Usage History show that the CPU Usage never reaches 100%.
    2) I sent a new test program that will log test execution time in more places. Longer execution times are seen in nearly every area of the program, but one area where this is very dramatic is the time taken to return from one particular subsequence call. In this subsequence I log the time just before the <End Group> at then end of Main. There is nothing in Cleanup. I then log the time immediately after returning from this sequence. On the test system I have here this takes approximately 160 ms. On the test system at the factory this takes approximately 14.5 seconds! The program seems to be hanging here for some reason. Every time this function is called the same thing happens and for the same amount of time (and this function is called about 40 times in the test program, so this is kill me).

  • Execution Time 1:35 minute

    Good morning everyone,
    We have several tables in DB and we are writing a query.
    Normally, execution time is 1 msec for most but A query took time 1:35 minute.
    The query return with 6 column that five is number, one is a string(10 words).
    If you have a chance, please help us usual.
    Thanks in advance,
    S!G
    Edited by: Sea!Gull on Sep 29, 2010 8:39 AM

    Hello,
    "Basically " , you can consider the use of a "lexical reference" as "text replacement" by Reports in the SQL query
    It means that Reports will replace the string &P_XXX by its values before submitting the SQL query to the DB
    Have you tried to do this "manually" and execute the result in SQL*Plus ?
    Regards

  • Oracle taking more memory ?

    hi
    i have oracle running on solaris, sga set to 3 gb but below command showing multiple process for PRDLIVE
    and taking more memory than 3GB in total, .... occasionally i see oracle shutting down due to out of memory issue ...
    ps -eo pid,pmem,vsz,rss,comm | sort -rnk2 | head
    18688 11.4 3381200 1859272 oraclePRDLIVE
    18649 11.4 3377664 1847864 oraclePRDLIVE
    18557 9.6 3377392 1553744 ora_w000_PRDLIVE
    18555 9.6 3377272 1550384 ora_smco_PRDLIVE
    18703 9.2 2058304 1489584 oracleTEST
    14420 9.2 2065448 1494536 oracleTEST
    14414 9.2 2061368 1485776 oracleTEST
    18690 9.1 2052264 1483248 oracleTEST
    18584 9.1 2050200 1480608 ora_w000_TEST
    18515 8.1 3387888 1310160 oraclePRDLIVE
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    cat /etc/release
    Oracle Solaris 10 8/11 s10s_u10wos_17b SPARC
    Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved.
    Assembled 23 August 2011
    PMON (ospid: 19876): terminating the instance due to error 490
    ORA-04030: out of process memory when trying to allocate 4088 bytes (PLS CGA hp,pdz2M87_Allocate_Permanent)

    user9182826 wrote:
    hi
    i have oracle running on solaris, sga set to 3 gb but below command showing multiple process for PRDLIVE
    and taking more memory than 3GB in total, .... occasionally i see oracle shutting down due to out of memory issue ...
    ps -eo pid,pmem,vsz,rss,comm | sort -rnk2 | head
    18688 11.4 3381200 1859272 oraclePRDLIVE
    18649 11.4 3377664 1847864 oraclePRDLIVE
    18557 9.6 3377392 1553744 ora_w000_PRDLIVE
    18555 9.6 3377272 1550384 ora_smco_PRDLIVE
    18703 9.2 2058304 1489584 oracleTEST
    14420 9.2 2065448 1494536 oracleTEST
    14414 9.2 2061368 1485776 oracleTEST
    18690 9.1 2052264 1483248 oracleTEST
    18584 9.1 2050200 1480608 ora_w000_TEST
    18515 8.1 3387888 1310160 oraclePRDLIVE
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Solaris: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    cat /etc/release
    Oracle Solaris 10 8/11 s10s_u10wos_17b SPARC
    Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved.
    Assembled 23 August 2011
    PMON (ospid: 19876): terminating the instance due to error 490
    ORA-04030: out of process memory when trying to allocate 4088 bytes (PLS CGA hp,pdz2M87_Allocate_Permanent)04030, 00000, "out of process memory when trying to allocate %s bytes (%s,%s)"
    // *Cause:  Operating system process private memory was exhausted.
    Oracle is victim; not the culprit.
    Problem is at OS level & fix must be done at OS level.

Maybe you are looking for

  • Vendor Invoice through FB60

    Hi Experts, I have very urgent requirement to Post Vendor Invoice Through FB60. Please suggest me BAPI for this ans suggest code to use that.

  • Taxes amount deducted from division Transfer to head office

    HI, Taxes amount deducted from here transfer to head office Devision= Business area Head office  = company code For this any configuration  is required  please give me guide lines , what are the steps need to be followed. Salaries Paid by head office

  • I cannot clear my paper jam error?

    I clean out the back of the printer to get rid of the paper jam error, only to get the paper jam error again when on half of the sheet goes through the printer.

  • Captions under photo

    I want to put captions under a group picture and save it as a .jpg. Then I want to be able to send these .jpg,s to several people using many different computers and have them be able to view it. (Thats why I want to use .jpg) My problem is when using

  • Second drive in mirrored raid empty????

    I have a xserve with two identical drive. They were configured to mirror one another. Some how that is not the case any longer. When I look in disk utility the raid configuration is simply not there and the second drive is empty. I did not do the ini