Starting a node while you are in other node in RAC

Hi,
Any idea how to start a node while you are in other node in RAC?

Hi,
Not sure what is your database version. However, you can start/stop the instance via srvctl and/or sql*plus.
Note: 753516.1 - The difference between using srvctl vs using sqlplus for start/stop one or more database nodes
Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Administration and Deployment Guide
http://www.oracle.com/technology/documentation/database.html
Regards,
Hussein

Similar Messages

  • How do you surf the web while you are on the iphone?

    How do you search the web while you are having a phone conversation? do you have to put the phone on speaker?

    You dont have to, but it is hard to listen and look at the screen at the same time.  You can also use a bluetooth headset or ear phone that came with the phone.  Remember you can not do both at the ame time on Verizon.

  • Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks

    Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks Ben  [email protected]

    Hello Trevor
    Thanks for your message. You can custom set pages but there are no preset of page sizes like A4, A3, ect. I cannot click the size preference, nothing comes up
    Ben

  • HT2128 Does any one know how to attach a document from your mail, while you are already in your e-mail, meaning not having to look for your file first and then open the e-mail.

    Does any one know how to attach a document from your mail, while you are already in your e-mail, meaning not having to look for your file first and then open the e-mail.

    Luis
    Good question - and one that a lot of (business) people would like solved!
    Your question prompted me to do some research, and I found this workaround posted by Scott Grossberg:
    His solution actually addresses a second problem too - how to attach a document when replying to an email message. In your case you may not need to consider the "reply" aspect - but if not right now, it'll come in useful someday!
    I've pasted it verbatim - if it works for you (it does for me) then all credit goes to Scott for solving the problem. There's just one thing I'd add to his solution: you will probably want to rename the message, as by default Goodreader gives it the Subject line: Mail with GoodReader attachments.
    THE GOODREADER OPTION
    1.  CREATE the document you want to send.
    2.  SAVE it to GoodReader (this will require you to buy and install the app).
    3.  Go to your email and OPEN the email thread to which you want to Reply and attach your file.
    4.  COMPOSE your Reply.
    5.  DOUBLE TAP the message.
    6.  TAP SELECT ALL. This will copy the entire email thread.
    7.  OPEN GOODREADER on the iPad and go to the file you want to send as part of your Reply.
    8.  At the bottom of the GoodReader screen you will see an EXPORT icon (it looks like a rectangle with an arrow pointing to the right).
    9.  TAP the Export button.
    10.  TAP EMAIL FILE. Depending on your needs, tap either SEND FILE “AS IS” or “FLATTEN ANNOTATIONS.” This will open a compose message screen with the chosen document already attached.
    11.  TAP in the body of the email screen. TAP PASTE. This will place your composed Reply and the prior email thread into the message.
    12.  ENTER the Recipients’ names in the TO: field of your message.
    13.  SEND your email Reply.
    The modified version (= when composing a new message rather than a reply):
    1 Make sure that the doc you want to attach is saved in GoodReader
    2 In the message you are composing, double tap, select all, and then copy.
    3 Open GoodReader and select the file you want to attach
    4 Select the export button at the bottom of screen
    5 Select e-mail file
    6 Position cursor in body of the email message, tap and paste. You may want to delete the "sent from GoodReader" text that precedes the attachment.
    7 Rename your message (as by default it will be Mail with GoodReader attachments)
    8 Add the recipient's address in the To field.
    Hope this helps! All thanks to Scott for this workaround.

  • Is it true that while you are using someone's wifi, that they can see whatever your doing that involves the Internet?

    Suppose you are using wifi. For example, I use my dads wifi, can he see what I am doing on my iPod when I use the Internet/wifi?

    Yes it is possible if he has installed the appropriate monitoring software.

  • How to paint a Custom Cell  while you are editing on adjacent Cell in JTabl

    Hi All,
    I have two Columns in my Custom Table . Both Two Columns are Custom Cell Editors/Renderers.
    I have made UI such that Column1 is Label , Column 2 is TextBox / Combo/ UI Input any
    My Custom Table View when i edit some value against Max Conn. it should display Blue
    =================================
    Column A | Column B
    ==================================
    Timeout | some_unchanged_value
    *{color:#0000ff}Session{color}* | some_unchanged_value
    Log File | some_unchanged_value
    ===================================
    My issue is when i start typing in my Custom Editor suppose i Type /invoke Edtir of Index 2, Column 2 font should become Blue.
    It becomes blue only when i debug this issue it perfectly works, without Debugger it doesnt changes the Font
    MyDefaultRenderer is my Custom renderer - I have set Foregroud Color as BLUE
    NOTE:_
    In run method if table.repaint() instead of single renderer:
    It turns Blue when i make call on table.repaint() methosd but i feel that repainting full table on every key Stroke should not be very good programming. Whats is more appropriate way?
    I want to repaint only that particular cell against which i change the Value
        private class MyDefaultEditor extends AbstractCellEditor implements TableCellEditor {
            private JTextField txtField = null;
            private int rowIndex;
            public MyDefaultEditor() {
                txtField = new JTextField();
                txtField.addKeyListener(new KeyAdapter() {
                    @Override
                    public void keyTyped(KeyEvent e) {
                        super.keyTyped(e);
                        System.out.println("########### Hello This is MyDefaultEditor");
                  SwingUtilities.invokeLater(new Runnable() {
                            public void run() {
                                  // Call Renderer adjacentt to input to turn Blue (Is this Valid Code ??)
                                MyDefaultRenderer defRen = (MyDefaultRenderer) thisTable.getCellRenderer(activeRowIndex, 0);
                                defRen.paintMe();
              // table.repaint() works for me but i dont want to call it on evey ket type, that will be Heave rite???
            public Component getTableCellEditorComponent(JTable table,
                    Object value, boolean isSelected, int row, int column) {
                rowIndex = row;
                String valStr = "";
                if (value != null && value instanceof String) {
                    valStr = value.toString();
                txtField.repaint();
                return txtField;
            public Object getCellEditorValue() {
                return txtField.getText();
        }Edited by: Shubhadeep on Jun 27, 2009 1:58 AM
    Edited by: Shubhadeep on Jun 27, 2009 2:01 AM
    Edited by: Shubhadeep on Jun 27, 2009 2:06 AM
    Edited by: Shubhadeep on Jun 27, 2009 2:12 AM

    Well, I think you need to add a custom renderer to the first column. The renderer would check if the table.isEditing(). If it is and the editing is done on the same row, then you set the font color blue, otherwise you use the default font color.
    Then the next question is how do you repaint the cell. Well you can use the table.repaint(Rectangle) method. You can get the Rectangle to repaint by using the table.getCellRect(...) method.
    Finally, you need to know when to repaint the cell. Well a PropertyChangeEvent is fired when a cell starts and stops editing. So you only need to handle these events. Don't use a KeyListener. The PropertyChangeListener you add to the table might be something like:
    public void propertyChange(PropertyChangeEvent e)
         if ("tableCellEditor".equals(e.getPropertyName()))
              if (table.isEditing())
                   processEditingStarted();
              else
                   processEditingStopped();
    }So when editing is started you need to determine the "adjacent" cell you want to repaint to the blue font is used. You would save the cell Rectangle so you can restore the font when editing is stopped.

  • Item don't return to SC if you try to print while you are in catlog

    Our Client is in SRM6.0 and they have long pending issue related to IE7. We have opened OSS msg with SAP and we got respond that this is an current architect issue of SRM6.0. I would like to know if this problem do exists in SRM7.0 or SAP was able to resolved it in SRM7.0.
    Here are the details of the problem
    When a user prints any page of a punch-out catalog, SRM will not return the items to the shopping cart. Instead, it will default back to the Step 1 / Catalog Selection screen. At any point while at the punch-out web site, right click and print the web page. When the items are checked out of the punch-out, they will not be returned to the SC, rather, SRM will default back to the Step 1/Catalog Selection screen. These issues, however, are related strictly to returning from a PUNCHOUT catalog. That is, a catalog hosted remotely by the supplier.
    Thanks,
    Sachin

    Sorry, I see a response from SAP and they confirmed this problem exists in SRM7.0 too.  They are working with Microsoft to resolve this issue.

  • Can you make bootcamp come up everytime when you start your computer so you are able to select which OS you want to load up?

    Is there an option to select to get the bootcamp selection screen to come up everytime i start my mini?

    Hi,
    rEFIt http://refit.sourceforge.net/ is one possibility.
    BootPicker http://www.apple.com/education/resources/bootpicker/ is another one.
    Regards
    Stefan

  • What is going on....first real player then something else and now you want me to upgrade to a new version that will not let me use my systematic virus solftware.....what is going on....seem something corrupt in what you are shooting for control over

    every new version is limiting either your own advertised ad ons or real play and now systematic......do you really think that I and others are going to stop using their norton virus software that they get from comcast in order to upgrade....I don't think so. This is getting highly suspect and a trusted browser seems like they are now being paid off by microsoft or some such. I do not trust this at all

    I've called the big guys to help you. Good luck.
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • How do you know when you are using the internet?

    If I am using an app that requries internet, and I press the middle button to get out of it am I still using part of my data plan?

    While you are using the app if you are not on WiFi you are using the internet. If the app is one of the few that can run in the background you need to close it to stop it from using your data plan. Double click the home (middle) button, hold down your finger on the app, when you see a red circle with a dashed white line next to the app icon tap it, press the home button.

  • It's not the way you are holding Iphone 4 calls still drops using earpiece

    I'm having a huge problem. My calls is always droping whether I'm holding or using earpiece with iPhone 4.

    NYPRBK wrote:
    I'm having a huge problem. My calls is always dropping whether I'm holding or using earpiece with iPhone 4.
    Where is the iPhone while you are using the earpiece?
    Phil

  • Is there a way to turn off text messaging while you listen to songs/videos?

    I was wondering if anyone knew if there was a way to temporarily turn off text messaging while you are listening to a song or video? I find it very annoying that if I let someone listen to the videos on my phone - that while they are doing that and a text comes in - it shows up right on the phone for them to read it. This did not play out too well when my girlfriend was listening to it yesterday.(keep all smart comments to a minimum please, lol). Can you turn off texting while you listen and then turn it back on when you finish? Please say yes... Thanks

    Nathan, thanks for that info....I appreciate that. That makes a lot of sense (what you said about airplane mode) and seems to be a good feature. I had been told a couple of times by airline personnel to please turn off my phone.
    This seems to be the answer I was looking for. I just hope that it will still play in my car. I was finally able to find a Belkin Cable to connect it to to hear music. I have an auxillary port for it. That is where & when the trouble lies. When I am listening to the ipod portion - watching a video - and hearing the music come from my speakers in the car. All of a sudden, a text comes through and you can read it & it asks where you want to 'view' or 'ignore'. I'm gonna test it...

  • Can you set ear buds to ring through when you are on a call?

    Can you set ear buds to ring through while you are on a call using Iphone 4?

    planb77, thanks for your reply. Unfortunately it doesn't really answer my question since my mail is not on a POP server. It's imap, so it's synced with my iPod. I just wondered if there was a way, while preserving the syncing, to opt out of syncing when I delete.
    Any other ideas?
    Thanks again.

  • "You are currently restricted from purchasing...

    You are currently restricted from purchasing services or redeeming vouchers. Please contact Customer Support to review your account status my account showing me above message please tell me what to do in that

    Hi, careeringulf, and welcome to the Community,
    You do need to contact Skype Customer Service as the e-mail you received explains.  This could be a simple account verification procedure to ensure your account has not been compromised or used fraudulently.  This FAQ article explains the details:
    https://support.skype.com/en/faq/FA10946/what-should-i-do-if-my-account-is-suspended-hacked-or-compr...
    Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service
    If you experience difficulty reaching Skype Customer Service or find yourself redirected back to the Community, please try again using a different web browser and choosing a different path through the various drop-down menu options presented.
    Also, look to approve a pop-up dialogue box which would connect you to start an instant message chat with a customer service agent. If you have pop-ups blocked in your browser settings, this will also block reaching an agent.
    Last and not least, when you reach the last step of the process, remember to click on the "Start Chat" link when you are provided the choice of visiting the Community or starting an instant message chat with a customer service agent.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Does iPhoto not have safeguards against accidentally deleting an entire photo book, which is very easily done (when you think you are deleting just a photo)? No "are you sure you want to delete?". No way of copying your book before, or restoring it after?

    Does iPhoto not have safeguards against accidentally deleting an entire photo book, which is very easily done with a single press of delete (and which can be done when you think you are deleting just a photo)? No "are you sure you want to delete?" before it happens? No way of copying your book while you are working on it (to make multiple versions of it, or just to have a safeguard copy), and no real way of restoring it after (since, remarkably, the photo books don't appear as items - items which could very easily be recovered otherwise)?

    I get a dialog box when I try to delete a book.
    And if you right click on the book in the left column you can duplicate it so you can have multiple versions.

Maybe you are looking for

  • Help needed in SRM upgrade to SRM server 5.0

    Experts, My client is on EBP 2.0 and going for an upgrade to SRM Server 5.0 and working on classic scenario and keeping the backend as 4.6C for this phase of the project. Please share any experiences on how to go about the upgrade, any questionaries,

  • Mail Connection Failures And EWS (Exchange Web Service) Errors

    Hi, I upgraded from Leopard to Snow Leopard on Friday, and was able to set up my Mail, iCal, and Address Book very quickly and easily. Everything has been working great until today, when I experienced an issue with emails with attachments. The compan

  • Why URL column in WWSBR_ALL_ITEMS is empty for url item type??

    I tried to query url of the url item from WWSBR_ALL_ITEMS, but url doesn't return anything. Did I queried wrong table? Can someone please let me know how to find the actual url(such as http://www...) for the url item type. Thanks!

  • Lock Actions in PA40

    HI Folks, We have a new requirement in our role redesign project that Iam working on, where in a particular users in a business group should not be able to do certain actions in the pA40 screen. Restricting at the infotype level is not the answer bec

  • The hop url for clickbank do not open what to do ?

    When I am try to open link from ho clickbank it do not open for exsembel :http://161d6r8s0p0m7u3a5fdwey6r3f.hop.clickbank.net/ or http://b6d90r6vzo7r9s9jw5r4tr3br8.hop.clickbank.net/ it just come blank page . sincere Gudmundur E Joelsson