Estimate on the amount of processes an EM Agent needs

Hi,
We would like to get a "ballpark" estimate on the amount of processes an EM Agent may need to acquire when metrics are enabled,jobs are running, people are using EM to monitor or diagnose a problem etc...
This is in response to a situation where one of the Application Teams had a problem with the EM Agent where once it was started, used up the host processes (approx 22), and basically grinded the system to a halt (the db parameter was also a problem it was set to 150 only..).
We therefore need to add a pre-host check to ensure that there are enough system resources available for the EM Agent to run.
Can anyone please confirm if there is an Oracle recommended ball park value or rule of thumb?
Thanks
Message was edited by:
user546767

I have not checked the estimates, but first of all, it is not a good idea to run Grid Control Repository in the same database with any other programme, development or application. It should be created in its own Database that is not shared
I believe the host process you mentioned are mostly for SYSMAN. You should always expect the Agent to have 2 connections to the database and SYSMAN/DBSNMP to open up to 20 connections before the Application Team connects.
Processes parameter settting of 150 is normally enough if the database is only used for Grid Control Repository. But if the Application team is also running there applications against that database, then you need to multiple the maximum number of connections for each team member by the number of team members and add it to the number above (e.g 22).
If I find any documented estimates, I will let you know.

Similar Messages

  • How to Sum the amounts for calculating rates.

    Hi,
    I have a requirement in Apps 11i (OAB) that I need to code in PL/SQL. I would be calling a procedure in order to complete this task. When an Extract is run, this code gets executed and should return the amount for that person.
    I need to calculate sum of all the amounts for each of the months between START date to the END date.
    Ex: Amount = Amount + (for each of the months between START and END date) x Rate.
    This START and END date would be calculated in the procedure itself.(dynamic).
    Once we get the START date and END date, we need to loop thru some records and find person's rate between those START date and END date.
    For rate calculation:
    15th day of any month is used as the cut off date for rate calculation.
    Suppose from 01-JAN-2006 to 15-MAR-2006 Rate is Rs 10 AND
    16-MAR-2006 to 01-JUL-2006 rate is Rs 20 AND person died on 01-JUL-2006
    Then rate = Rs(3x10) + Rs(3x20) + full month of July Rs.20 (P.S Here person's death needs to evaluated for the whole month) =30 + 60 + 20 = Rs.110
    Typically the start date and end date would be in one particular YEAR. And person may have different rates for different amounts as mentioned above.
    Let me if you need any more details..Thank You!
    Additional Info:
    This data comes from 2 tables in OAB Application where it can be joined with a common ID.
    One table lets say Coverage table contains the usual columns Eff_start_date, Eff_end_date along with this it has Coverage_start_date and Coverage_end_date (Dates specifying duration of the person enrolled in particular coverage.)
    P.S Rate Changes ONLY when the person enrolls in different coverage.
    2nd Table lets say Rate table contains the usual columns Eff_start_date, Eff_end_date along with this it has rate_start_date and rate_end_date and RATE(column) for that duration.(may vary depending upon the coverage).
    All the records should be between the START and END date, which will be calculated at runtime.
    Unable to submit any sample records.:-(
    Well, IF I had given the exact requirement, I would have got the solution by this Time!!! Your comments (and solutions) would definitely help me. Thank You
    Message was edited by:
    user559682

    If i understand you correctly it can be possible with :
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL>
    SQL> drop table dates;
    Table dropped
    SQL> create table dates( "start" date, "end" date, "rate" number);
    Table created
    SQL> insert into dates values( to_date('01.01.2006', 'DD.MM.YYYY'), to_date('30.05.2006', 'DD.MM.YYYY'), 10);
    1 row inserted
    SQL> insert into dates values( to_date('01.06.2006', 'DD.MM.YYYY'), to_date('15.09.2006', 'DD.MM.YYYY'), 15);
    1 row inserted
    SQL> insert into dates values( to_date('16.09.2006', 'DD.MM.YYYY'), to_date('31.12.2006', 'DD.MM.YYYY'), 20);
    1 row inserted
    SQL> SELECT * FROM dates;
    start       end               rate
    01.01.2006  30.05.2006          10
    01.06.2006  15.09.2006          15
    16.09.2006  31.12.2006          20
    SQL> SELECT t.i, d."rate"
      2    FROM (SELECT add_months(to_date('01.01.2006', 'DD.MM.YYYY') /* start*/, LEVEL - 1) i
      3            FROM dual
      4          CONNECT BY LEVEL <= 12) t
      5        ,dates d
      6   WHERE t.i BETWEEN d."start" AND d."end";
    I                 rate
    01.01.2006          10
    01.02.2006          10
    01.03.2006          10
    01.04.2006          10
    01.05.2006          10
    01.06.2006          15
    01.07.2006          15
    01.08.2006          15
    01.09.2006          15
    01.10.2006          20
    01.11.2006          20
    01.12.2006          20
    12 rows selected
    SQL> SELECT SUM(d."rate") rs
      2    FROM (SELECT add_months(to_date('01.01.2006', 'DD.MM.YYYY') /* start*/, LEVEL - 1) i
      3            FROM dual
      4          CONNECT BY LEVEL <= 1 +
      5                     extract(MONTH FROM to_date('10.10.2006', 'DD.MM.YYYY') /*death*/) -
      6                     extract(MONTH FROM to_date('01.01.2006', 'DD.MM.YYYY') /* start*/)
      7          ) t
      8        ,dates d
      9   WHERE t.i BETWEEN d."start" AND d."end";
            RS
           130
    SQL>

  • [SOLVED]problem about wc to check the amount of the processes through

    #problem about wc to check the amount of the processes through ps
    hi.this is the processes current
    $ps
    PID TTY TIME CMD
    2674 tty3 00:00:00 bash
    2689 tty3 00:00:00 mocp
    2746 tty3 00:00:00 ps
    $ps | wc -l
    5
    The problem:since there are 4 lines of ps output here,why wc -l shows the number "5"?
    And if i redirect ps to a file and then check the lines number with "wc -l",it's "4".
    $ps > out
    $cat out
    PID TTY TIME CMD
    2674 tty3 00:00:00 bash
    2689 tty3 00:00:00 mocp
    2753 tty3 00:00:00 ps
    $cat out | wc -l
    4
    Any idea?Thanks.
    Last edited by wanghonglou82 (2011-10-07 06:49:44)

    falconindy wrote:Working as intended. wc is running when you pipe ps to it.
    hi.thank you.
    The clue you bring here sounds reasonable.But a little more confusion to me comes around.I will check the bash rules for digest commands.thanks.

  • Sometimes when I close Firefox and try to open it in few moments it shows me message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." However, I haven't o

    Sometimes when I close Firefox and try to open it in few moments it shows me message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." However, I haven't opened any additional Firefox related programs, and previous Firefox is closed. First I though it is because of my computer, but then I discovered that other people have the same problem as well
    == This happened ==
    A few times a week
    == some 2 month ago ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

  • How to find out the amount of ram a computer can hold

    I want to know how to find out what is the max amount of ram my computer can actually take advantage of, rather than tell you my model and you tell me what is the max because I know it varies according to the model of the Computer
    But if you'd like to help the other way, here is my model: Macbook(13-inch, Mid 2010 [unibody]) basically the latest version of the white macbook.

    Pointdexter11 wrote:
    simple version: what algorithms do they use to figure out the max is 8GB 
    That is not a simple question.  I don't think anyone here knows the exact testing process that Apple uses to determine what the max ram will be at the time of release.  This is done during the development process.

  • PM Order settlements - Difference between the amounts settled

    Hi All,
    This is regarding the PM Order settlements.
    Every month end finance team run KO8G and settle the PM Order costs for that period (month). In the process the Orders are settled using a variant, which captures all the orders that has changed/created during the focused period.
    But in the report S_ALR_87013015 - List: Actual Debit/Credit there are balances for previous settlements and thereu2019s a difference between the amount settled and the debit/credit amounts.
    When drilling gown we found that this is due to following reasons,
    1.     Some orders are not settled fully.
    2.     Equipments issued against a Order are returned after the settlement process
    Ex: one Order has settled in Oct 2008 initially and fully in Jan 2009. However one material has been returned to stores in February 2009. Therefore a difference (cost of the material) between total actual cost (Dr Amount) and settled amount has been arisen.
    The Orders of nature 1 will be captured and settled in the subsequent run of KO8G.
    But my question is how can we address the orders of nature 2? Changing the settlement variant is one option.
    Also appreciate if someone can explain the SAP-best practice of PM-Order settlements.
    Thanks,
    Thushantha.

    Hi Thushantha,
    After returning the material to store check the actual cost of maintenance order. Once you fully settle the order means it becomes zero.
    When you will return material to warehouse against maintenance order once again carry out settlement of maintenanc order then check for your nature 2.
    Sundar

  • How to calculate the amount for cleared documents.

    Hi Experts,
    I am working on a program and here i need to display the amount for the cleared document.
    I have a scenario where there are two financial document related to a single cleared document.
    I can get the amount for financial document from BSAK by passing the BELNR value of the financial document and confirm if it is a clearing document by comparing AUGBL value of BSAK with document number of cleared document.
    Actually i am not very clear about the process flow of clearing document.
    If anyone can explain me the same.

    Hello,
    Go through this links it will help full
    http://help.sap.com/saphelp_sbo2004c/helpdata/en/fd/25f4c6d8888e40a521972d0be5d68b/content.htm
    http://help.sap.com/saphelp_45b/helpdata/en/e5/0783e84acd11d182b90000e829fbfe/frameset.htm

  • The amount of memory used for data is a lot larger than the saved file size why is this and can I get the memory usage down without splitting up the file?

    I end up having to take a lot of high sample rate data for relativily long periods of time. When I save the data it is usually over 100 MB. When I load the data for post-processing though the amount of memory used is excessively higher than the file size. This causes my computer to crash because 1.5 GB is not enough. Is there a way to stop this from happening withoput splitting up the file into smaller files.

    LabVIEW can efficiently handle large files, far beyond 100Mb, provided that care is taken in the coding of the loading/processing routines. Here are several suggestions:
    1) Check out the resources National Instruments has put together (NI Developer Zone > Development Library > Measurement and Automation Software > LabVIEW > Development System > Optimizing Applications > Managing Memory), specifically the article entitled "Managing Large Data Sets in LabVIEW".
    2) Load and process the data in chunks if possible.
    3) Avoid sending the data to front panel indicators, using local/global variables for data storage, or changing data types unless absolutely necessary.
    4) If using LabVIEW 7.1, use the "show buffer" tool to determine when LabVIEW is creating extra
    copies of data in memory.

  • How to know the amount of ora 11g page-out  memory (sga and pga)?

    How to know the amount of oracle 11g page-out memory ( sga and pga) in the SunSolaris 10 Unix and Linux.
    I need to know how many oracle memory are being page-out ( all and for a one oracle server process).
    thanks

    You can monitor the paging with vmstat or sar commands.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b32009/tuning.htm#sthref500
    You can also get the paging information on OEM home page if configured for your database.
    But I don't know if there exists a method with which one can find out how much memory per session/server process is getting paged out.

  • Can I adjust the amount of detail in thumbnails / navigation pane?

    We have started making pdfs from Word 2004 documents, via Distiller. Word>Print>Save as ps>Distiller and the amount of detail in the thumbnails (which are embedded) is very low. Sometimes I can't tell if there is content on the page or not (his is when I am looking at the Pages section of the navigation pane.
    Our previous work process had us creating a ps file via Framemaker 7. In those pdf files the pages view had a lot of fine detail, but we won't be using Framemaker anymore, since it's been dropped for the Mac.
    I'm not talking about the thumnail size... I've looked at them larger and it still has no detail, only with a larger view.
    I've looked at all the Distiller, Acrobat, and Word settings and preferences to see if there's a setting or dialog that will help, but I can't find any.
    Any ideas?

    Have you tried exporting using the Save as PDF button on the lower left of the Print dialog box? I don't know if that will help, but it might.
    I have not tried that, but I will. I always thought that going through Distiller gave you better quality. That's how I was converting the .ps files before that were created out of Framemaker.
    Your page thumbnails are strange, though. Are you using Distiller to convert fonts to outlines or something? Text is suppose to stay as text to help thumbnail previews
    I'm not converting fonts to outlines. It's very strange... there must be a setting in Distiller somewhere that I have mis-marked... I'll be darned if I can find it though.
    I've included a shot of pages from a previous project, there is a distinct difference.

  • The amount of settlement is not correct.

    I have problem about the settlement of Process order that made the moving cost of our product is wrong. 
    Step of Process Order show as below :
    1. date 14.03.2011 17:21:39 => GR Finish Good => Totalamount of GR is -54,232.20
    2. date 16.03.2011 09:17:34 => GI Raw Mat , Package => Total amount of GI is 56,069.55
    3. date 16.03.2011 13:30:46 Settlement #1 => Total amount of settlement is 54,232.20
    4. date 26.03.2011 13:35:27 Settlement #2 => Total amount of settlement is -56,069.55
    I want to know why the Settlement #1 is amount same as only the GR amount? If I tracking the time stamp of GI , the time is before Settlement #1 so the Settlement #1 should be -1,837.35 . 
    Thank you in advance for any advice.
    Pantip S.

    Contact Apple and ask them.
    No one in these user to user support forums can answer such a question.

  • How can I to restrict the amount of messages in XI 3.0 ?

    Hi @all,
    in our company we use sap xi 3.0. Actually, we research a method to restrict huge amount of messages that we process in the integration server (IS). Is there any possibility to restrict the amount of messages int the IS? (e.g.  a parameter (sxmb_adm) which define the maximum messages to process per hour or day..if the maximum is reached than the IS blocked ensuring message requests for a while..)
    Best regards
    Alex

    Hi @all,
    thanks for your replies.
    @Rajesh
    to use message packaging for improve system performance is an interest possibility. I've just read an implement guide from Daniel Horacio.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10b54994-f569-2a10-ad8f-cf5c68a9447c?quicklink=index&overridelayout=true
    But it seems there is no option for  early version sap xi 3.0. Is it possible to use package messaging on xi 3.0 ?
    Best regards
    Alex

  • Cost estimate of the product

    Hi,
    Can anyone please let me know what is process for cost estimate for the product in SAP. Just give me a thought in simple terms.....
    1. How system will estimate the costs?
    2. In which cases we should settle the costs?
    3. What is the process to settle the cost through internal orders/gl's etc.,?
    4. What are the main requirements for this process?
    Please give us your thoughts on the above mentioned queries...
    Regards
    Krishna

    Cost estimate for a material is done by the system through product cost planning.
    You have to define the following:
    A cost component structure which splits the cost into different components as per your requirement
    A valuation variant which decides the various factors such as material pricing, activity pricing, sub-contracting, external activity prices, etc.
    A costing variant which controls the parameters for a costing run which helps to update the prices in the material master.
    a production run is carried out for a production order, process order, product cost collector etc.  Periodically these objects are settled to the material in question.

  • IDOC performance: increase amount dialog processes on XI site?

    Hi everybody,
    we got performance problems while sending (many) IDocs to XI.
    Is it recommended to incease the amount of dialog processes?
    If yes: Which transaction is to be used?
    Thanks you!
    Regards Jochen
    null

    Hi,
    there are notes which discuss Idoc perfromance and how to improve the same.
    Refer into them .
    Note : 760993 , 709400 , 761332
    Regards
    Bhavesh

  • Problem with parallel currency - changeing the amount causes an error??

    Hi all,
    I have the system set up so that it uses a 2nd local currency (customized as a group currency) that has a custom defined currency exchange rate. When I try to enter a new invoice with the transaction FV60 and I try to change the amount in local currency 2 so it is not the same as the automatically calculated one I get an error F5580 saying "balance in & & is too large for an automatic correction".
    I tried finding the notes but some notes could not be implemented?? Did anyone had a similar problem?
    Thanks,
    D.

    I have to use FV60 because I have a document workflow activated and the user can only enter documents with FV60. Business process does not allow for one user to enter and post documents.
    OBY6 checked but the variance allowed is larger than what the user enters.
    Tried OBA5 also, blocked the message but it doesn't work
    Thank you for your help!

Maybe you are looking for

  • Adobe Media Encoder CS4 error in elearning suite trial version

    Hi there, I have a trial version of elearning suite 2.5 and I have the error "Thank you for using Adobe Media Encoder CS4. The Adobe product that installed Media Encoder has not activated. Please launch and activate that Adobe product before continui

  • Calling report from form

    I have worked with oracle forms and reports 6i in client server. But from 9i it is web based. I have installed developer studio now I am unable to call the report. Using Run_report_product. How do I pass the report server name if it is local. I didnn

  • Stored procedure in visual composer

    Hi All, I created an application in visual composer. I also created a stored procedure in Oracle Database. For getting Data via Visual composer, I created a JDBC system in portal. 1. But how does this Stored procedure gets reflected under JDBC system

  • Color space, gamma, and code value range data

    Greetings! I'm getting close to submitting my film for professional DCP creation.  It's a ProRes 422 4096 by 1716, 2.39 - 1 file, created as a "master file" in a Premiere Pro CC export (the sequence being an "online" of sorts, built from SpeedGrade c

  • Looking for labview driver to control Tennesy Chamber

    Looking for Labview driver to control Tennesy Jr Environmental Chamber (Watlow series 942 controller) LV6.0 Email [email protected] if you can help out. Thanks, David.