DB_UNIQUE_NAME and new directories

Hi, I'm attempting to setup a physical standby database, separate hosts, using flash recovery, and RMAN.
After I set DB_UNIQUE_NAME I notice that that new directories with the same db_unique_name get created in oracle_base/admin, and in the flash_recovery_area. So, I end up having entries for both DB_NAME and DB_UNIQUE_NAME.
Can anybody explain this? Is this a problem?
I haven't actually got this all going yet. Been comparing tons of tuts which don't all agree and the Oracle docs have had me chasing all over the place for details that are left out of the chapter 3 "Creating a Physical Standby Database" in the "Dataguard Concepts and Admin Guide" for 10g.
Can anybody link me to a GOOD and more importantly COMPLETE tutorial of creating a simple physical standby with RMAN, flash recovery, etc?
thanks!
Edited by: user1170570 on Dec 6, 2010 9:08 PM

Dear user1170570,
That directories have been created when you set the FRA by the Oracle itself. It is absolutely normal because it is the "Oracle way" to control the files underneath those directories. So when you define the FRA directory, you say Oracle that the responsible will be the Oracle to manage those directories and files under it.
Regards.
Ogan

Similar Messages

  • Process for setting up new directories and files on Unix

    I am trying to document a process �Process for setting up new directories and files on Unix batch servers�.
    Developer will be developing project on Windows and I need tell them as well as QA team how the Unix directory and file structure.
    Please let me know how is the process in Unix on AIX.
    If I get some documentation regarding this it will be useful.
    Thanks in advance
    Regards
    San

    well on unix/Linux/solaris there are no drives but storage heirarchy starts with a root directory represented with ' / '. and all files and directories are created in root directoy like
    /usr/local/bin
    /export/home/san
    etc
    also filesystem of unix consists iNodes rathar than FAT entries as in case of Windows.
    some basic information is available at
    http://www.techonthenet.com/unix/index.php
    Regards

  • New Director and GM in Hong Kong

    I do notice that there is a new Director and GM to be chaired the office in Hong Kong, I hope she will look into the problems which HP operate in Hong Kong.
    As a customer, being a small business operator, I bought one new printer model HP Officejet Pro 8500 Wireless last year, it claimed it is of the best for small business, however, this is a nuisance to me for buying this model, the printer, after I have used it for 2 months, the paper always jamed , HP end up replaced me with another printer for an identical model. the replacement model got a small defect, from time to time, my documents always has some problem for the print out quality.
    anyhow, I kept call up the technical backup office, nicely, they all talk to me over the phone and instruct me step by step as to find out the problem. it happened to be a rountine defect check up practice from time to time, anyway,  it is one year now, my problem is still not solve, I have wasted lotsof time for calling the technical office for my printer's defect.
    I call the Hong Kong office and wanted to lodge in an complaint (35593111), the girl say if my case is urgent, HP will answer my complaint within 2 days, I do not expect I got an immediate answer, but I don't think it is acceptable for waiting to days 2 lodge in an complaint, how come it need to wait for 2 days until there is someone could listen my problem, and I am not abuse the complaining system, the defect has bother me for nearly one full year and I still have to wait for 2 days until someone is free to attend my problem.
    besides, I remember last year I did told the HP office about their hotline voice message , the tone is too low, it is quite difficult to hear what number to press, Customerlization : press 1 press 2 press 1 ....... this is terrible, I don't mind to listen to the tape what to press and get the right man to answer my problem, the voice is just too low, well, 1 year on, the same tape is still running,
    I think the management, there is some problem, firstly, the backup service, it is train to answer problem, they are polite, however, it matter not whether the problem is slove or not,  they just answer with you very polite,
    each time, I have to tell them what model I bought, what is the problem,..... they will instruct me to perform a cleansing up procee, ........................ I have called the technical support for over the year with the same problem, they hardly bother solve it, nor they followed my record and see what they could do to solve my problem.
    I do believe that my printer is a defect one, there is no point to keep calling up the office and waste my time and repeat and repeat telling the office what is the problem with the machine,
    the worse thing is the office girl who answer the phone, she told me that HP will call me within 48 Hours (Urgent case), I just wonder what if HP office consider my case is not urgent, will they call me after one month later??????
    from the website, I do know that there is a new Director, Ms Cally Chan will head the Hong Kong Office, I hope she will look into their backup service, pollite could not slove the problem, it is only a conversation skill really, and lastly, the girl say if my case is urgent, HP will answer my call within 2 days, I think this is terrible, as a small business in operation, 2 days is not acceptable, what I did, I only kept printed out my documents, hopefully, I got a perfect one, instead of waiting and waiting your man in the office to call me, this is an insult to your own company product.

    Yes you can. It will be very expensive since any phone purchased in the US is locked to AT&T and will NOT work with any other company's SIM card.

  • How do I get a list of directories and sub-directories?

    Hi All,
    I'm new to Java and have a couple of questions that are really stumping me and I sure could use some help.
    Question 1:
    I have this class file that I want to return back me a list of directories and only directories, not files. I can't figure out how to do this. I know I need to use the isDirectory() function but I can't figure out how to use it. The class file currently is returning back both directories and files. Please help!
    Question 2:
    Once I get the list of directories, I need to also get a listing of all subdirectories to form a directory tree starting at my File dir value (example: C:\Windows) in the constructor. Any ideas?
    Thanks
    import java.io.*;
    public class DirList {
         private String list = "";
         public DirList(File dir){
              File f = new File(dir.toString());
              String[] files = f.list();
              for ( int i=0;i<files.length; i++ ){
                   list += files[i] + "\n";
              }  // end for
         }  // end constructor
         public String getList(){
              return list;     
         }  // end method getList
    }  // end class DirList

    I'm not familiar of the recursion technique that you speek of. If
    this would work, please share it with me.Okay, i'll try, I assume that you don't care what level a subfolder is right! With a selected folder (from fileChooser), you want to obtain a list of all subfolders.
    After you have select a folder from the filechooser
    import java.io.File;
    import java.util.ArrayList;
    public class AllSubFolders
      private static ArrayList allSubFolders = new ArrayList();
      public static void main(String [] args) {
        File selectedFolder = ....; //a folder seleted from the filechooser
        getSubFolder(selectedFolder );
      public static void getSubFolder(File aFolder) {
        File[] file = aFolder.listFiles();
        for (int n = 0; n < file.length; n++) {
          if (file[n].isDirectory()){
         allSubFolders.add(file[n]);
         System.out.println(file[n].getAbsolutePath());
         getSubFolder(file[n]); //recursion method call
    }You can see that getSubFolder() method call it self, it will do right down to the end of the tree, try it out by replacing the line
    File selectedFolder = ....; to
    File selectedFolder = new File("c:\\yourFolder\\");

  • New directories missing from directory listing

    I have Index Directory Enabled for my configuration of application (WLS 10.3). The listing appears when I navigate to the application index dir but any new directories don't appear even if I hit the reload button. I shouldn't have to restart the server every time I create a dir in order to see it should I?

    This is a "never mind". I just realized that the deployment was using a stage area and my dir listing was of that staged dir, not the deployed dir that I was changing and expecting to see the changes on my browser. I redeployed the app to NOT be staged and all is well.

  • Air FileSystem: Update: New directories for Windows only!

    Hello Sirs & Ladies
    i have a nice idea for important directories like they want to call WindowsDirectory, SystemDirectory or any directories for Adobe Air 13.x and 14.x
    Look out my example screenshot:
    red lines mean beknown like File.desktopDirectory and File.documentsDirectory
    blue points mean new directories....
    If you would like to download and enjoy to Adobe Air Applications Link to DropBox
    Sorry my swc is bit mesh and it is not complety like ProgramFiles and Program Files (x86) and ProgramData and AppData Directories will come soon....
    Thanks and best regards!

    The product specifications list the requirements as:
    Basic Requirements
    Genuine Intel? Pentium? III GHz, AMD? GHz processor or faster
    Intel, AMD or 00% compatible motherboard chipset
    <EM>Microsoft? Windows? XP Service Pack 2 (SP2)</EM>
    256MB RAM
    600MB of free hard disk space
    Available PCI 2. slot for the audio card
    CD-ROM/CD-RW or CD/DVD-ROM required for software installation
    Graphics card with DirectX? 9 and OpenGL? compliant 3D graphics accelerator</LI>
    As Andy says, you can try the XP driver on Windows2000, I suspect it'll run just fine, but it is not officially supported.
    Cat
    Message Edited by Catherina-CL on 06-0-2006 :4 AM

  • PSC1210 Photo and Imaging Director

    Hi,
    All systems seem go with the exception of Photo and Imaging Director.
    When I click on Phot and Imaging Director nothing happens..no response at all.
    All help appreciated.
    Thanking you
    masaloi

    Jim,
    In general, the answer is "probably not".  A lot of the software packages that used to run way back when XP was a "current Operating System" are no longer around -- or at least the same packages are not supported in Windows 7 and beyond.
    The following applies: Upgrading HP Photosmart Essential or HP Photosmart Studio to HP Photo Creations
    The new software replacement may not have the editing capabilities that you were used to.  If this is the case, you might consider it time to purchase a software that does have the ability to manage your photos in the manner desired.
    Some camera software support sites might supply or offer for purchase some editing software.  I know Sony offers some really nice, free software for its camera; no doubt other brands offer something as well.
    You might consider PhotoShop - it is not free nor cheap; it works well and you can buy the basic package for around $100 US.
    If you need new Full Feature Software for your printer, see:
    How to install an HP Printer in a Wireless Network Using an Access Point in Windows 7
    How-to: HP Full Feature Printer Driver Install in Windows 7 (USB)
    I hope this helps.
    Click the Kudos Star!
    It is a great “Thank You” for the HP Experts who are here to help!
    Kind Regards,
    Dragon-Fur

  • Pacman and /etc directories

    Hi everybody, I'm a new member of this forum, coming from Italy.
    I have a question: why pacman -Rns doesn't remove also the config files and the directories in /etc? For example, i tried pacman -Rns samba to remove samba, but after that, the directory /etc/samba and the configuration files were still there. Why? I think it's a very boring thing, because i dont want to keep old config files, maybe with wrong configurations.
    Thanks.

    Allan wrote:First check that nothing owns those files with "pacman -Qo <full file path>".  If nothing owns them, then they are probably leftovers and safe to remove.
    Well, this is not a general rule for files in /etc - but in the directories named by removed packages, it applies fine

  • Music and iTunes directories are greyed out on my ipod

    My ipod worked fine until I tried to add more songs and I got a error message. Now iTunes does not recognize my ipod. My ipod will show up in My computer but the music and iTunes directories are greyed out. I have tried the 5 Rs and these have not helped. I can not do anything though iTunes because it does not show my ipod. Any suggestions or where I can download new directories for my ipod? Thanks for your help.
    Windows   Windows XP  

    My ipod does not show in iTunes. The only song on the playlist is on-the-go. Also, the ipods control directory on the ipod is greyed out. It is not automatically downloading songs.

  • Mid Year Go Live-Australia and New Zealand

    Hi,
    We are implementing Mid Year Go Live for payroll for Australia and New Zealand.
    In case of India, we have schema INLK and list of technical wage types that need to be uploaded to T558B and T558C.
    SAP has delivered a note for Payroll India which gives the list of Technical wage types.
    Pls suggest what are the technical wage types to be uploaded for Australia and New Zealand and the schema to be used for Mid Year Go Live.
    Regards
    Yashika

    Hi,
    as far as i know, there is no such schema or special wage types except the ones that are used for LSMW before go live.
    In india, they might need the schema or technical wagetypes for the taxation purposes i guess which is different from AU or NZ.
    but australia/newzealand have simplified the taxation for software provides.
    Regards,
    LG

  • Macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again

    macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again lik it did before

    If you have records that show that you've taken your MacBook Pro in for a year to fix the machine, I would escalate the problem to Apple Customer Relations - unfortunately I don't have a number for Spain.
    It would only seem logical to me that if you've been trying to have the machine repaired during the time that the 'recall' was in effect that you should be eligible for a new logic board. But only customer relations will be able to make that call.
    Good luck - take the issue as high up the food chain as you can and see what happens.
    Clinton

  • Pop-ups and new tabs opening when I try to browse

    Hello
    I'm having trouble with pop-ups and new tabs for 'Mackeeper' among others, launching themselves in Safari on my MacBook Air. This has only just started after having the laptop for 3 months.
    Operating system: OS X 10.9.4 (13E28)
    Speed: 1.4 GHz Intel Core i5
    Storage capacity: 4 GB 1600 MHz DDR3
    I have tried troubleshooting by looking in 'Extensions' but there's nothing to remove. I've also tried Forum Member Linc Davis' advice, but unfortunately that's not working either.
    I've tried all of the suggestions below, but nothing's working. It is driving me bonkers, so if anyone can help I would be most grateful.
    Thank you
    Jess
    Linc DavisJul 10, 2014 8:22 AM Re: ANNOYING MACKEEPER TABS AND POPUP ADS
    Re: ANNOYING MACKEEPER TABS AND POPUP ADSin response to chickashnaz
    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

    Click here and follow the instructions, or if there’s a type of adware not covered by them on the computer, these ones. If you're willing to use a tool to remove it(you don't need to, but may find it easier), you can instead run Adware Medic; this link is a direct download.
    (122872)

  • New home and new WIFI sluggishness

    I recently moved in with my girlfriend. At my last location, I quit using wifi, was connected directly via ethernet to my cable internet modem. I was also Airport sharing the connection for my kids' iMac.
    Now in her new place (and new wifi), I can connect with full bars via Airport, but many sites do not load the first time. I need to refresh the browser several times to get many sites to load.
    I have turned off the internet connection sharing as well. Is it some type of DNS problem?
    clueless... assuming it has something to do with the move.

    HI greengrass,
    There is no real procedure for you as a customer.  You can place an order for broadband and phoneline simultaneously.  BT will take care of the rest.
    If there a line in the new place then it might need an engineer call out in order to get it up and going but this will be made clear whenever your order is placed. 
    TX
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • New Ipod and new computer-how to transfer

    I just got the new ipod video and had the 20gb. I now have a new computer and new ipod. How do I transfer my songs to my new ipod and computer?
    any help would be appreciated.
    D

    If you transfer your library from the PC to the Mac, and then plug in your new ipod to the new Mac, a question will pop up asking you whether you want this computer's library to be transferred to the iPod. Click Yes, and it will start synching with whatever is in the library.
    You can also use some programs, like "Senuti" (for mac, freeware) to rip off the contents FROM your iPod TO your new Mac. I personally like Senuti since it has an iTunes-like interface except in reverse.

  • New songs and new audio book from Audible will not sync from my computer.  Any idea why?

    I updated my 4S to OS7.  I am now unable to sync new songs and new audiobook from Audible from my computer.  Any idea why?

    Might be incompatible with iOS 7.
    Keep in mind, Audible is not Apple software and Apple is not responsible for third party software compatibility.
    Check the Audibile website for iOS 7 support.

Maybe you are looking for

  • Embedding a Guest Book onto an iWeb Page?

    I've seen a few people using Guest Map with it in a frame on their iWeb site. I'd like to do the same thing but with my Guest Book. Is it possible and does anyone know how?

  • Windows 7 and Apple Mobile Development

    On April 11, 2011 Adobe announced ... Recent Updates April 11, 2011 - With the recent announcement of CS 5.5 and the previous announcement of updated iOS support in AIR 2.6,  Packager for iPhone (PFI) is now replaced with functionality integrated  in

  • I cannot activate the sound function under settings

    The sound function cannot be activated anymore under settings. I can modify the sound associated with a call for example, but cannot access the list of all sounds anymore

  • Where to get solaris on intel media

    Please tell me how i will get INTEL version of solaris 7 or 8 ,what i have to do fir that, and can i get that INTEL solaris CD's evaluation copy (say for 30 or 60 days) or can i get that CD for free? pls reply me back asap. my mail id is [email prote

  • Exchanging iPhone 4 to iPhone 5 at apple stores an paying difference

    Can I exchange my iphone 4 to iPhone 5 and pay the difference? But my home button isn't working!