How to get ADDM between 10 minutes interval?

Hi all,
11.2.0.1
I want to trace an problematic program using ADDM.
I will run it for 10 minutes and capture the stats within this 10min-window.
How do I do it please...
Thanks

yxes2013 wrote:
Thanks aman and asahi.
How can i do that in emca database control monitor ?You can't. "emca" is "enterprise manager *creation* assistant". All it does is create/recreate/delete the enterprise manager. It doesn't report anything except the results of creating or dropping the enterprise manager.
Yeah, I know what you really meant. But imprecise language is an indication of imprecise thinking.
If I went to my doctor complaining about a pain in my abdomen and he started talking about a heart bypass, I wouldn't be too comforted by "well, you know what I mean".
>
Given the page, where do I go?
https://www.box.com/s/q1m2ht6xphz3deejcan8
Thanks

Similar Messages

  • How to get relationship between two  views in the  reports

    How to get relationship between two  views in the  reports, I am doing a deletion program , it is fully relates to views , how to get relationship between them in the reports

    Hi,
    Please explain your question in detail...what do you want to read ?
    If you want to know about the navigation links between the views then you can use APIs  like
    wdComponentAPI.getComponentInfo().findInWindows("windowName").getViewUsageByID("Name").getNavigationLinks();
    Iterate through the navigationLinkInfo from above collection and can read the other properties .
    I haven't tried the above , but it should work !!!
    Regards,Anilkumar

  • How to get space between two values in a single cell of a table.

    hello,
            how to get space between two values in a single cell of a table.
    thanks a lot.
    kailash.

    sorry i got the answer.

  • How can get difference between 2 dates in the form of days

    how can get difference between 2 dates in the form of days

    Hi,
    Check the following program:
    REPORT ZDATEDIFF.
    DATA: EDAYS   LIKE VTBBEWE-ATAGE,
          EMONTHS LIKE VTBBEWE-ATAGE,
          EYEARS  LIKE VTBBEWE-ATAGE.
    PARAMETERS: FROMDATE LIKE VTBBEWE-DBERVON,
                TODATE   LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
      exporting
        i_date_from          = FROMDATE
        i_date_to            = TODATE
      I_FLG_SEPARATE       = ' '
      IMPORTING
        E_DAYS               = EDAYS
        E_MONTHS             = EMONTHS
        E_YEARS              = EYEARS.
    WRITE:/ 'Difference in Days   ', EDAYS.
    WRITE:/ 'Difference in Months ', EMONTHS.
    WRITE:/ 'Difference in Years  ', EYEARS.
    INITIALIZATION.
    FROMDATE = SY-DATUM - 60.
    Regards,
    Bhaskar

  • How to get connectivity between Personal Oracle 8.0.0.3 & Developer 2000 (Any Version

    Can anybody tell me how to get connectivity between Personal Oracle 8.0.3 and Developer 2000 Rel 2.1 in Win 98 Environment.
    I am able to install either Oracle 8 or Developer 2000 but not both, even if I use different Oracle Homes.
    When I posted the same question to www.xperts.com someone wrote to me saying that a patch has to be used to get the connectivity.
    I have been trying to solve the problem for last 6 months, but could not do it.
    Can you please tell me how to get the connectivity or atleast tell me which version will facilitate connectivity in a stand alone PC.
    Thanks and regards,
    Ashok
    null

    For Windows98. Worked for me, but no guarantee it will solve your problem.
    1) Install Dev2K.
    2) Install PO8i in a separate Oracle home.
    3) Use the following for TNSNAMES.ORA in your DEV2K Home:
    # C:\ORAWINKS\NETWORK\ADMIN\TNSNAMES.ORA Configuration File:C:\orawinKS\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle Net8 Assistant
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    MYORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ORCL)
    null

  • How to get days between two dates

    Hi ,
    How to get days between two dates.
    Regards,
    Ramesh.

    Hi Ramesh,
    REPORT ZDATEDIFF.
    DATA: EDAYS   LIKE VTBBEWE-ATAGE,
          EMONTHS LIKE VTBBEWE-ATAGE,
          EYEARS  LIKE VTBBEWE-ATAGE.
    PARAMETERS: FROMDATE LIKE VTBBEWE-DBERVON,
                TODATE   LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
      exporting
        i_date_from          = FROMDATE
        i_date_to            = TODATE
      I_FLG_SEPARATE       = ' '
      IMPORTING
        E_DAYS               = EDAYS
        E_MONTHS             = EMONTHS
        E_YEARS              = EYEARS.
    WRITE:/ 'Difference in Days   ', EDAYS.
    WRITE:/ 'Difference in Months ', EMONTHS.
    WRITE:/ 'Difference in Years  ', EYEARS.
    INITIALIZATION.
    FROMDATE = SY-DATUM - 60.

  • How to get diffrence between time

    Dear All,
    how to get the difference b/w the time.
    consider 3 attributes, say initial time,final time and Difference time.
    The Data type of those attributes are Timestamps.
    Example :
    initial time : 8.00 a.m
    final time : 1.00 p.m
    difference : 5.00 hrs(final time - initial time)
    Thanks in advance

    The timestamps have a method .getTime()
    This will return the milliseconds since January 1, 1970, 00:00:00 GMT .
    So if you do
    long diff = finalTime.getTime() - initialTime.getTime();diff will be the difference in milliseconds. Using that, you can calculate how many seconds/hours/days/... it is.

  • How to get addm report if there were shutdown actions between 2 snapshots?

    addmrpt.sql can get the addm report.
    but, this needs a requirement:
    if there were shutdown actions between 2 snapshots.
    The point is:
    the database has a shutdown and startup actions between 2 snapshots.
    What can I do to get the addm report?

    In terms of awrrpt?
    can I get awrrpt if there were shutdown actions between 2 snapshots?

  • How to get characters between quotes

    Dear All,
    Ther is a line in the code
    lv_v_report :='abcdef'
    I want to get only the characters between the two quotes i.e abcdef.
    Can someone suggest me how to do this.
    Regards,
    Gowtham.

    2 cases.
    1. If we want simply omit quotes.
    2. If we want to cut characters between quotes.
    P.S. From Your example, I am not 100% sure, that You really want it.
    But anyway
    SQL>
    SQL> with tab1 as
      2  (select '''abcdef''' col1 from dual)
      3  select replace(col1, ''''),
      4         substr(col1,
      5                instr(col1, '''') + 1,
      6                instr(col1, '''', 1, 2) - instr(col1, '''') - 1)
      7    from tab1
      8  /
    REPLACE(COL1,'''') SUBSTR(COL1,INSTR(COL1,'''')+1
    abcdef             abcdef
    SQL> Regards
    Dmytro

  • HOW TO GET CONNECTIVITY BETWEEN PO NUMBER AND BILL OF MATERIALS

    SIR
    my requirement is that to print the purchase order number and the item in that po number and if that item contains any components in BOM (tcode -cs02) then to print those all components.
    Ebeln and  matnr is stored in ekpo table .
    corresponding to that matnr how to see the component because STPO(bom item table) do not contain ebeln and matnr field.
    it contains the component field ie IDNRK
    SO PLEASE TELL ME HOW TO WRITE A REPORT TO DISPLAY ALL THESE THREE THINGS
    po number and item inside it and if this item contains component then to display all that components .
    reply as soon as possible.

    Hi
    Pass the PO Material and Plant
    <b>EKPO-MATNR and EKPO-WERKS to MAST table and take the BOM related fields
    STLAN
    STLNR
    STLAL</b>and use them in STKO and STPO tables and get the BOM info.
    Reward points if useful
    Regards
    Anji

  • How to get the hour:minuts:seconds using java

    I have table xydata
    here i get the gsTime like this 2010-04-21 10:58:40
    the above time i want to get only 10:58:40
    how to write the java for this
    please help me
    Thanks in Advance

    Problem of this sort cry out for using regular expressions. It is what they were invented for. If the OP wanted the whole date parsed into a java.util.Date then it would be a different matter and SimpleDateFormat would be the way to go but extracting part of a string is what regular expressions are best at.
    In this case, even a regular expression approach is far too complex. Which of the following do you consider the most appropriate ?
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    public class Sabre20100508
        public static void main(String[] args) throws Exception
            String[] lines =
                "2010-04-21 11:01:35",
                "2010-04-21 11:01:58",
                "2010-04-21 11:02:21",
                "2010-04-21 11:02:42",
                "2010-04-21 11:03:28",
                "2010-04-21 11:03:51"
                Pattern p = Pattern.compile("(?<= )\\d{2}:\\d{2}:\\d{2}");
                System.out.println("Method 1 :-");
                for (String line : lines)
                    Matcher m = p.matcher(line);
                    if (m.find())
                        System.out.printf("    [%s]\n", m.group());
                Pattern p = Pattern.compile("\\d{4}-\\d{2}-\\d{2} (\\d{2}:\\d{2}:\\d{2})");
                System.out.println("Method 2 :-");
                for (String line : lines)
                    Matcher m = p.matcher(line);
                    if (m.matches())
                        System.out.printf("    [%s]\n", m.group(1));
                System.out.println("Method 3 :-");
                for (String line : lines)
                    String[] splitLIne = line.split(" ", 2);
                    System.out.printf("    [%s]\n", splitLIne[1]);
                System.out.println("Method 4 :-");
                for (String line : lines)
                    int index = line.lastIndexOf(" ");
                    System.out.printf("    [%s]\n", line.substring(index + 1));
                System.out.println("Method 5 :-");
                SimpleDateFormat parser = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
                SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");
                for (String line : lines)
                    Date date = parser.parse(line);
                    System.out.printf("    [%s]\n", formatter.format(date));
                System.out.println("Method 6 :-");
                for (String line : lines)
                    System.out.printf("    [%s]\n", line.replaceAll("[^ ]* ", ""));
    }My vote goes to method 4!

  • How to get days between 2 dates  in jasperreports

    hi All
    i m not getting how to find days b/w 2 dates in jasper reports.....
    here is da detail info....
    i am generating jasper reports for transaction in bank
    i have to get the days b/w current transaction and last transaction dats way its needed
    plz any one help me to get days b/w current and previous transactions...
    i m waiting for ur respone....plz.
    with regards
    kotresh

    take a look at Calendar in the API docs.
    It should give you some ideas.
    If it doesn't, look harder as the answer is right there.

  • How to get association between site and project on PWA_Content DB

    Hello everybody.
    I'm trying to get data from lists of all project sites on Project Server.
    I'm using this query to get it: 
    select c.ntext2,b.MasterUrl, c.tp_Modified
     from PWA_Content.dbo.Lists a left join PWA_Content.dbo.Webs b on b.Id=a.tp_WebId 
     left join PWA_Content.dbo.UserDataVersioned c on a.tp_ID=c.tp_ListId 
     where a.tp_Title like '%Postagens%' order by b.masterurl,c.tp_Modified
    But this query shows posts of lists Postagens of all project sites. I need to filter it by ProjectName to show only posts of one project on each search. 
    I looked for a match between projectname or projectid and something on PWA_Content.dbo.Webs or PWA_Content.dbo.Sites views. I tried to Split MasterUrl field to match project name but some projects have different site names and project names.
    Can somebody help?
    Thanks.
    Gabriel.

    Hi Gabriel
    I might be missing something here, couldn't understand your question fully, but if it is related to project sites, why not to query it from MSP_EPMProject_Userview from project server DB(reporting Db if version is 2010)and get it from there ?
    Something like this
    SELECT
    ProjectUID, ProjectName, ProjectWorkspaceInternalHRef
    FROM MSP_EpmProject_UserView
    Thanks | Sunil Kr Singh | http://epmxperts.wordpress.com

  • How to get relationship between material document no and accounting documen

    Hi Experts !!
                     I want to create a report displaying accounting document no and GL account no buy providing PO No and material document no (MIGO No).
    I want a database table from where I can get  material document no (MIGO No)(MBLNR/BELNR) and accounting document(BELNR) no both.Currently I am using
    BSEG for getting HKONT,EBELN,BELNR
    MSEG for getting MBLNR by using EBELN (P.O. NO)
    BKPF for getting BUDAT.
    the problem came with EBELN (P.O. NO) as repeated entries are there.
    I am unable to write query for getting MBLNR and  BELNR for same EBELN (P.O. NO).
    Is there any table where MBLNR and  BELNR are related to each other??????
    Thanks in advance !!!!

    Check this thread, if this helps.
    [url] Link between MKPF table and EKKO or RBKP table [url]
    I've done this as well earlier to create a custom document flow for archived documents where from the EBELN i've found all the related documents. Hope this helps.

  • How to get average between rows that are null?

    I need to get the average between the 2 positive numbers.
    Then update the table with the average for those rows that are NULL between the 2 positive numbers.
    The average will come (78+89)/2= 83.5. Round it to 84.
    Then it will be:
    6-4-13       84
    6-5-13        84
    6-6-13        84
    As for 6-9-13 and 6-10-13, those values will still be NULL.
    {code}
    create table dummy( tmestmp date
    ,maxtemp number(4,0));
    insert into dummy(tmestmp,maxtemp) values(to_date('20130601','YYYYMMDD'),70);
    insert into dummy(tmestmp,maxtemp) values(to_date('20130602','YYYYMMDD'),81);
    insert into dummy(tmestmp,maxtemp) values(to_date('20130603','YYYYMMDD'),78);
    insert into dummy(tmestmp) values(to_date('20130604','YYYYMMDD'));
    insert into dummy(tmestmp) values(to_date('20130605','YYYYMMDD'));
    insert into dummy(tmestmp) values(to_date('20130606','YYYYMMDD'));
    insert into dummy(tmestmp,maxtemp) values(to_date('20130607','YYYYMMDD'),89);
    insert into dummy(tmestmp,maxtemp) values(to_date('20130608','YYYYMMDD'),91);
    insert into dummy(tmestmp) values(to_date('20130609','YYYYMMDD'));
    insert into dummy(tmestmp) values(to_date('20130610','YYYYMMDD'));
    {/code}
    I need the output to look like this:
    Header 1
    Header 2
    01-JUN-13
    02-JUN-13
    03-JUN-13
    04-JUN-13
    05-JUN-13
    06-JUN-13
    07-JUN-13
    08-JUN-13
    09-JUN-13
    10-JUN-13
    70
    81
    78
    84
    84
    84
    89
    91
    null
    null
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    "CORE 10.2.0.4.0 Production"
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    Suggestions?
    TIA.
    Steve42

    select  tmestmp,
            nvl(
                maxtemp,
                round(
                       last_value(maxtemp ignore nulls)
                         over(order by tmestmp) +
                       first_value(maxtemp ignore nulls)
                         over(order by tmestmp
                              rows between 1 following and unbounded following
                      ) / 2
               ) maxtemp
      from  dummy
    TMESTMP                MAXTEMP
    06/01/2013 00:00:00         70
    06/02/2013 00:00:00         81
    06/03/2013 00:00:00         78
    06/04/2013 00:00:00         84
    06/05/2013 00:00:00         84
    06/06/2013 00:00:00         84
    06/07/2013 00:00:00         89
    06/08/2013 00:00:00         91
    TMESTMP                MAXTEMP
    06/09/2013 00:00:00
    06/10/2013 00:00:00
    10 rows selected.
    SQL>
    SY.

Maybe you are looking for

  • Force Quit doesn't work

    I have been kinda irritated with the following problem which is happening quite often: When I use Safari to surf, sometimes as it tries to download some videos or pdf files, it hangs and I can see the beach ball rotating indefinitely. I cannot force

  • Link to files in iWeb

    Newbie to iWeb! I have created a site in iWeb, and want to create links to pages (.htm) generated by another program (Reunion). When I try to create the links I can't get iWeb to bring up the "linked" page. I've tried using link to file (clearly wron

  • Qosmio G30-161: Question about D port and HD signal

    Hi would anyone know if i was to connect the cable which i got with the qosmio laptop, which is D connector to scart. If i was to get a scart to component and connect both scarts together with an adapter will it work. would i get the high definition

  • Gif to swf...what to do to keep this timing of gif, in swf in Flash Builder(FX)? I converted the gif

    http://forums.adobe.com/message/4005827#4005827 gif to swf...what to do to keep this timing of gif, in swf in Flash Builder(FX)? I converted the gif with FW... but run too fast what ever I do...

  • Battery indicator seems to be incorrect

    Hey, i recently experienced the following problem: As i switched on my ipod after a longer period (1 1/2 weeks) of not using it, the battery status was indicated half full. Strangely the ipod switched of after only 2 minutes of usage. My Question is