Does the controlfile need to be multiplexed in ASM?

OS=Linux 5
Oracle=11gR2 RAC with ASM
We have two diskgroup (DATA, FRA), each with 6 disks. The controlfile currently resides on the DATA diskgroup. My question is, does the controlfile need to be multiplex to FRA diskgroup in case of a diskgroup failer? Typically if the database is using filesystem for storage, i would multiplex the controlfiles to 3 different filesystems.

Hi,
This thread already been answered but I'll leave a little touch.
Some time ago we used OS filesystem to store database and we placed a part of the database at each mount point (like /u01, /u02, /u03 and so on).So, we also multiplexed control file to due flexibility of recover a controlfile if any error occurs on one theses mount points.
But with ASM generally the whole database is placed on Diskgroup DATA  and controlfile on DATA and FRA  and if you lose your diskgroup DATA and this will not change anything in relation to high availability, because you will need to restore database to bring database up. So, If you have backup of database of course you also have backup of controlfile.
About multiplexing de REDO in other Diskgroup can make all difference. If you lose diskgroup +DATA and you have your archivelog and redo online avaliable on other diskgroup you will have a minimun or none lost of data.
I don't like multiplex controlfile on FRA, because any maintenance that involves diskgroup that have controlfile stored will cause downtime of database. So, when I multiplex controlfile I choose diskgroup that have datafiles only of that database.
Redo and Archivelog we can change they of diskgroup without downtime of database.
As FRA is a Diskgroup used to store backup and Archivelog can be exausted and it can cause downtime on database. (We must not forget we can control it)
Other point:
In some env I have seen DBAs configuring Normal Redundancy to Diskgroup (e.g DATA) that store database and External Redundancy to Diskgroup FRA (e.g FRA) due purpose of that Diskgroup. By Default DBCA place controlfile on FRA, so If by any reason asmdisk from FRA fail, the whole database will down due controlfile on that diskgroup. This is a big mistake.
*Unable To Open Database Due To Diskgroup Used To Multiplex The RedoLogs & Controlfiles & Archivelogs Got Corrupted. [ID 1382372.1]*
Regards,
Levi Pereira

