How will you find out no of standby databases configured for primary database from OS level

How can find the number of standby databases configured for primary database from os level

Check the alert log.
The Alert log will always have Data Guard messages in it.
Example
cd /u01/app/oracle/diag/rdbms/primary/PRIMARY/trace
tail -1700 alert_PRIMARY.log | more
Wed Nov 13 13:35:26 2013
ARC7: Standby redo logfile selected for thread 1 sequence 1164 for destination LOG_ARCHIVE_DEST_2
LNS: Standby redo logfile selected for thread 1 sequence 1165 for destination LOG_ARCHIVE_DEST_2
If you don't see messages like this it's probably not a Data Guard system.
Or search it for :
System parameters with non-default values:
Which on Data Guard system will show things like:
log_archive_dest_1 = "LOCATION=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=PRIMARY"
log_archive_dest_2 = "SERVICE=STANDBY LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=STANDBY"
log_archive_dest_state_1 = "ENABLE"
log_archive_dest_state_2 = "ENABLE"
fal_server = "STANDBY"
Best Regards
mseberg

Similar Messages

  • Why has the Reload button shrunk and shot to the end of the URL window? How will I find out when the Favloc plugin works in V4?

    I had installed Firefox 4, but rapidly had to backtrack to 3.6, then again to 3.5. Two reasons: 1. The three toolbar buttons I use most are Back, Forward and Reload. In 3.5 I can group these nicely at the left hand end; in 4 the Reload button has shrunk and shot across to the end of the URL bar. Why?
    2. Versions 3.6 and 4 are incompatible with the Favloc plugin. This is such a brilliant plugin you ought to buy the code and build it in. I am marooned in 3.5 until this plugin works in V4 - running 3.5, how will I find out when it does?

    As far as I know, [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ the Classic Theme Restorer add-on] is the only way move the Reload button outside the address bar.
    # Install [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ Classic Theme Restorer] and restart Firefox when prompted.
    # Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
    # Next to Classic Theme Restorer, click the Options button.
    # On the Main tab, make sure "Movable back-forward button" and "Hide urlbars stop & reload buttons" are checked. You might also want to check "Combine stop & reload buttons". Close the options window when done.
    # Right-click an empty area of the tab bar and choose Customize.
    # Drag the Back/Forward, Stop and Reload buttons onto the navigation toolbar.
    # Click the Exit Customize button in the lower right corner when done.
    That being said, I should point out that you can reload pages in other ways.
    * Right-click any tab and choose Reload.
    * Right-click an empty area of the page and choose Reload.
    * Press F5.
    * Press Ctrl+R (Mac: Command+R).

  • TS2753 Has your debit/credit card been charged for unauthorized APPLE Itunes purchased? How do you find out who used it?

    Has your debit/credit card been charged for unauthorized APPLE Itunes purchases?  How do you find out who used it?

    Max OSX 10.6.8, iTunes 11.1
    I had a similar problem: I wanted to synch my playlist to my iphone. I like to have my playlist sorted by genre. But under each genre, albums are not sorted by the track numbers. This is a problem, especially when I am listening to club mixes when the DJ smoothly transitions from 1 track sequentially to the next one. Under the properties of each audio file, the Track Numbers and Disc Numbers are already there.
    My perfect solution was to turn On Sorting - Sort Album under View>Show View Options. Then, select all the songs in that album (Shift click, Cmd click, etc) , and Edit multiple item information (Cmd I). You will see Info-Video-Sorting-Options buttons. Click on Sorting. Then, under Sort Album, Enter the name of the album. Then OK.
    You should now have the playlist sorted by Genre, then each album individually sorted by track numbers. On your playlist you should see, if you scroll right, the column added called "Sort Album".
    Hope this helps.

  • How do you find out when your gamer club expires?

    how do you find out when your gamer club expires??
    Solved!
    Go to Solution.

    Hey trixr4trey,
    Thanks for being a Gamers Club Unlocked member.  I'm happy to answer your question today.
    To find your Gamers Club Unlocked expiration date log into your account on BestBuy.com.  Then click on "Overview" under the Rewards tab.  Gamers Club Unlocked information will be on the right.
    I will also send you a private message with your current expiration date so that you have the information as quickly as possible.
    Best regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • HT4314 how do you decline an update, they do not show you the cost- how do you find out

    How do you refuse an update and how do you find out how much they are?

    Updates are free.
    There is no need to decline them, simply do not update.  Nothing will update unless you tell it to update.

  • HT201209 how will i find out my gift card id?

    how will i find out my gift card id?

    I'm not entirely sure what you are asking, but if you've bought an iTunes gift card then it will be on the card, or if somebody has emailed youa gift then it will be in the email - you can then redeem it as per the page that you posted from.

  • How do you find out who did not contribute to a particular fund raiser that we all just did?

    Using MYsql How do you find out who did not contribute to a particular fund raiser that we all just did. There are many titles to the different charities that is under the othpaytitle of the Otherpay table,  I however just want to extract the non-contributors for a particular charity title. Is there anyway to do this? When I do the the syntax below it comes up as an "empty set". The search is done by way of the table Id matching and left joins. Please see below.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, sum(otherpay.othpayamt) as NO_Contribution, quadlt.ltfname as quad 
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    GROUP BY brother
    ORDER BY name.quadlt, brother

    Just guessing based on your query,  and assuming the above query works, just insert a "where" condition. I also removed the SUM function. Also, "AND otherpay.othpaymoiid IS NULL"  may not be needed.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, otherpay.othpayamt, quadlt.ltfname as quad
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    AND othpayamt=0
    ORDER BY name.quadlt, brother

  • How do you find out if the transmitter and/or receiver leaves the session ?

    So , how do you find out if the transmitter and/or a receiver leaves the session , is there an event when this happens ?

    1. There is no list available from your end.
    2. You can't actually check. If you suspect a device has been, deauthorize it twice and then authorize it.
    (89509)

  • How do you find out what your Apple ID password is?

    A friend of mine forgot their Apple ID password and can't log in. They also don't have access to their email, but that's not the issue. He wants to know how you find out what your current Apple ID password is. He awnsered his security questions but all it would let him do is reset his password, without finding out what his current one is. How do you find out your Apple ID password?

    You can't recover a password, only change it. The reason for this is that Apple has changed their conditions for passwords. They now need to have one upper case letter, 1 number, and be at least 8 characters. Also you cannot use any password you have previously used in the last year.

  • How do you find out what information is in the 'other' section of itunes when iphone is connected

    How do you find out what information is in the 'other' section on the bottom of itunes

    You don't
    If it is much more than a gb or so, then it indicates corrupt files.  A restore should resolve.

  • How can you find out if your mac is infected with the flash back virus

    how can you find out if your mac is infected with the flash back virus?

    F-Secure's Flashback removal tool - http://www.f-secure.com/v-descs/trojan-downloader_osx_flashback_k.shtml - supposedly also works on OSX 10.5 and earlier.
    05 Apr 2012 How to Detect and Protect Against Updated Flashback Malware - http://tidbits.com/article/12918 - detection methods for multiple browsers and general information
    Leopard and earlier users see recommendations at: https://discussions.apple.com/thread/3872491

  • How can you find out what generation your iPod touch is?

    How can you find out what generation your iPod touch is?

    Hi,
    Here is help for the operating system:
    If you are locked to iOS 3 then you have an iPod Touch 1st Gen.
    If you are locked to iOS 4 then you have an iPod Touch 2nd Gen.
    If you are locked to iOS 5 then you have an iPod Touch 3rd Gen.
    If you are locked to iOS 6 then you have an iPod Touch 4th Gen.
    If you can get iOS 7 and have an iPhone 5 sized screen [bigger] you have the current iPod Touch 5th Gen.
    I assume since it says you have iOS 5.1.1 you have an iPod Touch 3rd Gen.
    Also, you may want to sync it so iTunes can tell you or you can look at the model number on the back.
    Hope this helped.

  • When your scratching your itunes gift card code and you scratch off the last two how do you find out what they were

    when your scratching your itunes gift card code and you scratch off the last two how do you find out what they were

    Invalid, inactive, or illegible codes
    http://support.apple.com/kb/TS1292

  • HT4211 how can you find out what kb are being used by what apps

    how can you find out what kb are being used by what apps there is always alot of kb being used even when I don't use my phone

    Go into settings , general, usage and it tells you what the apps use. If your refering to the memory storage of the apps.

  • How can you find out what time you were on a website on on your iPod?

    How can you find out what time and day you were on a certain website on your iPod?

    You can find the day in Safari's History, but not the time.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

Maybe you are looking for

  • Can you trade in your iPad 2 for a newer iPad?

    Can a person trade in their iPad 2 for a newer iPad?

  • CO-product configuration in REM scenario

    I am trying to configure co-product scenario with REM process. Is it possible? If any one worked on this scenario please let me know what are the special consideration we need to take or any SAP note available? Thanks in advaice. Rajesha Vittal

  • Forms 4.5 & Oracle 8i

    Hi, We are using Forms 4.5 & Oracle 7.3.3. Forms are in Character mode (MOTIF not GUI). Is it possible to use the forms as it is without any conversion?. We have seperate homes for FORMS & Database. Thanks & regards null

  • How can I give folders different colours in Mail?

    How can I give folders different colours in Mail? I can give emails different colours via the colour picker, but dont know how for folders.... Any help is welcome

  • Initial Xserve RAID configuration

    Can someone clarify the statement "If no DHCP server is available, the system will automatically use a link local address of 169.254.x.x.". What exactly determines the value of "x"?