Is this save running RAC without Multipath ??

Dear All,
I have been develop RAC 10g for Itanium
Proc : Itanium
OS : RHEL 5
Oracle : 10.2.0.5
Storage : HP eva 4000
for ocr and voting disk, i'm using OCFS2
for data, i'm using ASM with ASMLib
but, i don't use Multipath for the storage
when use fdisk -l, the disk is appear 4 times
here the example :
     sda     = sdh = sdo = sdv
My Question :
is this save running RAC without Multipath ??
( i'm sorry for bad english )
regards

The short answer is this: If you have multipath devices available to you, you should configure them properly to reduce points of failure.
The purpose of multipathing is to eliminate a single point of failure in the Disk/SAN connectivity. For example, if you have 2 host bus adapters (HBAs) in the server and 2 SAN processors (heads), you may have the SAN fabric cross-connected via one or more fiber switches so that if there is one physical connect lost, there is another physical connection that can route IO requests to the same LUN on the SAN. However, those multiple paths may look like different devices to the Operating system, which is where multipath comes in. If the OS or applications are unaware that the 4 mounted devices are actually one single LUN, there will not be an automated failover available, and manual reconfiguration to use a different device would be terribly time-consuming, and require downtime. For example:
Let's assume you have 4 LUNs mounted in a 4-path configuration, for a total of 16 devices
path1:
sd1, sd2, sd3, sd4
path2:
sd5, sd6, sd7, sd8
path3:
sd9, sd10, sd11, sd12
path 4:
sd13, sd14, sd15, sd16
Think about when you add these devices to an ASM diskgroup - what happens? You cannot select both sd1 and sd5, since they are the same LUN, and once ONE of the devices is added, the ASM header will be written to the device and it will not be flagged as a candidate any longer. So your ASM diskgroup would consist of 4 devices.
Now, what if sd1 fails? The OS and ASM are unaware that sd5 is the same LUN accessible via a different path, so if the path with sd1 failed, you would experience an extended downtime. Or, as another example, what if your storage administrator needs to do maintenance that affects one of the paths (i.e., firmware upgrade on a SAN head)? You would need to shutdown your database instead of working with the SAN administrator to do the upgrades in a rolling manner.
That's where multipathing's benefit is - if you aggregate sd1, sd5, sd9, sd13 with multipathing and create a device named (for example) "mp1" and repeat for each of the other multipath LUNs, then you would create your ASM diskgroup as "mp1, mp2, mp3, mp4". A failure on sd1 (in mp1) would simply be re-routed to sd5 or sd9 or sd13, with no impact to your diskgroup or ASM availability.
K

Similar Messages

  • Running Distributed Transactions in RAC without DTP service.

    We just switched over to our standby database this morning which we had setup to facilitate our ASM migration. The switchover went smooth and the standby is up and running now as my primary.
    This is a 2 node rac on linux itanium 10.2.0.3.
    I got the following message in the alert log on both instances and I have never seen this message before in my original clustrer?
    Running Distributed Transactions in RAC without DTP service.
    Is this a reason ofr concern?
    Thanks, any feedback is very much appreciated.

    Duplicate thread..
    Re: Running Distributed Transactions in RAC without DTP service

  • IF I RUN A EDITING WITH PREMIERE ELEMENTS TEST VERSION, WILL BE POSSIBLE TO SAVE THE WORK WITHOUT THE MARK  AFTER THAT I BUY THE LICENCE? THANKS

    IF I RUN A EDITING WITH PREMIERE ELEMENTS TEST VERSION, WILL BE POSSIBLE TO SAVE THE WORK WITHOUT THE MARK  AFTER THAT I BUY THE LICENCE? THANKS

    NUNU
    Media cache files are not involved in the removal of the Adobe watermark from the project.prel file from a tryout.
    Just a re-enforcement mention...you cannot remove the Adobe watermark from a tryout "saved" exported product; whereas, you can from a saved/closed project file (project.prel).
    By exported product, I mean a burn to disc in the tryout or the Timeline of the tryout exported to a file saved to the computer hard drive.
    In the case of removing the Adobe watermark from the tryout project.prel, classically you delete the rendered files (Timeline Menu/Delete Rendered Files) in the purchased program. In no way is media cache involved in this. Some of us have found that there was an automatic removal of the Adobe watermark resulting from just opening the tryout project.prel file in the purchased program.
    Please review and consider.
    Thank you.
    ATR

  • I cannot save any changes without renaming

    Acrobat X Pro - Windows 7 - no matter how slight as change (e.g., rotate a page, insert or delete a page) I cannot save the document without being forced to rename it thereby necessitating deleting the old one and always having to creat new names - terribly irritating and this did not used to happen.

    From what I have seen it may be necessary to re-install Adobe to see if that fixes the problem. However, I would first check the processes in "msconfig" in Windows to ensure you do not have an issue with multiple instances of Adobe running at the same time. There may also be another Adobe program running in the background that could be causing this issue. I have researched online and could not find a specific fix to this issue except from what I found about re-installing Adobe and seeing if that fixes the problem. I would also first try to close all programs and processes that are not needed and see if that works, if it does then one of the programs is interfering with Adobe to handle the processes you are trying to complete. As everything else seems to be working OK I tend to lean towards an update or another program that has been installed conflicting with Adobe. I will continue to look into this issue as I have not seen it before or maybe someone else will also have some insight on how this can be corrected.

  • With recent calls , is it possible to save certain calls without saving them to contacts and delete the ones i dont want?

    My question is ,
    with the recent calls is the a way to save certain calls without saving them as contacts, and delete the others that i dont need?    I am a truck driver and i  need only certain calls during the day and if i could delete only the ones that arent needed for the day and keep the others that would make the day run smoother.  Each is different and when the day is finished then i would delete the ones i needed for the day and start all over again.   Is this possible?

    I think you would have to reinstall the keys seeing that if you format the computer all the data is gone. Even though you backed up that data you never know what can happen when you try to reinstall certain apps. Not sure what method you can go by, you should run a diagnostics test to see how you computer is doing internally.
    Goodluck

  • How to save the item without displaying into the Page

    hi
    I have the reqt to save the item without displaying into the Page.
    thanx

    In your yyy Table View Object create one attribute for BusinessGroupId as you want to save it in your yyy table VO.
    Now on click of save button capture this ViewObject and set this VO Attribute at run time. I am assuming that yyytableVO is EO based.
    Snippet
    Controller PFR Code
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    pageContext.getParameter("Save") != null)
      OAViewObject vo = (OAViewObject)am.findViewObject("yyyTableVO");
      if (vo != null)
         vo.getCurrentRow.setAttribute("BusinessGroupId", value);//value is what you have capture from pageContext.getparameter
    }Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can I open a tdms file and replace a subset of data then save that change without re-writing the entire file again?

    Hi all,
    Is it possible to open a tdms file and make a small change an an array subset then save the file without having to save the whole dataset as a different file with a new name? That is to say, is there something similar to "Save" in MS Word rather than "Save As"... I only want to change a 1D array of four data points in a file of 7M data points.
    I am not sure if this make sense? Any help is apreciated.
    Thanks,
    Jack

    You can use either one, but for your application, I would use the synchronous.  It requires far less setup.  When you open the file, set both enable asynchronous and disable buffering to FALSE to enable you to use synchronous with arbitrary data sizes.
    Attached code is LabVIEW 2011.
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    UpdateTDMS.zip ‏20 KB

  • How do I set up a .pdf form to save filled data without having to print the form?

    How do I set up a .pdf form to save filled data without having to print the form?  I have provided my clients a lifecycle .pdf form they can use to record data for unique client meetings.  They want the ability to save their completed data whenever they use the form under a unique file name.  I've told them the only way I know how to do this is to print the completed form as a .pdf document and then save it. 
    Is their a way to save the data to a unique file name without printing the filled form?
    Is there a way to reset the form with blank fields after saving? or to add a clear fields button?
    Thanks.

    If you reader extend  a pdf using livecycle reader extensions then you can save the filled in data - this is true if you are using Adobe reader to view the PDF's. If you open it in Acrobat then the functionality is already there.

  • Is it possible to create and save a .PDF without any compression to the resulting .PDF?

    I need an uncompressed file so I can use the resulting PDF to do a find/replace. Can't do it with compression.
    Thanks
    JDRHC1115

    Dave,
    Thanks for the reply. Of all the suggestions I've received this seemed to
    be most promising. I gave it a try and the problem is that when I attempt
    to save as optimized a message box pops up and says I have to save my
    document first. Low and behold when I save it, compression occurs. Even
    when I select the options you suggest I'm left with a compressed document.
    I'm using Acrobat Pro X
    Jeff
    From:   Dave Merchant <[email protected]>
    To:     Jeff Ross <[email protected]>
    Date:   01/06/2011 09:35 AM
    Subject:        Is it possible to create and save a .PDF
    without any compression to the resulting .PDF?
    You don't want the UncompressPDF plugin - that's designed to split out the
    COS objects but doesn't remove the Flate encoding (plus if you've never
    compiled a plugin before, it's not really the time to learn).
    Instead, simply save your PDF file using the PDF (Optimized) file type,
    click the Settings button and under "Clean Up" - "Object compression
    options", choose "Remove compression". Turn everything else off if you
    want to retain the PDF content exactly as it was before.
    Your document-level scripts will then be in the file as plain text.

  • How does this SAVE View works in WAD ?

    Experts,  Before putting this question, i did search for this isssue but couldnt find the correct answer.
    when i run the query in portal i get the correct report. but when i right click on any of the charastractis, i could see the drop down list with some options. in this list of options, there is one entry "Save View"
    I tried saving it, with technical name and desc. but i couldnt find it anywhere.
    does anyone has idea ? how this save view works in Portal ?
    thanx

    Hi, plz. find my answers inline.
    My question is how can we make use of this View. So, what is the importance of VIEW ? How users get benefited ?
    >> If you have scenarios wherein users would want to carry out their own analysis & save for future reference/records, then query views prove to be beneficial. Else creating individual queries to suit user preferences is cumbersome & time consuming.
    I was researching on SDN, and found that if i save it As a VIEW. then if we change the query. the saved view remains unchanged. is that right ? But, what if i remove some characteristics from the query ? Does it remove from the VIEW too ?? Or, Its just, if we make some changes to Key figure structure. It wont make any impact on view.
    >>  You execute a query with its initial view, change the initial view by navigating in the data, and save this new navigational state as a query view. If you later change the initial view of the query in the BEx Query Designer, this change has no effect on the query view previously saved. The query view already exists as an independent object.
    Please let me know. if you find some documentation please post a link, i am happy to read that.
    >> http://help.sap.com/saphelp_nw70/helpdata/en/46/0294bc82f37041e10000000a155369/content.htm
    That if you are using WAD and save as view, you can open using BEx analyzer or the other way around ?
    >> You can create and open a query view from BEx Analyzer or Web / WAD, as long as you have the option to.
    --Priya

  • HT6601 Why has this update been installed without my knowledge?

    Why has this update been installed without my knowledge?  Why wasn't I given the opportunity to refuse the update?  Isn't this update meant to stop this unauthorised access to my computer?  Has this given back door access for ASIO, NSC, MI6 to my computer?

    So what  are your preferences set as regarding updates?
    And, are you running ML as shown in your profile?
    And, I downloaded and installed this update because there was a possible security issue; however, I have all automatic software update checks and downloads turned off, so i downloaded it manually as it was critical to install it as long as you are using the internet.
    Has this given back door access for ASIO, NSC, MI6 to my computer?
    Why would you suspect that?

  • How to run report without report server

    hi
    my question : how i can run report without using the report server; by simple URL to the report stored in directory and accessing by HTTPserver; and the report is running by the local client runtime.
    thinks for replay

    hello,
    what you could try, is to associate the RDF/REP extension with a mimetype (e.g. application/oracle.reports) on the server and then add this mimetype to the browser applications associated with the reports runtime executable.
    regards,
    the oracle reports team

  • How to run VI without the DAQ card connected to the labtop

    This may be a silly question but I want to have the answer and couldn't find the answer for spending time in searching in the web.
    I want to run the VI that controls the intruments in my labtop. The VI was run in a destop that has a DAQ card in the PC (a PCI card).  I know it is possible to run it without errors (without a DAQ card) in my labtop . Anyone knows how to do it? I used labview 7.1. Thanks,
    Jun

    If you are using DAQmx and if the DAQ card is supported, you can add a simulated device in MAX.

  • To run MRP without considering unrestricted stock

    Hi,
    Is it possible to run MRP without considering unrestricted stock of the material?
    Best Regards,
    Sitaraman

    Dear All,
    Thanks a lot for your response to this thread.
    In fact i tried the option of providing value 1 to exclude the storage location stock from the MRP. But it did not fulfil my requirement.
    My requirement is as below:
    The business wants to create the material requirement by manual reservations.
    Also for this MRP run except this manual reservations all other issue elements, receipt elements and stocks should not get considered.
    With checking group configuration i am able to exclude all other issue, receipt and stock elements. But in this settings there is no option to exclude the unrestricted stock.
    What happened when i tried giving 1 in MRP 4 view to exclude the storage location stock, the system not only excludes the stock but also it excludes the storage location from MRP run. Meaning...
    Plant   XXXX
    SLOC YYYY
    SLOC - YYYY current stock: 100
    Manual reservation created (requirement) for SLOC -YYYY : 50
    The expectation out of MRP run is, to create procurement proposals for 50 numbers with out considering SLOC - YYYY stock of 100 and not to exclude the SLOC YYYY itself.
    Best Regards,
    Sitaraman

  • How to save PDF form without empty fields ?

    Hello,
    I try to find how to save PDF forms after a school registration but without empty fields because i have lots of relation in my Form but i haven't.
    Is it possible and how ?
    Thanks

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

