Question: BRBACKUP and BRARCHIVE retention time

Dear experts,
At our company we are performing backups to disk via RMAN. All good, BUT our server, which holds the backups
and the archivelogs is constantly running out of space. According to the company's policies, the retention period
is 14 days, all the backups and archivelogs older than that, can be carelessly deleted. Hence, I have the following
2 questions:
1) I found the following 2 parameter in init<SID>.sap:
# retention period in days for archive log files saved on disk
# default: 30
# cleanup_disk_archive = 30
# retention period in days for database files backed up on disk
# default: 30
# cleanup_disk_backup = 30
Are those the correct parameters ?
2) How is this functionality implemented ? Do brbackup and brarchive only overwrite backups / archivelogs older
than the value specified. Or they are searching for everything older than the retention period in the backup destination
and then purge it... ?
I am asking this question, because we have old backups before and after SAP upgrade and it would be very bad,
if those backups get purged when setting those parameter(s).
Many thanks for your answer(s)!!

Hi Reagan,
there you go, I have removed all the comments from the file to make it more compact:
backup_mode = all
restore_mode = all
backup_type = online_cons
backup_dev_type = rman_disk
backup_root_dir = <path>/sap_backup/<SID>
stage_root_dir = /oracle/<SID>/sapbackup
compress = no
compress_cmd = "compress -c $ > $"
uncompress_cmd = "uncompress -c $ > $"
compress_dir = /oracle/<SID>/sapreorg
archive_function = delete_saved
archive_copy_dir = <path>/sap_backup/<SID>/oraarch
archive_stage_dir = /oracle/<SID>/sapbackup
tape_copy_cmd = cpio
disk_copy_cmd = copy
stage_copy_cmd = rcp
pipe_copy_cmd = rsh
cpio_flags = -ovB
cpio_in_flags = -iuvB
cpio_disk_flags = -pdcu
dd_flags = "obs=64k bs=64k"
dd_in_flags = "ibs=64k bs=64k"
saveset_members = 1
rman_channels = 1
rman_filesperset = 300
_rman_sess_stmt = ("alter session set optimizer_mode=RULE")
rman_parms = "SBT_LIBRARY=/oracle/<SID>/112_64/lib/libddobk.so, ENV=(STORAGE_UNIT=SAP,BACKUP_HOST=wspo013.ages.at)"
copy_out_cmd = "dd ibs=8k obs=64k of=$"
copy_in_cmd = "dd ibs=64k obs=8k if=$"
rewind = "mt -f $ rewind"
rewind_offline = "mt -f $ offline"
tape_pos_cmd = "mt -f $ fsf $"
tape_size = 100G
exec_parallel = 0
tape_address = /dev/rmt/0mn
tape_address_rew = /dev/rmt/0m
volume_archive = (<SID>A01, <SID>A02, <SID>A03, <SID>A04, <SID>A05,
                  <SID>A06, <SID>A07, <SID>A08, <SID>A09, <SID>A10,
                  <SID>A11, <SID>A12, <SID>A13, <SID>A14, <SID>A15,
                  <SID>A16, <SID>A17, <SID>A18, <SID>A19, <SID>A20,
                  <SID>A21, <SID>A22, <SID>A23, <SID>A24, <SID>A25,
                  <SID>A26, <SID>A27, <SID>A28, <SID>A29, <SID>A30)
volume_backup = (<SID>B01, <SID>B02, <SID>B03, <SID>B04, <SID>B05,
                 <SID>B06, <SID>B07, <SID>B08, <SID>B09, <SID>B10,
                 <SID>B11, <SID>B12, <SID>B13, <SID>B14, <SID>B15,
                 <SID>B16, <SID>B17, <SID>B18, <SID>B19, <SID>B20,
                 <SID>B21, <SID>B22, <SID>B23, <SID>B24, <SID>B25,
                 <SID>B26, <SID>B27, <SID>B28, <SID>B29, <SID>B30)
expir_period = 30
tape_use_count = 100
cleanup_disk_archive = 14