Similar Messages

  • Is it possible to hook a USB external hard drive to an iPad?.....the HD has video on it that I wanna watch on my iPad but don't wanna store it on iPad or iTunes....and way format does the video need to be in to watch on iPad?

    Is it possible to hook a USB external hard drive to an iPad?.....the HD has video on it that I wanna watch on my iPad but don't wanna store it on iPad or iTunes....and way format does the video need to be in to watch on iPad?

    There are some wireless external hard drives that can be used with the iPad.
    The Kingston Wi-Drive, which costs $50 for the 16 Gigabyte, and then $30 more for every 16 gigs more. It works by you turning it on and then accessing the files on it from an app that you download on your iDevice. You can access music, movies, and other stuff. No connections or anything, it works like a WiFi connection, you connect to it from the setting on the iPad under wireless networks.
    Then there is the Seagate GoFlex, which some would recommend over the Wi-Drive. But this one costs $199 and had 500 Gigabytes of storage. It works the sameway as the Kingston: no wires, runs over its wireless connection. You can actually fit up to 300 HD movies on it.
    Another option:
    Expand your iPad's storage capacity with HyperDrive
    http://www.macworld.com/article/1153935/hyperdrive.html
    On the road with a camera, an iPad, and a Hyperdrive
    http://www.macworld.com/article/1160231/ipadhyperdrive.html
    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
     Cheers, Tom

  • Does anyone know if my G3S Iphone will sync Itunes on my MAC Power PC G4, OSI0.4.11?  If it will, what operting system does the Iphone need?

    Does anyone know if my G3S Iphone will sync Itunes on my MAC Power PC G4, OSI0.4.11?  If it will, what operting system does the Iphone need?

    My apologies, I read your post the wrong way. I see now that the original poster was confused about the specs and you were simply responding with the appropriate info.
    I've gotten defensive after reading the forums. The forums are full of posters just looking to prove someone wrong or stupid, rather than being helpful. I shouldn't have assumed you were one of those people. Sorry.
    I did my homework and discovered that my PowerPC will run Leopard. It can be purchased for $129 by calling 1-800-MY-APPLE. This is much cheaper than replacing my laptop.
    I hope to upgrade my Mac soon, though! Can't believe this thing is still ticking. I love Apple.

  • I've installed Visual Studio Enterprise 6.0, Which edition of Visual Studio 2013 does the i need to purchase as the legalization for Visual Studio Enterprise 6.0?

    I've installed Visual Studio Enterprise 6.0, Which
    edition of Visual Studio 2013 does the i need to purchase as the legalization for Visual Studio Enterprise 6.0? 

    Hi,
    Here is a topic for MS Visio forum, you'd better post your question to Visual Studio forum.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=visualstudiogeneral&filter=alltypes&sort=lastpostdesc
    Thanks for your understanding.
    Regards,
    George Zhao
    TechNet Community Support

  • What does the DBA need to do to grant privileges so I can CREATE DIRECTORY

    Hello,
    What does the DBA need to do in order to grant privileges to:
    CREATE OR REPLACE DIRECTORY douglas_my_files as 'C:\Documents and Settings';
    This is what SQL Navigator says:
    [1]: (Error): ORA-01031: insufficient privileges
    Thanks
    Doug

    Also, note that a directory object can only point to a directory on the database server, not on your client machine... Unless you have your own My Documents folder on the database, which would be a tad unusual, this probably won't work regardless of the permissions your DBA gives you.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Does the DOA need to be an session bean as well?

    Hi there,
    I been working in this problem for days, I am a bit confuse, I have created a session bean which contains biz logic and EAO layer,
    I understand that we can get the persistence in EJB with @PersistenceContext private EntityManager em;
    Correct me if I am wrong I am a bit sceptical to use the em in the session bean. (there been lot of arguments stated that we need to ditch the DAO)
    BUT, still I would want use EntityManager in the EAO layer because of the mobility of the DAO layer in the future.
    So I have implemented DAO design pattern at below but is not working, is giving me:
    Unable to get an Entity Manager Instance
    javax.naming.NameNotFoundException: No object bound to name java:comp/env/persistence/em
    I am so confuse, does the DAO need to be a session bean as well?
    Edited by: lizaliz on Aug 13, 2009 8:15 AM

    Using the EM in a session bean is one of the preferred ways of manageing persistence. Take a look at *'Pro EJB 3'* by Mike Keith and Merrick Schincariol. Extracts are avialable on google books - they give a good overview of using this approach.
    It is a bit weird initially as with EJB 2 you had your session beans (business tier) and your entity beans for the data tier so using a session bean seemed to conflict with what was recognised. And besides if you want to inject a Persistence Context or Factory you need to do it in a managed class - like an EJB!
    m

  • Does the imac need airport to connect to the internet??? Or can it just connect via any router?? thanks

    Does the imac need airport to connect to the interent of can I just connect it via any router?????

    you should be able to use any router.

  • For h.264 encoding, what size does the project need to be to avoid black bars on the top and bottom.

    For h.264 encoding, what size does the project need to be to avoid black bars on the top and bottom. I am exporting the mp4 to Brightcove.

    Hi there,
    Which version of Adobe Captivate (If it is Adobe Captivate) is it and which Operating System is it?
    Thanks.

  • Does the battery need to be calibtated on the MBP it is used in?

    Does the battery need to be calibtated on the MBP it is used in?
    My daughter has the same MBP I have.
    If I calibrate the battery on my MBP can I swap it with hers? Will it still be calibrated?
    Thanks ... Ken

    It can be calibrated in either machine. The calibration circuitry is in the battery, not the computer.

  • Help !!! why does the client need to specify codebase

    Anyone,
    I'm trying out a dynamic class loading tutorial.
    my question is why does the client need to define
    java.rmi.server.codebase.
    I can understand why the server needs it, as it is downloading classes
    it does not have information about. But why does the client need to specify the codebase

    Lets say you have a Remote interface with a method:
    void compute(Task task);
    Now, the clients of this remote interface want supply
    a zillion of custom tasks to be executed on the
    server, but how the hell the server knows where to get
    the actual classes for those tasks?You fool. its for the server to hand the client the reference to a stub, or to specify FOR the client where the stubs are, so that the CLIENT can get a reference to them, to make the call.
    This is where the
    client codebase comes to the scene. Client codebase......you mean codebase info that is sent TO the client, so it can find the classes.
    A client annotates
    it and it gets written to the manifest part of any
    serializable object (Task implentation) being passed
    over then net so the server could find and download
    the actual class of the object.
    Rubbish.
    I hope I made myself clear. as mud.
    You might want to check
    out this link also:
    http://java.sun.com/products/jdk/1.2/docs/guide/rmi/cod
    base.htmlI read this and i still dont see anything about CLIENT codebase. I see stuff about codebase, and the server trying to make the client aware of where it can get the relevant classes.
    What a fool you are. Dont bother replying. I have had enough of your autocratic rubbish.
    >

  • Why does the system need two average costs - 'Average' and 'Average Rates'?

    Hello Gurus!
    The documentation does give definitions for 'Average' and 'Average Rates' cost types, but at a very basic level.
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/cst/settask.htm
    I would like to know why the system needs two costs? How are they calculated and how are they used?
    Thanks!

    Hello,
    I can suggest you a workaround that will help you keep only the 64-bit version of Photoshop.
    Visit "Uninstall a Program" in Windows 7 Control Panel and uninstall Photoshop completely.
    Visit this page and download trial version of Photoshop.
    Run the installer manually and choose the 64-bit version only (uncheck 32-bit version).
    Launch the product and specify your Adobe ID credentials.
    The product will switch to non-trial (i.e. full) mode when it recognizes your Adobe ID.
    Regards,
    Amit Batra
    Engineering Manager,
    Amit Batra

  • Why does the battery need to be recharged so often?

    My iPod is brand new and need recharging every other day.
    Why and how does this happen?

    bill248 wrote:
    Thanks for the answer.
    I have been using it every day. Would the battery need to be replaced?
    No.

  • Using the Alarm clock -- does the ipod need to be on the charger?

    Does the ipod (touch 4g) have to be on the charger in order for the alarm clock to work?
    Or does the ipod "awake" from the off position and sound the alarm?

    The alarm will work if the iPod is asleep (screen goes black automatically after set period of inactivity or you momentarily press the power button and you have to slide to unlock). However, if you power it off (hold power until power off slider appears and you slide it) it will not alarm.

  • Does the client need to install Contribute to edit their website?

    I have recently started out in the website design world (feeling VERY much like Alice!), and am trying to get my head around CMS.
    Starting to explore Contribute/Joomla/Wordpress and although I  understand the manipulating templates/coding part of things, how does  the CMS process work?
    As in, at which point do you, the developer/designer, put into use Contribute, or Joomla etc for the client, and then how does the customer use it? Do they have to install Contribute at their end?
    I am about to start a website for a client with a face-painting business who wants a simple 3-page  site (home, gallery, contact), and wants to be able to update the gallery page. How do I start  with Contribute or Joomla? I have tried to wade  through the mountains of info I found online, but can't seem to find the BEGINNING!
    Thanks in anticipation!
    Magda

    Hey Magda,
    I use Joomla myself, and about 2 years ago I felt the same way you do. I didn't understand how the CMS part of web design works. I do not know how Contributor works, but I know that in Joomla anyone can sign into an administrative "backend" where you can log in right in the web browser and edit articles and information.
    So basically (in Joomla) if your website is www.genericexample.com, you would go to your web browser and type in www.genericexample.com/administrator. This will bring you to a login form, and after you log in you will be at an interface where you can edit your website content without even touching HTML or CSS. It's all WYSIWYG (but it does let you directly edit the HTML and CSS if that is what you want to do).
    In Joomla you can add users and give them passwords so that your clients can update their website after you have completed it and moved on.
    The interface is very simple to use.
    Kind regards,
    Tim

  • HT4557 question! do you have to actually be at home, like using the same wi-fi network as the computer? or can you stream this music from somewhere else? and does the computer need to be one?

    for example, can you be using another wi-fi network, for example in another country? and still stream music from my mac to ipad for free? and does the mac have to be on?

    You could use something like Splashtop Remote Desktop on your Mac and iPad. This streams your Mac's desktop to your iPad so you can have full access to everything on your Mac anywhere in the world, as long as your Mac is turned on and connected to a network and your iPad has a data connection. It can stream full audio and video from your Mac. It is not exactly home sharing but it does what you want fairly well, with the added bonus of being able to use your Mac from anywhere. Search for Splashtop on the App store for more information. It normally sells for around $10 but is frequently on sale for as low as 99c, so have a look and see if it's for you while you wait for it to go on sale. I can confirm this works as I use it daily to work on my Mac from my iPad while at work.

Maybe you are looking for

  • Flex without anti-aliased font in IDE

    Hi In Flex 3 running on Mac OSX 10.5.4 is it possible to make the font in the IDE more bitmap looking (ie without text smoothing/anti-aliasing)? Staring at small anti-aliased fonts all day seems to be harder on my eyes! Thanks in advance H

  • Connecting I Pad2 direct to TV to view movies

    I have an Apple composite video cable that connects to my TV, and it works great with Netflix to view movies on my TV screen. However I cannot get it to work on any other movie source such as Xfinity on line content. How can I get content other than

  • One BOM

    Dear All, Can we create single alternate multi level BOM for Production & subcontracting vendor(i.e.common BOM) in REM??? We want to maintain single alternate multi level BOM for both prodn & subcontractor. Scenario is that we have subcontracting ven

  • Itunes wont detect iphone 4s

    just bought iphone 4s, itunes wont detect it preventing sync

  • Union All Command 2: filtering data

    I have my Union All command working, and it pulls the 4+ million records quickly. But as soon as I add a link to the table that has the fields I need to filter by, well, mud flows uphill faster. So how do I filter the data when the filter information