How to show the status for all CPU? Solaris 9 & 10 can support how many CPU

Hi, may i know wat is the command to show all of the CPU status? i tried use "top" command, but could show all. Any Idea?
And somemore, may I know Solaris 9 and 10 can support how many CPUs?
thanks
regards
raymond

What do you mean all of the CPU status?
top shows you processes on all processors and for the currently running processes, it shows you which CPU a process is on.
If you want separate stats for each processor, "mpstat 5" shows cpu usage and idle etc.
As far as how many CPU's solaris supports.
The largest machine Sun sells as far as I am aware is a E25K with 72 dual core CPU's
for 144 cores. Is that big enough for you? You probably don't want to know the price though :-).

Similar Messages

  • How to check the status of all of the current cache listeners

    Hi,
    Is there a way to programmatically show the status of all of the registered cache listeners?
    The background is that we found only one user (among around 20 users) always stops receiving the events from the cache. However the tcp connection to the proxy server is always alive. We are using .NET client.
    Please provide any suggestions on this issue.
    Thanks
    Mu

    Is there a way to programmatically show the status of all of the registered cache listeners?Not easily. The listeners are managed in a hierarchical manner, so each storage-enabled server keeps track (e.g. per partition) what listeners it has to notify of what events, and each proxy keeps track (e.g. per connection) of what clients it has to notify of what events, and on the client it keeps track of what listener objects it has to deliver what events to. At each level in the hierarchy, there is a data structure that keeps track of this information, and that data structure will typically be an instance of com.tangosol.util.MapListenerSupport. While it is theoretically possible to navigate these data structures at any level of the hierarchy, it's not straight-forward.
    The background is that we found only one user (among around 20 users) always stops receiving the events from the cache. However the tcp connection to the proxy server is always alive. We are using .NET client.It sounds like the client is getting disconnected at some point. To eliminate the obvious (e.g. an event listener getting stuck and never returning), take a thread dump of the .NET process, e.g.
    http://support.microsoft.com/kb/286350
    Next, add the listeners on the client side for the MemberLeft events. If the client does get disconnected, it should get that event.
    Also, turn up the logging level on the proxies (to at least D6) and check the logs when this happens.
    I'd also suggest that you file an SR with Oracle support to track this.
    Peace,
    Cameron Purdy | Oracle Coherence
    http://coherence.oracle.com/

  • How to set the status for a customer plan to RELEASED.

    Hello all,
    I created a program for mass creation of customer plans. But after the creation of a plan, the status should be set to released, so that the user can go about creating the trade promotions for the customer plan. Can anybody tell me how to set the status of a customer plan to RELEASED.
    Thanks,
    Disha.

    Hi Clemens,
    I am not talking about doing it in the CRM_UI transaction..I created a program..which would create the customer plans based on the planning account data provided. I was succesfull in creating the plans, but I am not knowing how to release it, if only anybody can tell me about a Function module or method, which can help me do this, that would be great
    Thanks,
    Disha.

  • How to migrate the calendars for all users?

    At work we have two Mac servers, both running Mountain Lion. I'm looking for a way to migrate the calendars for all the users from server A to server B. I've recreated all the users on the new server, as there are problems with most users on the old server.
    I've seen some topics covering backing up calendar data on the server and seen some PostgreSQL related, but nothing seems to apply to Mountain Lion. How do I create a PostgreSQL dump of the calendars? I know I will have to edit the GUID's to make it work on the new server. Or is it as simple as copying the data from /Library/Server/Calendar and Contacts/ to the same location on the new server?

    At work we have two Mac servers, both running Mountain Lion. I'm looking for a way to migrate the calendars for all the users from server A to server B. I've recreated all the users on the new server, as there are problems with most users on the old server.
    I've seen some topics covering backing up calendar data on the server and seen some PostgreSQL related, but nothing seems to apply to Mountain Lion. How do I create a PostgreSQL dump of the calendars? I know I will have to edit the GUID's to make it work on the new server. Or is it as simple as copying the data from /Library/Server/Calendar and Contacts/ to the same location on the new server?

  • How to show the content for a perticular time period(consider 30 days)

    Hi,
    There is a requirement that content should reside the portal only for 30 days and then it should be archived. Archiving means that it should be searchable from portal but it should not be visible on the portal. How would that happen?. Kindly tell me if there is an OOTB from jdeveloper or we need to do coding for that..
    Thanks,
    Arun

    Archiving means that it should be searchable from portal but it should not be visible on the portal.Before I got to this point I thought: a peanut - just define the Expiry Date parameter as entry date + 30 (this can even be automated) and you are done.
    The issue is that expired items are not searchable (except, perhaps, some admin searches). Having said that, the original idea is still valid, it only needs few more precisions:
    a) "should not be visible on the portal" - what does that exactly mean for you? Content items can be visible in Document section (e.g. in Spaces), they can be placed directly to pages, or displayed via Document Service Task Flows such as Content Presenter, Document Explorer, etc. Either way, there is one method which will work for all: in WebCenter Content it's called Archiver. Originally, it was designed to dump content items to the disk, and then, you could easily upload them to another system (with different metadata, if you will). Since Archiver works also if you work with just one system, you can use it to "mass update" metadata of desired items (older than 30 days). Note, however, that this method might be quite slow if you work with a lot of data.
    b) "should be searchable" - the idea of the Archiver (or another method alike) is that you take the item from its place ("searchable"/"visible") and put it to a new one (just "seachable"). Again, the question is what "searchable" exactly means for you. Some methods might work with portal-only data (from where you wanted to have it removed), whilst others might be more "federated" (e.g. WebCenter Content has a search portlet where you can search any content in the repository).
    There are definitely ways to implement what you intend, but you should provide more details.

  • How to set the background for all components?

    hi
    Does anybody know how to set the DEFAULT background color in an application.. I need it because in jdk 1.3 the default bgcolor is grey and in 1.5 it is white.. and I wish white as well.. so to make it also white in jdk 1.3 I need to use the (a bit annoying) anyContainer.setBackground( Color.white ); and these are lots in my app.. So my question is: is there such an overall class with a function (say UIManager.setComponentsBackground( Color color ) ) for such a purpose?
    any tip or link would be greatly appreciated

    Does anybody know how to set the DEFAULT background color in an applicationthis might get you close
    import java.awt.*;
    import javax.swing.*;
    import java.util.Enumeration;
    class ApplicationColor extends JFrame
      public ApplicationColor()
        setApplicationColor(Color.RED);
        setLocation(400,300);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JPanel jp = new JPanel(new BorderLayout());
        jp.add(new JTextField("I'm a textfield"),BorderLayout.NORTH);
        jp.add(new JComboBox(new String[]{"abc","123"}),BorderLayout.CENTER);
        jp.add(new JButton("I'm a button"),BorderLayout.SOUTH);
        getContentPane().add(jp);
        pack();
      public void setApplicationColor(Color color)
        Enumeration enum = UIManager.getDefaults().keys();
        while(enum.hasMoreElements())
          Object key = enum.nextElement();
          Object value = UIManager.get(key);
          if (value instanceof Color)
            if(((String)key).indexOf("background") > -1)
              UIManager.put(key, color);
      public static void main(String[] args){new ApplicationColor().setVisible(true);}
    }

  • How to show the status in colours on web dynpro.

    Hi frnds,
                  It is possible to display the status using like a signal lights.
                    Ex: process in green , completed in yellow ,pending in  red ..
                    based on the status(process,completed,pending) i want to display the color in the  browser.
                                                               or
                Display wards in color based on condition..
    Edited by: Rakhi@abap on May 15, 2010 5:47 PM

    Hi Rahki,
    The status of what?
    There are traffic light icons that you can use, or you can set  the cell design (which changes the background colour of a cell (if you are in a table).
    I often use this to indicate on a review step whether a cell/row has been inserted, modified or deleted from a table.
    Chris

  • HT3529 Is there a chance apple will have an option to show the timestamp for all messages?

    I am curious. Or is there an alternative application that DOESN'T require a sign up or in the very least will let me keep my current number?

    Nobody here knows any of Apple's plans.  There are several messaging apps in the App Store. Explore.

  • How to show specific data for user on redirected page once they logged in

    I and fairly new, but have a general understanding of Dreamweaver. Using CS3 or CS4, how do you get the redirected page after the user logges in to show only the data for that user? I have creater the login page and it works fine but i dont know what needs to be on the redirected page for it to show only the data for the user that just logged in.
    I am not very good with the coding part so if it requires it any help with that would also be helpful.
    thank all.

    I should be able to get the understanding if explained.
    As for scripting i believe its PHP. at lease thats the page i created the login page with.
    As for user-specific information: basiclly there account information.
    As for database i have dreamweaver linked to a MySQL database. it pulls from 2) tables
    1st table has the following: ID - User Names - Password  - account number
    2nd table has the following: ID - account number - names - address - ect
    So basiclly i want when a user loges in for it to redirect them to a page which then only shows the data for that users. if i can link the data the pulls up by the account number that would be ideal
    Thank you Murry

  • Print the logo for all pages

    Hi
    How to print the logo for all pages in xml report
    please provide the tags also

    Hi,
    create a Header and footer section and paste your logo inside and use the tag <?template:header?> before header and <?end template ?> after header section.
    Thanks & Regards
    Srikkanth

  • Help fix my function to show status for all folders

    I have created a function (tow of them for the same purpose) but they are not working. They compile but when i call them I get null result.
    What I want to do is get folder status for all folders in the database. There is a table called folder with status code, and another table called validstatus with the statuscode description
    So when you look at the older you just see the status code which is a number but then using the function you will get the desription of what that code means.
    Here IS THE function. Maybe I am not doing it right when I call them.
    CREATE OR REPLACE FUNCTION f_folderstatus (v_folderrsn IN NUMBER)
    RETURN VARCHAR2
    IS
    v_return VARCHAR2 (128);
    BEGIN
    SELECT distinct vs.statusdesc
    into v_return
    FROM folder f, validstatus vs
    WHERE f.statuscode = vs.statuscode
    AND f.folderrsn = v_folderrsn;
    RETURN v_return;
    END;
    When I call them using this statement I get null
    select f.folderrsn, f_folderstatus3(vs.statusdesc)
    from FOLDER F, validstatus vs
    where f.statuscode = vs.statuscode
    Edited by: user9508421 on Sep 11, 2008 8:11 AM

    Now how do I create a function to give folder status for all foldertypes? I will then use this function in a package.
    The Folder table has the following columns:
    NAME Null? Type
    FOLDERRSN NOT NULL NUMBER(10,0)
    FOLDERTYPE NOT NULL VARCHAR2(4)
    STATUSCODE NUMBER(10,0)
    SUBCODE NUMBER(10,0)
    FOLDERDESCRIPTION VARCHAR2(4000)
    FOLDERCONDITION VARCHAR2(4000)
    FOLDERNAME VARCHAR2(80)
    The validstatus table has these columns:
    NAME Null? Type
    STATUSCODE NUMBER(10,0)
    STATUSDESC VARCHAR2(80)

  • How to disable the status icon in Skype 4 for Andr...

    Dear Skypers,
    How to disable the status icon in Skype 4 for Android phones?
    The guide on this following support page not working anymore: https://support.skype.com/en/faq/FA12359/how-do-i-enable-or-disable-the-status-icon-in-skype-4-for-a...
    Older version has the option to disable Skype Status and get rid of the Skype icon on Android status bar. But latest 4.4.0.31835 could not disable Skype Status in notifications settings. :/
    Device: Google Nexus 4
    Android: 4.3 JWR66Y
    Skype: 4.4.0.31835
    Please bring back the option to disable the Skype icon on Android status bar. This is the main reason I uninstall Skype. :/
    Kudos to the team, the apps is really smooth and fluid to use. Would be nice if you guys are following the Android Design Principles and using Google Cloud Messaging for push notification to improve User Experience and battery life.
    Kind regards,
    /chrone
    everytime i get ahead, i feel more dead.
    Solved!
    Go to Solution.
    Attachments:
    how to get rid of skype icon on android status bar.png ‏46 KB

    Long click on this notification a sub menu having field "App info" would appear goto App Info. You can goto there by "Manage Apps">"Skype" also. 
    Uncheck Option "Show Notifications" A dialog will open. Don't worry about notifications for now just click OK. Now the notification icon skype has also been removed. 
    Now simply check "Show notification again". After doing this you would get notifications but skype icon would not be shown in the status bar anymore.
    Issue: this is just a trick you need to repeat this every time sign out and sign in again. Mostly you don't do that so no need to worry.

  • Is it possible for me to transfer my downloaded games from my itouch to my ipad? If yes, how?  Will the status of the games be the same?

    is it possible for me to transfer my downloaded games from my itouch to my ipad? If yes, how?  Will the status of the games be the same?

    As long as the apps are still available in the store, and you use the same iTunes account as you originally used to buy them, then you should be able to re-download them for free : http://support.apple.com/kb/HT2519
    If you want to copy over your progress then you will need to try backin up the iPod and restoring that backup onto the iPad - you can't just restore individual apps, it's all or nothing.

  • How can I change the duration for all clips in iMovie 10.2

    How can I change the duration for all clips in iMovie 10.2?  I'm used to working in the older version of iMovie where all I had to do was click on the gear on the clip and change the duration. ALso could use the tool bar to set the duration for all clips. Can't figure out how to do that in this new version. Any suggestions would be appreciated.

    In the timeline select the clip whose duration you want to change. Click the adjust button at the top of the viewer and then click the i button and you can set the duration. For multiple clips select them all and in the i button type in the duration you want and it will be applied to all the selected clips. You can also change the duration of a clip in the timeline by putting the cursor over the beginning or end of a clip and dragging. A popup will show the new duration.

  • How to show the message text for constraint violations

    Hi all,
    In a batch procedure a primary key is violated (ORA-00001). For the primary key, a message is recorded in the TAPI and the message table.
    How to show the enduser a proper message text instead of the ORA-00001.
    We are using Designer 6 with Headstart 2.1.2.
    Thanks in advance,
    Joep

    Joep,
    If you try to insert the record by calling the ins procedure of the Table API, you will see that it will result in an ORA-20998 message, which means that the error message details reside in the CG$ERRORS plsql message table. These messages can be extracted e.g. with the messages.sql script, shipped with headstart.
    If you do not want to rewrite your direct DML (insert into [table name] ...) in the complexer calls to the TAPI services, you might want to user VAPI's for it. In fact, this is one of the major advantages of using VAPI's.
    The CDM guidelines volume, chapter 6 states that:
    <I>The front end no longer needs to trap declarative constraint
    errors (Primary Key, Unique Key, Not Null and Check
    Constraint violations) and replace them with a user-friendly
    error. The View API issues DML statements through the TAPI
    and the TAPI traps all declarative constraint errors, and puts
    user-friendly message on the stack, in the preferred language of
    the user! Fore more information, see the section, Completeness
    of Rule Violations Reported in Front End, in this chapter.</I>
    So the only thing you need to do is generate VAPI's, and trap the ORA-20998 message (qms$errors.qms$exception) in an exception handler, where you retrieve the user friendly messages from the message stack!!
    Regards, Marc

