Inc0/1 and arch backup at the same time

Hi!
During the inc0/1 backups I need to run additional archivelog backups.
Otherwise the FRA is filled up. But then the the last part of the inc0/1 backup - the archivelog part - fails:
Starting backup at 07//09/2010
current log archived
released channel: t1
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of backup plus archivelog command at 09/07/2010 02:02:14
RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
ORA-19625: error identifying file +FRA/db/archivelog/2010_09_07/thread_1_seq_90096.668.729048811
ORA-17503: ksfdopn:2 Failed to open file +FRA/db/archivelog/2010_09_07/thread_1_seq_90096.668.729048811
ORA-15012: ASM file '+FRA/db/archivelog/2010_09_07/thread_1_seq_90096.668.729048811' does not exist
Is there a way that the two RMAN sessions recognize each other?
br
Daniel

OK in fact you need space (the simplest would be to increase the size of the FRA). You could do explicitly what the "plus archivelog" does in your other script and remove it from this script.
If you want to save space in the FRA you could :
- direct the backups in another directory (e.g format '/other_folder/INC1_%d_%s_%t_%p)
- compress the backups with the "as compressed backupset" option
If it's not enough you could evaluate another strategy adapted for the big databases. For example incrementally updated backups to keep only one copy of the datafiles + the incremental backups + the archivelog files (I suppose now you have at least 2 full backups in your FRA ?)

Similar Messages

  • Time Capsule and 2 macbook at the same time

    Hello,
    I have a time capsule and 2 macbooks.
    Therefore, when my macbook is doing a backup ( every hour), my collegue cannot acces to internet, and cannot backup at the same time.
    But it looks like this problem is only one way ( I mean when my collegues backup, I don't have any trouble to go on internet).
    Anyone can help? cause it's really annoying.
    Thanks

    Ngarraud,
    Try this:
    *Multicast Rate / Transmit Power*
    Launch Airport Utility.
    Select your Time Capsule on the left.
    Click "Manual Setup".
    Select "Airport" from the toolbar at the top.
    Click the "Wireless" tab.
    Click the "Wireless Options..." button.
    Check the setting for "Multicast Rate".
    This setting controls the range at which you allow devices to access your network. Lower is better if you want access throughout the house. But this setting won't improve speed. Tesserax has a nice explanation of this setting in the following quote:
    +"The Multicast Rate option sets the threshold throughput level a wireless client must obtain in order to be "accepted" by the base station. The lower this value, theoretically, the greater number of clients that can connect, especially those at greater distances from the base station. At the opposite end, the higher this number, only those wireless clients that can achieve the higher throughput value will be able to connect.+ [http://discussions.apple.com/thread.jspa?messageID=6736587]
    Next, verify that your "Transmit Power: is set to 100%.
    *Interference Robustness / Use Wide Channels*
    Finally, ensure that "Interference Robustness" is checked (For certain network configurations this setting will say "Use Wide Channels. Verify that it is checked nonetheless.)
    Help Doc states: +"You may experience network performance problems if a microwave oven or other source of interference is used frequently near your base station or Time Capsule. To help minimize interference, turn on interference robustness."+
    Let us know if this was helpful.
    Cheers!

  • Bash script: Rotate your wallpaper and SLiM theme at the same time

    EDIT;
    I've decided I should really thank Cerebral for his help with writing this script; this thank you should have been here from the get go.
    After writing:
    #!/usr/bin
    echo "Hello World!"
    I wrote a script to rotate my fluxbox background and SLiM theme at the same time, so I could have a contiuously changing background and still have a smooth transition from SLiM to fluxbox.  (It just looks so much cooler when both have matching backgrounds).  By the time you finish reading it, and configuring your box so it will work, you will probably have decided you could have writtin your own, better script to do the same thing.  But, on the off chance anybody finds use for it, here it is:
    (this should be obvious, but: don't run this script without at least reading the comments)
    #!/bin/bash
    #this is a script to rotate a number of backgrounds
    #to be shared by the fluxbox desktop and SLiM login manager.
    #it is the first meaningful script I've written. It may be
    #freely distributed and used with the understanding that you are
    #using it at your own risk.
    #Before running this script you need to check that your SLiM
    #themes are installed to the path /usr/share/slim/themes, which
    #is the defulat path for installation in Arch. Here are some
    #other things you need to set up:
    #1. create (if you don't have it) the directory /usr/share/wallpapers
    #2. create a wallpaper in /usr/share/wallpapers called 'dummy' by copying
    #you current wallpaper to that filename
    #3. set your window manager to display the wallpaper 'dummy', this works fine
    #using a style overlay in fluxbox, I haven't tested it with any other window
    #manager, but I don't see why this would cause a problem.
    #4. create a directory /usr/share/slim/themes/current, you can copy one of
    #your slim themes into that directory if you want. (this will prevent you
    #from seeing some error messages the first time you run the script)
    #5. define the names of the themes you want to rotate, in order for this
    #script to work, you must name them "themeNUMBER", where NUMBER is replaced
    #by an integer. Your themes must be numbered consecutively, start with 1
    # that is:
    #theme1 , theme2, theme3, etc. , theme305
    #If you don't number consecutively, this script will not run properly. You
    #must also define the total number of themes as "rotate_number"
    #6. Check if the script runs, if it does, you should change /etc/slim.conf to
    #use the theme "current"
    #7. This theme will now rotate your SLiM theme and wallpaper in such a way as
    #to make them match each other. Note that SLiM will not let you change themes
    #"on the fly", (as of July 6, 2008), so changes will not be apparent unless you
    #restart SLiM. I run the script before I run slim in my etc/rc.local local
    #script, so each time I reboot I get different wallpaper / login background.
    #Fred Drueck 2008
    #Define here all themes to be rotated and the total number of
    #themes to rotate:
    rotate_number=9
    theme1=/usr/share/slim/themes/default
    theme2=/usr/share/slim/themes/lake
    theme3=/usr/share/slim/themes/lunar
    theme4=/usr/share/slim/themes/flower2
    theme5=/usr/share/slim/themes/the-light
    theme6=/usr/share/slim/themes/mindlock
    theme7=/usr/share/slim/themes/parallel-dimensions
    theme8=/usr/share/slim/themes/wave
    theme9=/usr/share/slim/themes/fingerprint
    #check you are running this script as super-user:
    if [ $(id -u) != "0" ]; then
    echo "You must be the superuser to run this script" >&2
    exit 1
    fi
    echo "rotating themes"
    #figure out which theme is currently set, then name it as the variable
    #"last theme number", otherwise set last theme number as 0
    if [ -f /usr/share/slim/themes/current/current_theme_number ]
    then
    echo "checking current theme"
    cd /usr/share/slim/themes/current/
    eval last_theme_number=$(cat /usr/share/slim/themes/current/current_theme_number)
    echo $last_theme_number
    else
    echo "no theme is currently set, using theme 1"
    last_theme_number=0
    echo $1 > /usr/share/slim/themes/current/current_theme_number
    fi
    #set the new theme number
    eval new_theme_number=$(($(($last_theme_number % $rotate_number))+1))
    #select the new theme
    placeholder=theme
    eval new_theme=\$$placeholder$new_theme_number
    echo $new_theme
    #now clean out the "current" theme where I keep the current
    #theme for slim
    rm /usr/share/slim/themes/current/background*
    rm /usr/share/slim/themes/current/panel*
    rm /usr/share/slim/themes/current/slim.theme
    #the wildcards are there since the themes use jpg and png files
    cp $new_theme/background* /usr/share/slim/themes/current
    cp $new_theme/panel* /usr/share/slim/themes/current
    cp $new_theme/slim.theme /usr/share/slim/themes/current
    #increase the theme number, but first clear the old file
    rm /usr/share/slim/themes/current/current_theme_number
    echo $new_theme_number > /usr/share/slim/themes/current/current_theme_number
    #copy over the dummy wallpaper in "/usr/share/wallpapers" (with the theme
    #background file
    cp $new_theme/background* /usr/share/wallpapers/dummy
    exit 0
    Last edited by pseudonomous (2008-07-07 21:59:42)

    oh i forgot to mention... its rotating while moving. i.e. is doesn't have to stop rotate and then continue back to origin.

  • Hello i hav an ipad mini and i was in the middle of the ios 8 update and i held the sleep and home button at the same time to cancel the update and now it wants me to connect to itunes i dont no how to do that can someone pleaze help me

    hello i hav an ipad mini and i was in the middle of the ios 8 update and i held the sleep and home button at the same time to cancel the update and now it wants me to connect to itunes i dont no how to do that can someone pleaze help me?

    RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • I recently reset my iPod touch 4th gen. (holding power and home buttons at the same time.)  now it won't let me change my wallpaper, in the photo section or the settings. Any ideas, please? Thanks.

    I recently reset my iPod touch 4th gen. (holding power and home buttons at the same time.)  now it won't let me change my wallpaper, in the photo section or the settings. Any ideas, please? Thanks.

    What happens when you try to change them?
    Try:
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • My ipod touch 4 gen is in recovery mode and i dont know how to get out of it,i tried everything like hold the home and top button at the same time. All it did what g to the apple logo and went back to recovery mode any help?

    My ipod touch 4 gen is in recovery mode and i dont know how to get out of it,i tried everything like hold the home and top button at the same time. All it did what g to the apple logo and went back to recovery mode any help?

    Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...
    kevinpowell1 wrote:
    how can i get it out of recovery mode?
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    Then See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    Some users have reported as many as 8 or 9 attempts were necessary before success.
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    If the issue persists...
    Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Can you use Time Capsule on a windows and 2 macs at the same time.

    Can you use Time Capsule on a windows and 2 macs at the same time as either a backup for one and a seperate HD drive for two?

    Yes.
    From one viewpoint the Time Capsule is just NAS (Networked Attached Storage) and it supports the file sharing protocols necessary for both Windows and Macs.
    From the viewpoint of the Macs it can also be used by Time Machine for backups.
    As NAS it can be used for storing files, and there are many backup software packages that support NAS on both Windows and Macs.
    In addition from a networking point of view it can serve as a router, wireless access point etc.

  • How do I make Organizer and Editor open at the same time?

    I'm new to PSE 10 and want to know how to make Organizer and Editor open at the same time. I can get the Organizer up, but have to pick out a photo and click on Fix: Full Photo Edit to get Editor to open. Is that the only way to do it?
    Thanks,
    K

    Create Desktop shortcuts for the Organizer and the Editor:
    The Editor's executable is:
    "C:\Program Files (x86)\Adobe\Photoshop Elements 10\PhotoshopElementsEditor.exe"
    The Organizer's executable is:
    "C:\Program Files (x86)\Adobe\Elements 10 Organizer\PhotoshopElementsOrganizer.exe"
    Ken

  • How can I do to acquire and save date in the same time and in the same file when I run continual my VI without interrupti​on.

    I've attached a VI that I am using to acquire amplitude from Spectrum analyzerse. I tried to connect amplitude ouput to the VI Write Characters To File.vi and Write to Spreadsheet File.vi. Unfortunately when I run continual this VI without interruption, labview ask me many time to enter a new file name to save a new value.
    So, How can I do to aquire and save date in the same time and in the same file when I run continual my VI for example during 10 min.
    Thank you in advance.
    Regards,
    Attachments:
    HP8563E_Query_Amplitude.vi ‏37 KB

    Hi,
    Your VI does work perfectly. Unfortunately this not what I want to do. I've made error in my last comment. I am so sorry for this.
    So I explain to you again what I want to do exactly. I want to acquire amplitude along road by my vehicle. I want to use wheel signal coming from vehicle to measure distance along road. Then I acquire 1 amplitude each 60 inches from spectrum analyzer.
    I acquire from PC parallel port a coded wheel signal coming from vehicle (each period of the signal corresponds to 12 Inches). Figure attached shows the numeric signal coming from vehicle, and the corresponding values “120” and “88” that I can read from In Port vi.
    So I want to acquire 1 time amplitude from spectrum analyser each 5
    period of the signal that I am acquiring from parallel port.
    So fist I have to find how can I count the number of period from reading the values “120” and “88” that I am acquiring from In Port (I don’t know the way to count a number of period from reading values “120” and “88”).
    Here is a new algorithm.
    1) i=0 (counter: number of period)
    2) I read value from In Port
    3) If I acquire a period
    i= i+1 (another period)
    4) If i is multiple of 5 (If I read 5 period)
    acquire 1 time amplitude and write to the same
    file this amplitude and the corresponding distance
    Distance = 12*i). Remember each period of signal
    Corresponds to 12 Inches).i has to take these
    values: 5,10,15,20,25,35,40,45,50,55,60............
    5) Back to 2 if not stop.
    Thank you very much for helping me.
    Regards,
    Attachments:
    Acquire_Amplitude_00.vi ‏59 KB
    Figure_Algorithm.doc ‏26 KB

  • How do I do a split screen to show the contents of my Library and a playlist at the same time?

    I’m using iTunes 11.3.1 on a current generation Mac running OSX 10.9.4.
    I like to manually create playlists.  I want to be able to see the contents of a playlist and my library at the same time. Is there a way to do a split screen view in iTunes so the songs in my playlist show in one window and the library shows in another?

    See this thread -> https://discussions.apple.com/thread/5666364

  • IS there a way to load and purchase different photos from iPhoto and ship them at the same time? the only way that I can find is to purchase each photo (or multiple of one) at a time, which increases the cost of shipping, as I want to get one print of 20

    Is there a way to order multiple different prints in any quantity from Iphoto? it appears currently like I would have to ship each separately, even if only one print... is there a way around this so I can can get several DIFFERENT prints of any quantity and ship all at the same time?

    Sure - easiest way is to make an album for photos you want to order and drag photos to it - when it is complete open the album, select all and order
    LN

  • HT201263 When my Ipod touch is in autolock I can only restart the device holding the sleep/wake button and home button at the same time for 10 seconds.  While in auto-lock it is using battery power and will do so until the battery is drained.  Whats wrong

    When my Ipod touch is in autolock I can only restart the device holding the sleep/wake button and home button at the same time for 10 seconds.  While in auto-lock it is using battery power and will do so until the battery is drained.  Whats wrong?

    - Try a reset. Nothing is lost:
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Connect the iPod to your computer and try to restore via iTunes. Try placing in Recovery mode if necessary to restore.
    - If you can't turn the iPod completely off, let the batter fully drain. After charging for at lerast anhour try again
    - If still not successful time for an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.

  • Is there another way i could turn my phone on? it wont turn on or show me the battery screen to show its charging. i already tried to hold the on and home button at the same time but it does not want to turn on. please help?

    is there another way i could turn my phone on? it wont turn on or show me the battery screen to show its charging. i already tried to hold the on and home button at the same time but it does not want to turn on. please help?

    Device Not Recognised
    For PC
    http://support.apple.com/kb/TS1538
    For Mac
    http://support.apple.com/kb/ts1591

  • I need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by ste

    i need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by step explanation please beginner

    Please post (a relevant section of) it right on this Forum.

  • My iPhone 4s will not sync a changed playlist from itunes unless i turn off music match. Shouldn't I be able to use a playlist and music match at the same time?

    my iPhone 4s will not sync a changed playlist from itunes unless i turn off music match. Shouldn't I be able to use a playlist and music match at the same time?

    It's not entirely impossible actually as someone has pointed out to me that I can turn on Call Forwarding and that stops any incoming calls. I've just forwarded it to my google voice number and then turned on "do not disturb" in google voice and whenever I get a call it goes straight to my google voice voicemail and my phone does nothing. The only thing now is I still get text messages but I think the phone calls bugged me more because they would make my music turn off for much longer.
    Even though this isn't a perfect solution it's something so far so maybe you shouldn't just come out and say there's NOTHING I can do because so far I've found part of a solution. If you don't have anyting productive to say then just don't reply and close the tab. Thanks.
    At this point I'm wondering if anyone knows of any Jailbreak tweaks that can enable what I want. Unless of course it's agaisnt the rules of this forum to mention jailbreak stuff...

Maybe you are looking for

  • Email not connecting

    I have been away travelling for a few days and three days ago, my iPad (iOS 8.2) failed to connect to my two email providers. Now I am home, and although the device indicates 'connected' (and I can get my emails on my home PC using the same ISP), I c

  • How to map logical type to varchar(max)?

    Hello fellow modelers and developers, I created a logical model of a database in SDDM and trying to create a relational model for Oracle, DB2 and MSS. The one for Oracle seams fine, but the MSS one is kinda tricky as it seams impossible to map my log

  • Requirement of BW

    am supposed to give a presentation to Business Users Could you please send me any standard presentations that will give an overview of BW System and advantages of BW Reports (email address removed by moderator) Points to be covered 1) Why only SAP BW

  • Flatten project structure upon generation

    Hi folks, Is there an easy way to maintain a folder structure for my projects for my help files BUT, when I generate the CHM file output, for Robohelp to put all htm files at a "root level"? I'd like my application to reference the help files straigh

  • Playing quicktime audio in succession, but only on Click

    I have a slide that has text, and three different audio clips. I would like the slide to do the following, when I click. Click 1 - First set of text appears Click 2 - First audio file plays Click 3 - Second audio file plays Click 4 - Third audio file