9iAS Performance Metrics Tables

I want to generate my own custom report based on the performance metrics available in the
Oracle 9IAS. However i am not able to locate the metrics tables(i.e ohs_server, oc4j_web_module,
oc4j_servlet, etc ) mentioned in the Oracle 9iAS performance guide.
Can anybody help me with locating the tables, under what username should we look for them and
also if any special packs need to be installed for them.
Regards
Sriram.

Sriram,
If U find a solution, pls do let me know for I too am facing the same problem.
rgds,
--rash                                                                                                                                                                                                                   

Similar Messages

  • Application Server (Pertinent Report values for performance metrics)

    Hi
    With dmstool what are the most relevant values to collect. My objectives are to compare performance metrics on two environments. First one is on 9iAS (or 10 g AS), the second is a weblogic environment.
    Regards
    Den

    when running the dmstool -dump i noticed that some requests where throwing errors "connection refused".
    I verified the server properties focusing on the dms port 7200;
    I noticed that the listening adress and port was missing cfr httpd.conf
    After adding this info metrics are displayed
    thanks for the clue;
    chris

  • Getting performance metrices

    Hi All,
    I am new to the forum and hi everyone.....
    I need to develop an application to, fetch data from almost all of the Oracle 10g releas 3 Application server Metric Tables. I cannot use builtin tools provided with Oracle 10g release 3 like, dmstool.bat. In the Oracle application server 10 g release 2, I was able to get the metric tables performance data in an xml format through web browser by giving
    http://<IPAddress:port/dms0/AggreSpy?format=xml&table=ohs_responses.....
    But in Oracle Application server 10 g release 3, the above url does not show me the metrices in the xml format. it still shows the Metric tables welcome page.
    I have made configuration in the dms.conf file such that it redirects to servelt http://<IPAdress>::7200/dmsoc4j/AggreSpy?format=xml&....
    Is there any additional configuration need to be done for getting the metrices in the xml format or can anyone tell me the way or url trough which i can access the metrices tables in xml format by web browser for oracle 10 g release 3 Application server.
    Thank u all, Awaiting for ur reply

    Thanks for ur reply..
    I want to confirm one more thing that, through aggrespy Is it possible to get the xml format of the metic tables?
    I was able to get them in Oracle application server 10g release 2.The URL i used is http://server:port/dmsoc4j/AggreSpy?format=xml
    In oracle 10 g release 3 ,I am getting the existing page, the page is not getting converted to xml format.By using dmstool, i am able to get xml format by giving
    "dmstool -dump format=xml".
    Can u please confirm me this thing? If possible what additional configuration is required.
    Thank u in advance....

  • Performance for table BKFP

    Hi,
    I would like to enquire is there anyway that i can improve the performance for table BKPF from the ABAP code point of view.
    Because we have customise one program to generate report for the asset master listing.
    one of the select statement are show as below:
          SELECT SINGLE * FROM BKPF WHERE BUKRS = ANEP-BUKRS
                                      AND GJAHR = ANEP-GJAHR
                                      AND AWKEY = AWKEYUS.
    I would like to know how it different from the select statemene below:
    SELECT SINGLE * FROM BKPF INTO CORRESPONDING FIELDS OF T_BKPF
          WHERE
          BUKRS = ANEP-BUKRS
      AND GJAHR = ANEP-GJAHR
      AND AWKEY = AWKEY.
    Which of the select statements above can enhance report,because currently we have face quite bad issue on this report.
    Can i post the ABAP code on this forum.
    Hope someone can help me on this. thank you.

    Hi,
    As much as possible use the primary keys of BKPF which is BUKRS, BELNR and GJAHR. Also, select only the records which are needed so to increase performance. Please look at the code below:
    DATA: lv_age_of_rec TYPE p.
      FIELD-SYMBOLS: <fs_final> LIKE LINE OF it_final.
      LOOP AT it_final ASSIGNING <fs_final>.
      get records from BKPF
        SELECT SINGLE bukrs belnr gjahr budat bldat xblnr bktxt FROM bkpf
        INTO (bkpf-bukrs, bkpf-belnr, bkpf-gjahr, <fs_final>-budat,
              <fs_final>-bldat, <fs_final>-xblnr, <fs_final>-bktxt)
        WHERE bukrs = <fs_final>-bukrs
          AND belnr = <fs_final>-belnr
          AND gjahr = <fs_final>-gjahr.
      if <fs_final>-shkzg = 'H', multiply dmbtr(amount in local currency)
      by negative 1
        IF <fs_final>-shkzg = 'H'.
          <fs_final>-dmbtr = <fs_final>-dmbtr * -1.
        ENDIF.
      combine company code(bukrs), accounting document number(belnr),
      fiscal year(gjahr) and line item(buzei) to get long text.
        CONCATENATE: <fs_final>-bukrs <fs_final>-belnr
                     <fs_final>-gjahr <fs_final>-buzei
                     INTO it_thead-tdname.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            client                        = sy-mandt
            id                            = '0001'
            language                      = sy-langu
            name                          = it_thead-tdname
            object                        = 'DOC_ITEM'
          ARCHIVE_HANDLE                = 0
          LOCAL_CAT                     = ' '
        IMPORTING
          HEADER                        =
          TABLES
            lines                         = it_lines
         EXCEPTIONS
           id                            = 1
           language                      = 2
           name                          = 3
           not_found                     = 4
           object                        = 5
           reference_check               = 6
           wrong_access_to_archive       = 7
           OTHERS                        = 8.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
      if successful, split long text into start and end date
        IF sy-subrc = 0.
          READ TABLE it_lines TRANSPORTING tdline.
          IF sy-subrc = 0.
            SPLIT it_lines-tdline AT '-' INTO
                  <fs_final>-s_dat <fs_final>-e_dat.
          ENDIF.
        ENDIF.
      get vendor name from LFA1
        SELECT SINGLE name1 FROM lfa1
        INTO <fs_final>-name1
        WHERE lifnr = <fs_final>-lifnr.
        lv_age_of_rec = p_budat - <fs_final>-budat.
      condition for age of deposits
        IF lv_age_of_rec <= 30.
          <fs_final>-amount1 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 30 AND lv_age_of_rec <= 60.
          <fs_final>-amount2 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 60 AND lv_age_of_rec <= 90.
          <fs_final>-amount3 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 90 AND lv_age_of_rec <= 120.
          <fs_final>-amount4 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 120 AND lv_age_of_rec <= 180.
          <fs_final>-amount5 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 180.
          <fs_final>-amount6 = <fs_final>-dmbtr.
        ENDIF.
        CLEAR: bkpf, it_lines-tdline, lv_age_of_rec.
      ENDLOOP.
    Hope this helps...
    P.S. Please award points for useful answers.

  • When using dmstool cannot view ohs_Server metric table in Oracle 10g

    Hi,
    My application runs on Oracle 10g App server,
    when i tried this command dmstool -table -list
    The metric table ohs_server is not getting listed...
    I am sure that Oracle HTTP server is running, i confirmed this by using the command opmnctl status : which shows HTTP Server - alive
    also using dmstool -t opmn_process which shows Oracle HTTP server is running...
    Where i can get other metric table info like JVM, why i can't get the information about ohs_server
    Plz help me over this.
    Regards.,
    Deepak.C

    Hi.,
    Any Help to metric info for Oracle HTTP Server, it's not working still !!!
    Any config needs to be changed for Oracle HTTP Server to make the inforamation available ???

  • Capture performance metrics across multiple servers

    Hello. I'm still very new to Powershell but anyone know of a good Powershell v.3 -4 script that can capture performance metrics across multiple servers with an emphasis on HPC (high performance computing) and gen up a helpful report, perhaps in HTML or Excel
    format?
    Closest thing I've found and used is this line of powershell:
    http://www.microsoftpro.nl/2013/11/21/powershell-performance-monitor-on-multiple-remote-computers/
    Maybe figure out a way to present that in better format, such as HTML or Excel.
    Also, if someone can suggest some performance metrics to look at with an HPC perspective. For example, if a CPU is running at 100 utilization, figure out if which cores are running high, see how many threads are queued waiting for CPU time, etc...

    As far as formatting is concerned,
    ConvertTo-HTML is a basic HTML output format, but you can spice it up as much as you like:
    http://technet.microsoft.com/en-us/library/ff730936.aspx
    Out-Grid is very functional and pretty simple:
    http://powertoe.wordpress.com/2011/09/19/out-gridview-now-has-a-passthru-parameter/
    Here's an example with Excel:
    Excel
    Worksheets Example
    This might be a good reference for HPC, I don't have access to an HPC environment so I can't offer much advice there.
    http://technet.microsoft.com/en-us/library/ff950195.aspx
    It might be better to keep unrelated questions separate, so a thread doesn't focus on one question and you lose time getting an answer to another.
    I hope this post has helped!

  • How to define perform with table statement in ECC6.0

    Hi all,
    I am working on ECC6.0 version. I m using a perform to populate an internal table like this:-
        PERFORM explode TABLES li_zmpsdtl
                                USING gs_matnr.
    & its forms is defined as: -
    FORM treat_one_item  TABLES   li_zmpsdtl STRUCTURE zmpsdtl
                         USING    gs_matnr TYPE matnr.
    doing some action..............
    endform.
    While performing SLIN it shows an error message :-
    " The current ABAP command is obsolete.
    Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary types (not "LIKE" or "STRUCTURE").  "
    If i use type in place of STRUCTURE then it is ok, but zmpsdtl should be defined as table type. :-
    FORM treat_one_item  TABLES   li_zmpsdtl type zmpsdtl
                         USING    gs_matnr TYPE matnr.
    doing some action..............
    endform.
    is there any other option to do the same thing. i dont want to create any teable type.
    Thanx in advance,
    Sachin

    You have to use a global structure instead of a ddic structure after the STRUCTURE statement:
    <b>DATA: gs_zmpsdtl TYPE zmpsdtl.</b>
    FORM treat_one_item TABLES li_zmpsdtl STRUCTURE <b>gs_zmpsdt</b>
    USING gs_matnr TYPE matnr.
    ...[/code]

  • 1)    Is there North Bound Interface / API from SAP Solution Manager available for 3rd party integration?       i. The list of the modules that are being managed by SAP Solution Manager(s)      ii. The performance metrics of those modules/components at th

    1)
    Is there North Bound Interface / API from SAP Solution Manager available for 3rd party integration?
    i. The list of the modules that are being managed by SAP Solution Manager(s)
    ii. The performance metrics of those modules/components at the high level
    iii. The information about Early Watch Alerts (or situations to watch for)
    2)
    Is there a full SNMP interface for getting the above information from SAP Solution Manager?
    3)
    Is that understanding that SAP has SNMP support for forwarding alerts to a 3rd party system, correct?
    4)
    Does SAP has both free and licensed? If yes then what are the advantages of licensed over the open/free version?

    Mugunthan
    Yes we have applied 11i.AZ.H.2. I am getting several errors still that we trying to resolve
    One of them is
    ===========>>>
    Uploading snapshot to central instance failed, with 3 different messages
    Error: An invalid status '-1' was passed to fnd_concurrent.set_completion_status. The valid statuses are: 'NORMAL', 'WARNING', 'ERROR'FND     at oracle.apps.az.r12.util.XmlTransmorpher.<init>(XmlTransmorpher.java:301)
         at oracle.apps.az.r12.extractor.cpserver.APIExtractor.insertGenericSelectionSet(APIExtractor.java:231)
    please assist.
    regards
    girish

  • Solution Manager : Realtime Performance Metrics and Alerts

    Hi
    How can I configure Solution Manager to get
    - Realtime Alerts
    - Performance Metrics every 5 minutes
    - Business Performance Metrics every 5 minutes
    Can I have all the above data in CSV / HTML/ XML format
    I have read the Solution Manager documentation, and it is cryptic for newbie starter
    Any help or pointers to someone who has done this before, will be very valuable.
    regards
    Raj

    How do you get CCMS Alerts and E2E, can you elaborate or point me the steps/docs....
    Thanks!

  • Performance Metrics

    Performance Metrics
    Hi All ,
    EBS Version 12.1.3
    DB Version : 11.2.0.3
    Today in one of the meeting we were asked if our system was capable to handle the growth in the next 6-8 Months.
    Now before I could get inputs from them we decided to do some homework.
    I am looking for some points/ suggestions on which I can check and compare from the past and provide the answer to the question.
    Regards
    Karan Kukreja

    I Found !
    Environment -> Performance Metrics -> Performance Metrics Report
    -- Cedric GEORGEOT [MVP] File System Storage http://www.e-novatic.fr -- Auteur du livre Bonnes pratiques, planification et dimensionnement des infrastructures de stockage et de serveur en environnement virtuel -- N'oubliez pas de marquer comme réponse

  • Performance metrics for 8i standard vs. enterprise

    I'm looking for performance metrics comparicing Oracle 8i Standard Edition to the Enterprise Edition.
    Basically, I'm tyring to determine what level of web-site traffic will necessitate use of Enterprise instead of Standard.
    Any ideas out there?
    Thank you,
    Mike

    Hi,
    there should be no difference in performance because both products share the very same kernel.
    Of course, EE has features like partitioning which make a huge difference when they are used.
    So the answer clearly depends...

  • Missing performance metrics on OEM GC

    We have agents and OMS on 10.2.0.3. We configured performanace metrics as template and template applied for the targets. one of the target RAC database with 2 nodes, an agent on each node uploaded performance metrics until Mar 08th and after that the perfomance metrics shows not data available. These are the metrics related to
    1. Database Services
    2. System Response Time Per Call
    3. Wait Bottlenecks
    4. Waits by Wait Class
    Collection schedule shows every 15 minutes, upload interval shows Every collection, Last upload shows Mar 8, 2008 5:21:50 AM.
    ./emctl upload agent works fine no issues.
    ./emctl status agent shows XML's uploaded.
    we did clearstate agent, stop and start agent etc.. no change
    No pending files in the upload directory on the target agent, no pending files on the recv (recieving) directory of the agent.
    What else should have been the problem? How to get these metrics to upload properly and make it working. appreciate any help.

    What version of Oracle have you in the target RAC databases?
    For Oracle 9i you must to execute a workaround for enable this metrics
    Regards
    -

  • Oracle E-Business Suite Performance Metrics?

    Hi,
    Can anyone please comment on the subject. What are the performance metrics? In general offcourse.
    Sharjeel.

    Performance metrics for Oracle E-Business Suite is used to gather information about application/database for the purpose of monitoring the performance (application server, forms sessions, database, CMs .. etc). Its one of the components of Oracle Applications Manager (OAM), OAM as well as Oracle Grid Control provide a complete and integrated solution for Oracle E-Business Suite system management.
    To get more information and technical papers about this tool, please refer to "Administration and Management (OAM & OEM)" page at (http://www.oracle.com/technology/products/applications/admin/index.html)

  • Freelancew work for performance metrics

    http://www.rentacoder.com/RentACoder/misc/BidRequests/ShowBidRequest.asp?lngBidRequestId=899712

    Hi
    Yes , I have 3 years ago of experience in build performance metrics for monitoring oracle databases

  • OSB Reporting Performance Metrics Throttling

    Hi Friends,
    Can someone give me an idea around how can I achieve following for my OSB services? Like pointers towards, is it available out of the box or should i use some APIs to generate these statistics would be very helpful.
    •     Reporting / Analytics
    o     Ability to report service consumption per service per application
         Calls per sec/min/hour/day
         Error Counts
    o     Performance Metrics?
         Anything we can know from this perspective? Can we get performance matrix for Business services?
    - We are collecting this in ou
    •     Quotas / Throttling
    o     Max Requests per second/minute/hour/day
    o     Ability to restrict per consuming application
    o     Auto shut off and re-enable when time period expires
    Thanks.

    Have tried to answer what I know.
    You have to enable the Monitoring feature for the proxy/business services.This would help you collect req counts/response times etc.
    http://docs.oracle.com/cd/E14571_01/doc.1111/e15867/monitoring_ops.htm
    Ability to restrict per consuming application - For this you can use throttling work manager of OSB.

Maybe you are looking for

  • Mapviewer performance problem using image format FORMAT_RAW_COMPRESSED

    I am using the MapViewer.FORMAT_RAW_COMPRESSED map image in my (java) map application because some features must be clickable and as far as I can work out, this is the only way to achieve this in a Java client. On my local system, running the map ser

  • Export to PDF option in Visual Composer iView

    Hi Expert, I am using NW 7.0 .Want to develop a Visual Composer iView based on RFC function module to fetch the data from backend and publish in portal. In that iView I want to give the Export to PDF option for the corresponding SAP data. I am referr

  • Using the Billing Request Editor in Web Dynpro

    Billing Request Editor has a number of functions that defer some of the DP91 functionality (postpone/reject) to Web Dynpro user interface.  For example, WIP (Reject, Postpone) and Accrue.   On the WIP (reject and postpone) portion of the functionalit

  • "Can't connect to server" Error

    I'm using a 24" iMac running 10.6.7 and I keep getting a "can't connect to server" error with Safari for certain websites. While I could have posted this topic under the Safari section, the problem is not Safari. I tested other web browsers on my iMa

  • Does HP Pavilion dv6 Notebook PC support ssd

    I want to change to ssd for my HP pavilion dv6 notebook pc with i7 - 2630QM with existing Thoshiba MK7575GSX hard drive - is this possible, kindly advise a suitable SSD  Sr No : [Moderator edited Serial Number] thanks Mathews This question was solved