Maybe you are looking for

  • Can I upgrade to the new MacBook Pro from PowerBook copying the hard disk?

    I have a Power Book G4 17", now I'm going to buy a new MacBook pro 17" and want to transfer the same software (I mean the whole content of my actual HD) to the new MacBook Pro using SuperDuper! I want to know if the Intel based MacBook Pro can run th

  • Help in correcting the query

    Hi, I have below query: select u.v_um_code,v_um_name,count(f.v_fc_code), count(s.n_sl_no), count(distinct s.n_agent_no) from subm_buss_um_master u,subm_buss_fc_master f,submitted_business_raw s where u.v_um_code=f.v_um_code and f.v_fc_code=s.n_agent_

  • Need time in 'sssss'  format

    Hi, I am developing a process which takes a file say a.txt as input and processes records in it and outputs 3 files say b.txt,c.txt,d.txt. To make them unique we had appended date in 'sssss' format to the file name expecting something like b_00321.tx

  • Filters on CSWP not working when Scheduling Start Date sets Immediate Value

    In Sharepoint 2013, When users sets value of "Scheduling start date" to "Immediately", the filters does not work correctly. I have checked many forums where it is mentioned that If you set scheduling Start date to Immediately, internally the Scheduli

  • ISE with Proxy Server (internet explorer)

    Hi guys. I´m implementing a Cisco ISE in customer now and I have the follow state: AUTHENTICATION mab > wired_mab OR wireless_mab > default network protocos > internal endpoints employee > wired_802.1x OR wireless_802.1x > Radius Server Sequence Gues