Info about system - how to ?

Hello friends,
How can I find out on a SAP system the following info for the last few months ?
- System load average indicator,
- CPU usage rate, and enqueue,
- RAM usage, Paging out, and swap,
- I/O read and I/O write per sec and I/O queues,
Thanks in advance for help.
Jordan,
Moderator message: not directly related to ABAP development, please have a look in the SAP Netweaver forums.
Edited by: Thomas Zloch on Aug 31, 2011 4:47 PM

Check in:
ST06 Transaction:  Operation System Monitoring.
ST04 u2013 Database
ST02 u2013 SAP buffers
ST06 u2013 OS stats
ST05 u2013 SQL trace
SE30 u2013 Abap runtime analysis

Similar Messages

  • How can i get info. about sun systems in real life situation

    Hi
    infact i m not so experienced ? but i have got certification and nowadays i m improving myself and applying for jobs. please tell me how can i get info about the sun systems in real life situation. i mean that how can i get details like that mostly companies use which systems ? what is the trend of companies and how i can get detail of history of sun systems?
    Thanks in advance

    hmm.......... its very difficult to explain. an its more difficult simulate....well my suggession is to get in to some job with your present knowledge and try to learn more from there....

  • ITunes and Finder - how are info about audio files refreshed?

    I am now in the process of embedding artwork in my mp3-files using CoverScout. I have also updated info about all my tracks in the iTunes after embedding the artowrk, by selecting all the files and clicking GeitInfo and clicking OK (without making any changes). All albums are displayed correctly with new artworks. This, however, is not the case with the Finder.
    Generally, if a mp3-file has (embedded) artwork then the file would be displayed as a thumbnail of the artwork in question. The thing is that the icons for the mp3-files that were recently embedded with artworks are displayed as lacking artwork (they are displayed with the simple iTunes icon). Moreover, the Preview of GetInfo window does not show that the mp3-files contain the embedded artwork. The files are not refreshed. However, if I copy or duplicate those files then the copied files are displayed correctly, with the right getinfo. This, however, does not work if moving files. The files are not refreshed when moved, only when copying or duplicating.
    I find it curious that Finder does not refresh the files, even after restarting the Mac, given the fact that iTunes have the information that there is artwork. Is there a way to refresh the files in the finder without copying or duplicating the files?
    Another curious thing with albums containing tracks with embedded artwork is as follows: the Finder displays some of the tracks as thumbnails of the artwork in question, but not with all the files. The same goes for the Preview of the files in GetInfo. Some have the correct Preview displaying the artwork, but some lack the info about the artwork in the Preview. Why are not all files displayed as having embedded artwork, but only some, given the fact that they belong to the same album and the artwork was embedded in the same way?
    The same goes when I embed the artwork without CoverScout, by updating multiple files through iTunes (dragging the artwork to the Artwork-field in Info). The Finder does not display that the files are embedded. I must copy or duplicate these files in order to refresh the info.
    A more general question: how do I refresh files in the Finder? There is no refresh button, as in the Windows.
    I would appreciate your help.
    Kind regards
    Alex

    I was wrong about one thing concerning refreshing the files. I said that restarting the Mac would not refresh the files. However, if the iTunes have info about album's/tracks artwork then the Finder will also have this info after rebooting the system. My question is whether the Finder can be refreshed, without rebooting (restarting)?

  • How to get info about available Toshiba updates?

    I have noticed that this has taken over from the online product information button.
    I was wondering how do I know now when there is an update availabe for Toshiba specific software and hardware?

    To be honest if the system runs well und stabile you don't need any updates. On my one and half year old notebook I still use original preinstalled OS (recovery image) without any Toshiba specific updates. All I have installed are Microsoft updates.
    Anyway if you want to have info about available updates pick up info about TOSHIBA TEMPRO tool.

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • How to get info about Composition/Candidate window?

    Hi All,
    I'm working on an application which should be able to take multi-language input (especially chinese, japanese, and korean).
    When we type something in Chinese/Japanese, there will be Composition and Candidate Window popped up. I want to know whether there is a way to get/set some attributes/info about those windows.
    Specifically, I want to be able to position the Composition/Candidate Window anywhere I want...
    I've tried the active client tutorial for the on-the-spot and below-the-spot input, but I still haven't find a way to get a 'handle' to the windows...
    Can anyone help? Thanks in advanced :)

    I do not think the individual temp file percentages is of much use. What you usually want to know is how much of the temporary tablespace is in use and how much is available.
    For that I think you want to compare current total usage information that can be found in v$sort_segment against total available for usage data that can be found in dba_temp_files to get the percentage of available temporary file space that is in use.
    I quickly put together the following. See if either is on any use in constructing the information you really want.
    > @t20
    >
    > select
      2    used_blocks
      3   ,total_blocks
      4   ,f.blocks                             as FILEBLOCKS
      5   ,round(used_blocks/total_blocks * 100,1) SORTSEGPER
      6   ,round(used_blocks/f.blocks * 100,1)        TEMPFILEPER
      7  from
      8    v$sort_segment
      9   ,(select sum(t.blocks) blocks from dba_temp_files t) f
    10  /
    USED_BLOCKS TOTAL_BLOCKS FILEBLOCKS SORTSEGPER TEMPFILEPER
           8960       689664    1025024        1.3          .9
    >
    > select
      2    round(used_blocks/ (select sum(blocks) from dba_temp_files) * 100,1) ||'%'
      3    as TEMPFILEPER
      4  from v$sort_segment
      5  /
    TEMPFILEPER
    .9%HTH -- Mark D Powell --

  • How to get info about the mobile, like screensize...

    hi,
    i need some info about the device my midlet is running on.
    how is it possible to get info about the screensize, screentype(color/black) and perhaps devicetype or modelname?
    i already read it somewhere but i didn't find the source again.
    tia
    mmkl

    thx,
    the example below shows some basic information.
    Display myDisplay = Display.getDisplay(this);
    Displayable dis = myDisplay.getCurrent();
    int high = dis.getHeight();
    int width = dis.getWidth();
    boolean isCol = myDisplay.isColor();       
    int nubCol = myDisplay.numColors();more detailed information about model, aren't available through the standard api, on blackberry's there some restricted apis that provide these device-type and other detailed information...
    for more basic information, just look at the class-methods from display and displayable...
    mmkl

  • HT5815 The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    The most important piece of info about an update I need is how much data does it require. I am travelling and using prepaid data. I cannot even consider an update until I know how much data it will use. Please provide this information.

    http://www.apple.com/feedback/macosx.html

  • How to get info about web service caller inside Web Service

    Hi..
    I want to know that can we get info about Web Service Caller inside called web service..
    Info Like IP Address, User Id, User Name
    Regards,
    Ajay Sharma

    Hi,
    I tested following code using JDevloper 11g
    @Resource 
        WebServiceContext wsc;
        @WebMethod
        public String webMethod() {
                    MessageContext msgCtxt = wsCtxt.getMessageContext();
            HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
            System.out.println("Client IP = " + req.getRemoteAddr());
            return req.getRemoteAddr();
        }It is giving me IP address but when i tested this web service from another computer there also it is giving my machine address instead of the machine IP from where the web service is called.
    What is wrong in my code ?
    Regards,
    Ajay
    Edited by: Ajay Sharma on Dec 31, 2012 1:06 PM

  • How get info about computer app is running on?

    I am making an application that will have a license for running on only one computer at a time. I will have a license file that will hold info about the app, its version, etc. But I also want to put info about the computer that it's being installed on (none of that info will be sent to me, just saved in the license - enrypted - so the license can't be used on a diff computer). I do NOT want the OS name and version (they can change that) but the actual computer info.
    I know some C/C++ programs can do this, but is there any way to get this info from java? Does anyone have any sample code or even just suggestions of places to look for this information? It'd be greatly appreciated!
    Thanks in advance!

    I know it's not a perfect solution - yes someone could
    decompile it, but how many people do that or know how
    to do that? Well, most semi-decent Java programmers know how to do that. Then they'll decompile and crack it and distribute it, provided that your
    program actually is something good.
    While doing what I suggest wouldn't stop
    100% of the users from pirating my software (which I'm
    attempting to make a living off of), it would stop
    MORE than if I didn't do it.Probably it'd annoy more potential customers. It's a very bad idea to piss off the customers.
    As for changing the HD, or even the computer it's on,
    that would be totally possible. The app is equipped
    with a way to invalidate the license so it won't work
    on that computer, and contact my site to invalidate
    the public key and then allow them to redo it on
    another computer/HD. It all would take only about 2
    minutes actually, so it's not even an inconvenience.As a potential customer I'd have to disagree.
    I see no problem with that.Yes, but you're the author not the customer.
    Do you or anyone else know of a way to do this, even
    if not through Java, in C (JNI) or C++?Through JNI it's possible naturally, but I don't know the specifics.
    The reason
    it's a big deal is this: for a company like MS if only
    20% of the users of their product actually pay for the
    product, they're still making millions. If only 20% of
    the users paid for mine, I wouldn't even have enough
    money to live for 3 months!Get a job? :) Sorry, but seriously having copy protection isn't really going to make a difference. If your product is really good it will get cracked, if it's a specialized piece of software that won't be circulating in the mainstream, then a simple license check would suffice.

  • Hi, i have edited a clip in hd with final cut, now I need to export it in 2K format . anybody knows how i can do it in FCP?  in internet I found only few info about 2K format: no more than frame size.  nothing about codec or similar. thanks for any help.

    Hi, i have edited a clip in hd with final cut, now I need to export it in 2K format. anybody knows how i can do it in FCP?  in internet I found only few info about 2K format: no more than frame size.  nothing about codec or similar. thanks for any help.

    SoCal thanks for the attention,
    sorry for having wrote the question directly in the subject, but first i wrote it by text edit then copied it, but in the wrong place too.....
    coming to my question, timeline settings are:
    as it is a commercial promo that must be projected in a multiplex cinema, the 2K format is needed.
    I've heard about transcoding services, and they are very expensive. 
    so i'm looking if there is a way to do everything by fcp.
    the project will be delivered as SD DVD for archive pourposes and as a single file for the projection or eventually transconding.
    p.s.: sorry for my english, i'm from italy: had my last english lesson 35 years ago!

  • HT1222 I visited the USA and bought an Apple iPhone 4 5.1.1, the latest model.  I would like to unlock it and use in my country.  How can I get it unlocked so the I can use my local micro sim card?  What info about it do you need to assist me in unlocking

    I visited the USA and bought an Apple iPhone 4 5.1.1, the latest model.  I would like to unlock it and use in my country.  How can I get it unlocked so the I can use my local micro sim card?  What info about it do you need to assist me in unlocking it?

    Sounds like you bought an AT&T no contract phone. You will need to contact AT&T for unlocking but they are only doing so for current and previous account holders. If you have never had service with them they will not unlock your phone.

  • I visited the USA and bought an Apple iPhone 4 5.1.1, the latest model.  I would like to unlock it and use in my country.  How can I get it unlocked so the I can use my local micro sim card?  What info about it do you need to assist me in unlocking it?

    I visited the USA and bought an Apple iPhone 4 5.1.1, the latest model.  I would like to unlock it and use in my country.  How can I get it unlocked so the I can use my local micro sim card?  What info about it do you need to assist me in unlocking it?

    Contact the original cellular provider, as they are the only ones that can provide unlocking.

  • HT4061 how to get full info about the iphone by putting the imei number in pc

    how to get full info about the iphone by putting the imei number in pc

    https://discussions.apple.com/message/23921736#23921736

  • I recently purchased an iMac and found out that I can download OSX LIon for free, but have been unable to redeem on the Canada site.  According to their info Canadian systems should be eligible.  How do I redeem this on the Canadian site

    I recently purchased an iMac and found out that I can download OSX LIon for free, but have been unable to redeem on the Canadian site.  According to their info Canadian systems should be eligible.  How do I redeem this on the Canadian site?

    Please read and follow the instructions at the Lion - Get up to date site. If you continue to have problems you can contact AppleCare (the number is in your owners manual or you can use the AppleCare Contact Info site. 

Maybe you are looking for

  • I can't import a video on Imovie

    I am editing a project in imovie and whenever I want to import a movie from my hard drive it won't let me click on it to import. Does anyone know how to make it work?

  • Add a "Tell a Friend" button to an iWeb page?

    When you create a .mac web gallery page on the top toolbar there is a button to "tell a friend" with an envelope icon. Clicking the button brings up a window that allows you to enter your name and the email address of the person you want to share the

  • Oracle rdf summary column is not working as expection

    hi I have Requirement  to bring as below Format emplo name project name project nnumber cp_1 cp-2 ...cp_25 mark abc           123 20 30 10 mark dfc           234 25 35 15 mark 45 65 25 for that i have created the Rdf  and rtf In Oracle Report One gro

  • Error in Accessing Web service...

    Hi, This is regarding ESB. I am using a file adapter to send a .xml file.Then using a soap service in which i gave wsdl location of a web service and response from the web service is sent to a outbound file adapter(write.ext). In response file(write.

  • Hi I don't have face time in my iPad mini

    Hi, I am facing problem that I don't have FaceTime app on my iPad mini. Please advise. My iPad model is MD543AE/A