How can I add Redolog files in standby

Hi,
I am about to create standby database in standard edition of Oracle9i through RMAN I can't find any entry regarding Redologs in DUPLICATE command can I add redolog after creating standby database or standby database doesn't need redologs, plz let me clear.
Thanks in advance.
Khawar

Hi,
you can add redolog files for variety of purposes,and this is not mendetory for creating stdby databases.
anyway you can use these commands which are give below.
ALTER DATABASE ADD STANDBY LOGFILE
('/oracle/dbs/log1c.rdo','/oracle/dbs/log2c.rdo') SIZE 500K;
You can also specify a number that identifies the group using the GROUP option:
ALTER DATABASE ADD STANDBY LOGFILE GROUP 10
('/oracle/dbs/log1c.rdo','/oracle/dbs/log2c.rdo') SIZE 500K;
thnks.

Similar Messages

  • How can I add .m4r files (thatI have shortened to 30 seconds or less) to iTunes 11.0.1? I cannot find a ringtones folder in Itunes ans it won't let me drag the files to the sidebar...

    How can I add .m4r files (that I have shortened to 30 seconds or less) to iTunes 11.0.1? I cannot find a ringtones folder in Itunes and it won't let me drag the files to the sidebar...thanks!

    How can I add .m4r files (that I have shortened to 30 seconds or less) to iTunes 11.0.1? I cannot find a ringtones folder in Itunes and it won't let me drag the files to the sidebar...thanks!

  • How can I add image files to a executable jar file ?

    Could you tell me how can I add image files to executable jar file ?
    package structure:
    ../com/Main.class
    ../images/..

    Please don't cross post, and read this
    http://forum.java.sun.com/thread.jsp?forum=31&thread=271751
    I've answered the question in the New To Java thread.

  • How can i add new files to my ipod from a different computer  without losing the added files on my ipod?

    how can i add new files to my ipod touch from a diferent computer without losing the added files already on my ipod?

    Email them? Use DropBox?  What type of files?

  • How can I add attachment files – or photos – to my created Adobe reader XI files?

    How can I add attachment files – or photos – to my created Adobe reader XI files?

    Hi adel ghonim,
    You can add images following the instructions in this Help article: Adobe Acrobat X Standard * Paste images as comments.
    You can also add attachments by clicking the paperclip icon in the left column of the Acrobat window...
    Please let me know if you need further assistance.
    Best,
    Sara

  • How can I add .chm files (ebooks) to my itunes library to sink with my ipod touch?

    how can I sink .chm files to my ipod touch, I can`t even add them to my itunes library...

    I downloaded this app called CHM+ Lite.. Launch the app and Click the "+" Sign on the top right corner
    You will see an address like : 192.168.1.100:8080
    Type this in your browser on your computer.  You will be able to upload the file directly into the app.
    Hope this helps..

  • How can I add jar files into the namespace in code?

    My friends:
    I need to add jar files into my namespace dynamicly in my code.But the jar files might be repeated, I am not sure.so, i wonder how can I add them into my namespace, ignoring the repeated files?
    This is my code:
    URL[] urlArrayA = new URL[5];
    urlArray[0] = sample1;
    urlArray[1] = sample2;
    URL[] urlArrayB = new URL[5];
    urlArrayB[0] = sample3;
    urlArrayB[1] = sample4;
    URLClassLoader urlClassLoaderA = URLClassLoader.newInstance(urlArrayA);
    URLClassLoader urlClassLoaderB = URLClassLoader.newInstance(urlArrayB);
    how can i visit classes in urlClassLoaderA from classes in urlClassLoaderB?

    could anyone please answer the question for me ? thank you...

  • How can I add the file numbers to each photo as a batch in photoshop on a mac?

    Can anyone tell me how I can add the file numbers of each individual photo to the picture and do it as a batch?

    Have a look here http://www.dmxzone.com/go?12067
    Gramps

  • How can I add PDF files in DVDSP or iDVD?

    This might be a really dumb question...but I will ask anyway. I have a client who wants PDF files in there DVD. I found a great template in iDVD I would really like to use, so I would prefer to use iDVD. Anyway, any thoughts out there? Is it possible? Any help would be extremely helpful.
    Best,
    Tom

    Yes, you can add any files that you want to the DVD-ROM portion of the disc. People will not be able to access those files from a DVD player, but any computer will be able to access those files. Of course you will have to tell people about those extra files and, most importantly, how to find those files on the disc.

  • How can i add external file as resource

    When adding resources to a  project, I can only add folders from the project's Properties  --> ColdFusion Project --> Additional Source.
    But I want to add only a single file......how should I do?
    Anyone help me? Thanks a lot......

    In Properties -> ColdFusion Project -> Additional source section one can add a linked folder i.e. a directory on the file system that you would like to add in the project.
    If you want to add only a single file instead of entire directory then select the project, right click and select New -> File.
    Click on the button 'Advanced' and select 'Link to file in the file system'.
    Browse to the file in the file system by clicking the 'Browse' button.
    After clicking OK you should be able to see the linked file in the project.
    Let me know if this works for you.
    Thanks,
    Sagar.

  • How can i add .aspx files to business catalyst

    Hi,
    A other company that is making news items for us need to upload .aspx files or .php files
    is this possible to do and if so how can they do that.
    Gr. danny

    You can build a nice news feature using web apps.

  • How can i add a file name(the text of the file name) as a child node to existing node in a treeView1 ?

    bool exists = false;
    TreeNode newNodeParsed = null;
    TreeNode rootNode = treeViewMS1.Nodes[0];
    TreeNode nextNode = rootNode;
    string f = Path.GetFileName(txtUploadFile.Text);
    TreeNode subnode = new TreeNode(txtDir.Text);
    TreeNode filename = new TreeNode(f);
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    The rootNode is the root directory in the treeView1
    subnode is a node inside the root. For example the subnode name is manuelisback
    I'm checking if the subnode exist i want to add the file for example (lightning1.jpg) to be under subnode.
    If the subnode is not existing add the subnode to the root and then add the file name lightning1.jpg under the subnode.
    But the file name is never added under the subnode:
    I added manualy the lightning1.jpg under test.
    But the lightning1.jpg also should be added to be under manuelisback. There should be two lightning1.jpg here.
    One under manuelisback and one under test. The one under test i added manualy from my ftp server.
    But the one i want to be under manuelisback i'm trying to add from my program and it dosen't add it to there.
    And when i'm using a breakpoint i see on subnode the text manuelisback and i see on f the text lightning1.jpg

    If I understand your question correctly, you might want to try changing:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    to something like:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    subnode = node;
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    rootNode.Nodes.Add(f);
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • How can I add .html file to my installer?

    I am creating an installer to put my compiled executable on a customer's computer.  The application also does web publishing, so I must include the following files:
    niwebserver.conf
    WebPub.ini
    WebPub.alias
    etc.....   No problem there as the installer selects and includes those files.
    I must also include the file "C:\Program Files\National Instruments\LabVIEW 8.6\www\WebPub.html" and then have it installed into the directory "C:\Program Files\National Instruments\LabVIEW 8.6\www" on the customer's system as this is where the webserver is pointed.
    I want this all transparent as trying to get the customer to grab the file out of one directory and figure out how to put it in the correct directory would not go well....
    Hints??
    Solved!
    Go to Solution.

    Hi!
    I'm not sure you can get rid of the physical path problem in 8.6.  In 9.0 NI added a variable $LVSERVER_ROOT to their web config file.
    The path turns out to be:
    [Program Files]\National Instruments\Shared\LabVIEW Run-Time\www
    The best you can do is the path [Program Files] for the installer.  See my post here: http://forums.ni.com/ni/board/message?board.id=170​&message.id=439052#M439052
    I write a step-by-step on how to do what you want in LabVIEW 2009.  Might work for 8.6 too, but I seem to remember some tweaking was required.

  • How can I add mp3 files to my audiobooks section on my ipod?

    Hi guys,
    I'm new to itunes and very frustrated with how difficult the program makes it to move files around. What am I missing?
    I have a couple different books in mp3 format that I have on my ipod currently as a playlist but when I turn shuffle on it mixes them in with my music. I want to put them into my audiobook directory but it won't seem to let me drag and drop or anything.
    Could someone please advise?
    thanks

    So to summarize:
    To create an Audio Book from an MP3 collection in iTunes version 8
    Highlight the collection of files
    right click - then select "Get info" on these tracks.
    Go to the Options tab and under Media kind, select Audiobook.
    If they don't appear as a directory in the Library
    Edit (menu)
    Preferences
    General tab.
    Check the box next to "Audiobooks"
    Thanks to those who provided the information.
    It would appear that this question has been answered !!
    Tick Audiobooks next to Show:.

  • Please how can I add some files in my iPod 4 , when I have got only Ipod, and cable?:// thank you

    I would like to put some files to my iPod 4, but I have only iPod and cable... I cant copy anithing to it:(

    What files?
    Do yo have anm apps that can use thjos fioes?
    The common way is to use the FIle Sharing associated with the app.
    To sync to your iPod go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Transfer files and follow the instructions.

Maybe you are looking for

  • Music app scrambled

    My music app has been getting scrambled after playing for 40 minutes or so. Music just stops mid-song, then songs start skipping around and playing a few seconds of each, when I press pause or close and reopen app, it continues to play random songs (

  • Windows 7 or 8.1 for new laptop?

    I'm close to buying a new laptop based on a 4th gen i7 and an Nvidia GTX, primarily for general personal use and some home music production. I also need it as a capable emergency/portable CS6 editing backup to my Xeon Win 7 desktop system.  I can cho

  • Nokia 5230 Software Update!

    Hi, My name is Amos and i live in South Africa. I read on Nokia FeedBurner that a new 50.x.x.x is available but when i check on my phone none is available. Please help i need to update the current software. Thanx inadvance, Amos.

  • Javascript Error when typing.

    ok trying to start a new question. Hope I am in the right place... I was able to download and install an older version - Moz FF 26; however, with practically each keystroke I get these 2 error msgs: " [JavaScript Application] ! initXPCOM TypeError: c

  • Purchased Playlist not showing up on iPhone 5

    I just synched my new iPhone5 and my entire Purchased playlist from iTunes doesn't show up. Is this happening to anyone else? What gives? This was not a smooth switch from my iPhone4 to the 5. Many glitches with email...not very pleased so far.