Similar Messages

  • Db13 No Detail for Brbackup and Brarchive job

    Hi,
    i did a whole database online & redo log backup thru db13 on my bi 7 running on oracle 10.2g.
    after the job, i can see 1 arch file (....3718....dbf) in oraarch folder. The job show as finish. I can view the detail log for both brbackup and brarchive.
    when i did a restore to a new server, the restore job ask for arch file 3719 that doesn't exist in the oraarch folder.
    when i startup, i can see the last brbackup and brarchive, but the job show as finish with error. No detail log for both brbackup and brarchive. I check, both sapbackup and saparchive folders exist.
    My question:
    - why did the job show as finish with error?
    - why no detail shown for brbackup and brarchive?
    - why did the restore job ask for arch file that doesn't exist?
    - how so that i can see the same view as in the original?
    thank you.
    regards,
    zl

    ZL,
    I would suggest you to go through the sapbackup directory (on source server) for the log information. In the meantime, if you know the exact timings you may want to try for oracle time based recovery. Remember this time has to be just before 3719 dbf.
    Example:
    SQL> STARTUP MOUNT
    SQL> RECOVER DATABASE UNTIL TIME '2009-03-21:11:00:00';
    SQL> ALTER DATABASE OPEN RESETLOGS;
    Hope this helps.
    Manoj

  • Retention time and 'removed' mailbox status

    hi,
    I have a couple of general questions: 
    1) How do I check the default retention time for removed mailboxes in exchange power shell ?  The reason I'm asking is I've marked for deletion a few user mailboxes. But it happened I had to re-enable accounts in AD as 2 of the employees returned to
    the company. The mailboxes seem to have connected automatically back since I re-enabled accounts in Active Directory. Not sure whether they are still in status 'marked for deletion' ? 
    2) How do I force to cancel the deletion if it happens to be the case ?
    thank you.

    You can check for Disconnected (basically what happens when you only disable the AD account and not delete it) Mailboxes with the command below:
    Get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisconnectReason -eq "Disabled" } | ft DisplayName,Database,DisconnectDate
    Now when you reenable the account, the Mailbox should get reconnected as well and should no longer be marked for deletion, sometimes it takes time for Exchange to run through its stuff before you can actually access the mailbox. Anyway, here is some more
    information on disabled mailboxes.
    https://technet.microsoft.com/en-us/library/bb232039(v=exchg.150).aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • HT5312 I forgot my security question answers and answered wrong too many times so now it won't let me download anything even though I know my password, what do I do?

    I forgot my security question answers and answered wrong too many times so now it won't let me download anything even though I know my password, what do I do?

    You need to contact Apple to get the questions reset. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (95618)

  • I DO NOT want to send anonymous reports to Mozilla about my computer usage and so on. How do I get rid of the question that comes up every time I open Fiorfox up?

    I DO NOT want to send anonymous reports to Mozilla about my computer usage and so on. How do I get rid of the question that comes up every time I open Fiorfox up?

    See:
    * https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel
    * go to Firefox/Tools-Option-Advance and uncheck submit performance data

  • HT5312 I forgot the answers of my security questions, and try any times and nothing happens .....

    I forgot the answers of my security questions, and try any times and nothing happens .....

    If the email hasn't arrived after a few hours and isn't in a spam filter, use the link to contact the iTunes Store staff in the 'Additional Information' section of that article.
    (89691)

  • I bought an iPhone at september 2011 but it has been replaced twice, and the last time it was replaced was on February 2012... My question is till when is my warranty activated ???

    I bought an iPhone at september 2011 but it has been replaced twice, and the last time it was replaced was on February 2012... My question is till when is my warranty activated ???

    Your 1 year warranty starts the date of purchase of the original device. If the device is replaced that original warranty stays the same on the new device. Each replacement does come with a 90 day warranty. So if you're out of that original 1 year warranty... you will be covered for atleast 90 days on your replacement device.

  • I forgot my Apple ID security question answers and cannot contact iTunes support by phone. The only way I can ask for help is via email. How can I make that happen?             Thanks

    Hi! So I haven't used iTunes in a few months but I just got an iTunes gift card and want to make a purchase. iTunes redeemed it just fine but now that I want to make a purchase I am having problems. I can't remember my security question answers and iTunes is requesting them. I have two other verified emails but the are NOT rescue emails. I can't contact iTunes over the phone because my phone lines are out and are going to be out for a long time. The only way I can contact them is by email. How can I do this? Is there an easy way to just reset all my security questions? Please help a girl out. I just want my music!
    Thanks so much

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

  • Questions on working in real time

    Hi.  Just have a couple of questions about working in real time, actually on the swf.
    Firstly, I want to create a sort of drag and drop interface.  Is it possible to have one stage act as two seperate stages?  By this, I mean is it possible to have the left hand side of my stage hold all the components, they get dragged to the right hand side of the stage and placed anywhere, the user can then click save, and only the right hand side of the stage is saved?
    Secondly, I am testing a few things out.  What would I do to get a type of free transform on an image on the stage in real time, in the swf?  So once the movie is played, the user could then resize any image how they like by dragging a corner of the image..
    Cheers for any advise.

    What I would like is the movie to display to the user.  When they see the movie, it looks like the screen is split in two.  On the left hand side of the screen will be the components which can be dragged and dropped.  The right hand side of the screen will be a birthday card, whereby the users can drop and drag components to personalise the card.  I then want the user to be able to save the card, but a normal save will save the whole screen, including the components side of the screen.  All I want is the right hand side of the screen saved, where their card has been created.  Would this be done with two movies, and communication between the two.  Or is this possible to do on just one stage?

  • G4 displays flashing question mark and blue face at start-up

    like the title says, my powerbook refuses to go to the desktop and instead gives me a dark screen and in the center you can just make out a folder icon and on the folder icon flashes a question mark and then that picasso-esque blue smiley face. these two images flash sequentially, one after another.
    this started happening about three days ago. the day it started, i got up, checked my email, and then shut the computer down. but then i saw the soft light flashing on the closed laptop that tells me that it is still on. so i figured that i hadn't completed the shut down process all the way. i opened the laptop and almost knocked it off the perch it was on. i grabbed it in time to prevent it from falling, but in the process i mashed some buttons with my thumb. when i turned on the computer, it briefly flashed the desktop and then went dark and started flashing the icons as i described above.
    i am in japan right now, so getting ahold of apple in the states is somewhat difficult. any amount of help is very much appreciated. i've already tried a full shutdown by taking the battery out and holding down the power button for 5 seconds, as described on the apple website. this didn't work. i'm not sure which version of OS i have, but i'm pretty sure it is at least 10.0. i got the computer last year right as tiger was coming out.

    also, the power icon on the power button is not showing any light, and it wasn't showing any light for a day or so before this event happened.

  • TS3297 Does anyone know how to reset your security questions?? I loaded an itunes gift card on new ipod but when trying to make a purchase, itunes is asking us the incorrect security questions?!(for 1st time purchase)

    Does anyone know how to reset your security questions?? I loaded an itunes gift card on new ipod but when trying to make a purchase, itunes is asking us the incorrect security questions?! (for 1st time purchase)  I know the questions are not what I chose because I wrote the questions & answers down when setting up the ipod. Any ideas??!!!

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • My Macbook Pro keeps freezing and crashing, several times a day

    Since I got my computer, it has been freezing. The little pinwheel will come up and nothing will work. It used to go away and my computer was usable again, and now I have to force shut my computer down by holding the power button down and turning it back on. Lately, it will shut down by itself too with no warning, and will 'turn off' twice and then after the second one, a gray folder will pop up with a question mark and I have to hold the power button down again. It is ridiculous. It doesn't matter what programs I use; internet--I used to use Safari but then I switched to Chrome hoping that would help and it reduced it to five a day MINIMUM to three a day or so, but now it's just as high as before--, Word, iPhoto, iTunes, Skype, just having the computer on in general. It doesn't matter. I am losing my homework, and I can't afford to lose papers from Word because my computer decides to freeze randomly. I called and they said to hit F3 and to switch desktops when that happens and close out the non-responding program there, but I can't do that, because it's the computer itself, and it never lets me switch desktops. Absolutely nothing works on the computer at all.
    I went to Apple and they ran two scans on their computer, I don't know which ones, and they both came back and said nothing was wrong with the laptop, but something CLEARLY is. This isn't normal. I didn't pay almost 2,000 for a computer to never be able to actually use it because I have to turn it off every few minutes. So far today, and today alone, it is happened SEVEN times. And I've only used it five times today, for a period of about an hour each.
    It did this before I got the new update for Yosemite and whatever was before that. I've had this since mid to late August of this year. It does it just as much as before I updated, probably more now.
    I am at my absolute wits end. I need help, and nobody knows what to do for this. Has anyone had this problem and been able to fix it?

    Three beeps indicate a RAM problem. Is this the original RAM or have you upgraded it? The fact that this seems to happen when you move it sounds like the RAM might not be seated correctly or maybe the contacts are dirty. If you're comfortable doing it, you can remove the RAM modules and clean the contacts with an eraser. Try one module in the machine at a time. If one is bad, that will help you isolate which one.

  • If I store files in the TimeCapsule's own HD, will i be able to use time machine to back those files up also? (specifically can i store/run my iPhoto library from TC and then have Time machine also make/include a backup up of the iPhoto library?)

    I curretly use my iphoto library from an large external HD (2 tb)  and then have time machine back it up to my airport extreme (which has an external HD attached, 500gb ) Long story short... I am running out of storage space on the 'large external hd 2tb'. however, I still have space on the HD (500gb) that is attached to my airport extreme.
    My question is,
    1. If i move my iphoto library over to the HD attached to my airport extreme, Is there a way for Time Machine to also back this up.
    2. same question only applied differentliy  = If i purchase a  Time Capsule. and store files on its HD. (specifically an iPhoto library) would time machine create backups of this 'locally' stored data on its own TC HD? 
    TC = time Capsule
    HD = hard drive
    TM = Time machien

    1. If i move my iphoto library over to the HD attached to my airport extreme, Is there a way for Time Machine to also back this up.
    Sorry, but no. Time Machine cannot backup from network drives.
    1. If i move my iphoto library over to the HD attached to my airport extreme, Is there a way for Time Machine to also back this up.
    2. same question only applied differentliy  = If i purchase a  Time Capsule. and store files on its HD. (specifically an iPhoto library) would time machine create backups of this 'locally' stored data on its own TC HD? 
    Again, sorry, but no. Same reason. The TC's internal HDD is treated as a network drive.

  • I can't remember my security question answers and I can't purchase anything in the iTunes Store.

    So I wanted to buy an app on my new iphone 5 right? Well, the store popped up, window was asking my password all the usual. Until it asked for the answers to my security questions. They were my first teacher, and my favorite teacher. Now because I made this account almost 6 years ago, I honestly cannot remember the answers to these questions! I cannot recall if I had put my actual FIRST teacher's name, or if it was the first teacher who pooped into my head. Ad my favorite teacher? Well that changes daily so who the heck knows what I had then. I just want apple to reset everything for me and let me choose new security questions. I did it for my sister's account, but it won't let me until I answer these darn questions. Someone please help!!

    Reset Security Questions
         There are several different methods. Try one. If it doesn't work,
         then try the next one. Don't try to do everything at once.
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Note: you may need to continue entering false answers to the questions until you trigger the response needed to start making changes. It will take six or nine retries.
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • How to get my images always order by file name, and not by time of captur, in all the folders in the library?

    How to get my images always order by arquive name, and not by time of captur, in all the folders in the library?
    Sorry for the poor english, but im portugues.
    In the library we can change the order of classification of image by, time of capture, name of file etc... I'm wondering if its possible define to be always by the name of file.
    It ´s possible?
    And i have other question, in print label we have an option to auto rotate to feet in page to have the image using the maximum area in the page (auto rotate, zoom etc), its possible to change the orientation of the rotation to be always in  the other direction?

    The Muvos are USB Mass Storage devices and do not have the ability to display track information based upon ID3 tags.
    The Zens all read and display track info based upon ID3 tag information that is either gathered from an online source or entered by the end-user.
    If you want the track information displayed instead of the ID3 tag information, you could edit the ID3 tags and rename the title to whatever you have as the file name. Not sure why your file names would differ so much from the ID3 tag info though, almost all of my content has the same name for the filename as it does on the ID3 tag title.

Maybe you are looking for