Maybe you are looking for

  • Oracle query help

    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production With the Partitioning, OLAP and Oracle Data Mining options JServer Release 9.2.0.8.0 - Production Report Builder 10.1.2.0.2 ORACLE Server Release 10.1.0.4.2 Oracle Procedure Builder 10.

  • How do I fix this error: The iPad cannot be synced. The device has timed out?

    Hello out there! Would someone be so kind as to point me in the right direction in fixing my little promblem? I can't seem to figure out how to get my syncing process to work properly. I've updated all my apps and I have even done the steps to config

  • My iMac running 10.7.5 crashes when copy and paste large amounts of information like a picture.

    My iMac running 10.7.5 crashes when I store a large amount of data like copy and paste a picture. It also has started being painfully slow to open the first page in Safari.  Here's is some information a program gathered on my computer.   -Thanks! Pro

  • How to reset an failed asynchron abap-process in a process-chain?

    Hi specialists, I've got a process-chain which triggers (as one of its steps) an abap-program. The program should run asychroniously, so the process-chain waits until the programm reports its ending. When the abap-program fails/crashes/dumps, then th

  • Can't launch Script Editor 2.2.1. It silently quits.

    Script Editor 2.2.1, which comes along with the latest Security Update, will not launch. It's icon is generic too. I have re-downloaded and re-run the Security Update with no improvement. Console reports this much: Tuesday, October 21, 2008 7:37:56 P