Data Guard Doesn't Display the Instance Detail

Hello Everyone,
I have 2 node primary RAC and 2 node Standby RAC. I can see the properties of the RAC DB using "show database verbose rac_p" but when I use "show instance verbose rac_p1" it gives me error
DGMGRL> show instance verbose rac_p1
Instance "rac_p1" was not found
Please note that I get same error on second primary node and on both of the standby instances.
What is wrong with my configuration?

Doesn't work either:
DGMGRL> show instance verbose rac_p1 on database rac_p
Instance "rac_p1" was not found
DGMGRL> show instance verbose rac_p2 on database rac_p
Instance "rac_p1" was not found
DGMGRL> show instance verbose rac_s1 n database rac_s
Instance "rac_s1" was not found

Similar Messages

  • Function module to display the card details for the tcode BCA_CN_card_03

    HI all,
       I need to know the function modules to create the card data  and also to display the card details in accounts management in CRM.
    Points will be awarded.
    Thanks and regards,
    vinoth.

    1 BUPA_ADDRESS_GET_DETAIL
    2 BUPA_IDENTIFICATION_GET_DETAIL
       BUPA_IDENTIFICATIONDETAILS_GET
    3  BUPA_TAX*
    4,5 BUPA_PCARD*

  • My iphone 4 music player doesn't display the arabic songs names ?

    My iphone 4 music player doesn't display the ARABIC songs names ?

    ok i found the solution here by deleting the corrupted library
    http://portablevideo.blogspot.com/2008/12/music-player-database-problems.html 
    now one of these below is for the music and one for the photos and i didnt have a problem with the photos but did it anyways and now the player can see my music:
    these are the files that need deleting in order to get rid of the corrupted library.
    Storage Drives: (Mass storage E, Memory Card F)
    \private\101ffca9\harvesterdbvx_x.dat
    \private\10281e17\[string]mpxvx_x.db
    \private\10281e17\[string]pcvx_x.db 
    TIP: Connect the device in USB mass storage mode (File Transfer), to locate the private folder from the PC.
    TIP: STRING and x_x will change depending on your phone. (my files had slightly different names than above on the n97)

  • How to create a task list view in c# that doesn't display the timeline

    How can I create a view for a task list using c# that doesn't display the timeline.  I want to do this using server side code but I can't seem to find a view property that will hide the timeline.  I know how to do it manually through the UI but
    I need to automate it.
    Caroline

    Hi Garoline,
    We can set ViewData of the view to empty to achieve your requirement. The following code snippet for your reference:
    using (SPSite site = new SPSite("http://sp2013sps/"))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["TaskList"];
    SPViewCollection allviews = list.Views;
    string viewName = "Test View";
    System.Collections.Specialized.StringCollection viewFields = new System.Collections.Specialized.StringCollection();
    viewFields.Add("Checkmark");
    viewFields.Add("LinkTitle");
    viewFields.Add("Due Date");
    viewFields.Add("Assigned To");
    string myquery = "<where><gt><fieldref name='ID' /><value type='Counter'>0</value></gt></where>";
    allviews.Add(viewName, viewFields, myquery, 100, true, false);
    SPView view=list.Views[viewName];
    view.ViewData = "";
    view.Update();
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • EM don´t display the instances(infrastructure and midtier)

    Hi OTN Forum,
    I have installed a box Linux RH AS with Oracle9iAS R2 infrastructure and midtier in the same box.
    When I log in into EM with the user ias_admin the page don´t display the instances.
    Any idea about this issue?
    Thanks folks!
    Regards,
    Wilson

    The development module displays images in ProPhoto RGB colour space, the library module (I assume that's Bibliothèque) displays images in Adobe RGB colour space. 
    If there's a difference, then one possibility is a colour management problem (faulty monitor profile).  This could affect monochrome images, as it includes the tone curve.  Is the monitor calibrated and profiled with a hardware tool (Spyder, Colormunki or similar)?  If so, try recalibrating.  If not, then see what default profile is set for the monitor.  Control Panel (don't know what that is in French) -> Color Management.  If nothing is set, you could try setting the default profile as sRGB (probably called "sRGB IEC61966-2.1").  If sRGB isn't shown, click Add...  Does that make the two modules the same?  It might make the picture worse, but if makes then the same, then you know it's a monitor profile problem.  Try using Windows calibration (Colour management, Advanced tab), but better is to use a hardware tool. 
    Another problem could be that the Lightrroom previews are corrupt.  Develop module renders each image as it's displayed, Library module renders the images to a jpeg preview, and stores the preview.  The preview is rebuilt only when the Library module thinks the image has changed.  So you could change the image in Develop, and see if the image then chagnes in Library module.  If it doesn't change, something serious is wrong (protection issue on previews folder?  Faulty Lightroom installation?).  If it changes, but it's still different between Library and Develop, I'd suspect a colour management (monitor profile) problem. 

  • WEB.SHOW_DOCUMENT sometimes doesn't display the generated PDF file

    Hi all,
    I'm using the following code to generated my report from Forms:<br><br>
    V_REPORT_ID := FIND_REPORT_OBJECT(V_REPORT_NAME);
    V_REPORT_SERVER_JOB:= RUN_REPORT_OBJECT(V_REPORT_ID,P_LIST);
        V_JOB_ID := substr(V_REPORT_SERVER_JOB,length(:GLOBAL.REPORTS_SERVER)+2,length(V_REPORT_SERVER_JOB));
        V_REPORT_STATUS := REPORT_OBJECT_STATUS(V_REPORT_SERVER_JOB);
    LOOP
       IF V_REPORT_STATUS = 'FINISHED' THEN          
          V_TMP_PDF := :GLOBAL.APACHE_HTML_FOLDER ||'rpt'|| V_JOB_ID  ||'.pdf' ;
         COPY_REPORT_OBJECT_OUTPUT(V_REPORT_SERVER_JOB, V_TMP_PDF );
        WEB.SHOW_DOCUMENT(:GLOBAL.AS_HOME_URL ||  'rpt'|| V_JOB_ID  ||'.pdf' ,'_BLANK');     
        END IF;
    END LOOP; <br><br>
    Everything works fine except the WEB.SHOW_DOCUMENT part. In some clients, this command does what it required from it and opens a new browser window with the PDF report displayed on it. In some other clients, this command does nothing: now window dispalyed. When I refer to the Application Server, I see the PDF report successfully generated there. When I put the URL of the generated report manually in the browser address, I can see the report.
    <br><br>
    <b>Why the WEB.SHOW_DOCUMENT doesn't display the generated PDF report in some clients?</b>

    I agree with the previous 2 posters.
    Also firefox and ie handle it differently. Make sure you test on what your clients use.
    Sometimes acrotray.exe is completely retarded and doesn't work.

  • Display the material details in alv grid based on material(in mara)

    hi,
    display the material details when get input of material from user in mara table using alv-grid display.
    give some examples.
    Thanks of advance.

    Hi
    For your help i am just giving you few hints.
    1. Create a selection screen.
    2. Select matnr from mara into an internal table.
    3. use fm Reuse_Alv_grid_display to display your entries from the internal table
    Please read about all of this step by step in the forum.

  • In the metadata repository, display the object detail links don't work

    We've upgraded to 7.3 and when we lick on display the object details links we get the following message.  I've looked in SICF and everything looks active and is set up
    Service cannot be reached
    What has happened?
    call was terminated because the corresponding service is not available.

    HI LMM
    I have also same Problem . I thing SICF  is working fine but SAP BW 7.3  Metadata Repository is not available (Not maintained) the corresponding service is not available that why  System shows An error.
    Regard's
    R.S.Reddy

  • Has Mozilla changed the way Firefox displays @font-face enbeded fonts? The site I'm codeing works in Safari, Chrome, and IE, but Firefox 8.0.1 doesn't display the embeded font.

    Has Mozilla changed the way Firefox displays @font-face enbeded fonts? The site I'm codeing works in Safari, Chrome, and IE, but Firefox 8.0.1 doesn't display the embeded font.

    No problems here with the H1 headers.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • My iphone 6 doesn't display the battery duration values

    My iphone 6 doesn't display the battery duration and standby in battery settings, and replaces the values with - even if I completely charged my battery last time. Can someone help me?

    Try these two:
    Restore from backup
    Restore as new
    http://support.apple.com/en-us/HT201252

  • After updating iPhoto to 9.2 Photoshop CS2 doesn't display the photo I have opened.  The photo shows in the Navigator on the side panel, but not on the screen.  MFF

    After updating iPhoto to 9.2, Photoshop CS2 doesn't display the photo on the desktop screen, even though the image is shown in the Navigator pallet well to the right.

    No, that is the problem.  I don't see how it should be, but that is what happened after I did the upgrade, which was for iPhoto 9.2.  The upgrade then required that the Library be upgraded.  Then CS2 stopped showing the photo when I opened CS2.  Maybe there was a system upgrade for the whole system, that went along with 9.2.  Before the upgrade CS2 worked.  I even tried photos that I had on backup disks, and they wouldn't show in CS2 even though I had draged them to the PS icon in the dock.  These photos were not on my computer when the Library was upgraded.  I even tried photos fresh from the camera. Elements 9 does work to open the photos.

  • Bank transfers: the file DME doesn't display the name of the company

    Hi all,
    In the DME file created by t.code F110, the record 20, doesn't display the name of the company which orders the bank transfer.
    Where should I put it?
    Thanks

    Neeraj,
    Its ECC6.0 and I upload the file by going into their website and putting userid and password and then upload the fiel over there and click send.Is there any possibility the file contains any hidden characters which we dont see? where should I send you dummy file whats your email id.
    Regards
    Shaun

  • Every time I try to access the ASPX pages, the browser doesn't display the pages. Instead, a popup box asks if I want to open or save

    every time I try to access the ASPX pages, the browser doesn't display the pages. Instead, a popup box asks if I want to open or save

    What site is doing this? 99% of the time it is a problem with the headers sent from the web server.

  • Some browser doesn't display the MW page correctly

    after installing Maintenance Wizard 2.17, some browser doesn't display the MW page correctly, some menu function is missing. The display problem is not for everyone, some user's browser have no problem. Some user's IE are displaying it correctly. i.e. one user has both IE and firefox working, however, after she clear her java cache, both browser refuses to display the MW page correctly.
    The resolution of PCs is set to the same value. however, the size of the text isn't. after changing the size of the text, some of our pc start to work. The display web page for MW doesn't show the right most menu item. After resize the screen, we find it is because of the blue frame for the MW page that stop to dynamical stretch up to 20 inches.
    The menu item is been streched out of the blue frame, they are no longer displayable
    any ideas?

    We have the same problem.
    And find it is caused by a combination of your screen resolution, font size and browser window size.
    The blue frame that displays the Oracle Mainentance Wizard banner doesnt dynamical strech to the full window size.
    After experiment with it, MW can display much better in our case.

  • Re: my notebook doesn't display the red color

    I think I have the same or a similar problem.  I have a AMD A4-6210APU with radeon r3 graphics 1.8 ghz running 64 bit windows 8.1.
    Since updating the graphics driver last week I have noticed the colour red seems more pink or purple.  This is particularly notable as a lot of my buttons and icons contain scartlet as the principle colour.  I only purchased the laptop in August so I doubt this is due to a deteriation of the hardware and therefore seems to be an issue with either the display driver or the display settings.
    I have attempted to rectify the problem by resetting the display settings to default.
    This partidular model does not appear to have any contrast settings built into the controls, therefore I have no way to adjust the colours manually.

    Hello @pittstop,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I have read your post on how your notebook doesn't display the red color on the screen, and I would be happy to assist you in this matter!
    To ensure that your system is installed with the correct graphics software, I recommend installing the original software and hardware drivers that first came with your computer. This can be done by following the steps in this document on Using Recovery Manager to Restore Software and Drivers (Windows 8). Once the software is installed, please update the chipset and graphics drivers Using HP Support Assistant (Windows 8).
    I would also encourage you to post your product number for your computer. Below is a is an HP Support document that will demonstrate how to find your computer's product number. In addition, it will also help if you indicate whether your operating system is 32 or 64 bit. The more information you can provide, the better!
    How Do I Find My Model Number or Product Number?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the results of your troubleshooting, as well as the requested information above. I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

Maybe you are looking for

  • Moving my applications to an external drive.

    Hi everyone! I want to free up disk space for a film to edit. So I am planning to move all (well, most) of my applications to my external hard-drive. After the edit is done, I will move all the applications back into my notebook. I am confident that

  • Turning On/Off Frame Decorations

    I have a problem - where I need to turn on/off the frame decorations on Internal frames (borderless frames) - using possibly a hot key ? Is there a way to do this ?

  • Windows 10 Update missing?

    Hello. I have an HP Elite 410f with Windows 7 Home Premium (Service Pack 1) pre-installed. I am not showing the usual Windows 10 update in the system tray, even as all Windows updates have been downloaded and installed. I have read that there are a n

  • Transportable tablespace becomes non-transportable

    Dear Guru's, For years we exported and imported our transportable tablespaces, but recently the export fails with the following error message: EXP-00008: ORACLE error 29341 encountered ORA-29341: The transportable set is not self-contained ORA-06512:

  • DOM or JDOM?

    Hi, I want to start developing some "applications" with JSP and XML. I've used MSXML before when I still worked with ASP. I found out that you can use DOM or JDOM. Which is the best of the two? Does anyone know where I can find some more examples / t