About incremental backup

Dear Friends ,
We have a ORacle 10g database server which is 24x7 hours running . We take everyday RMAN full backup ,now we want to run "Incremental rman backup" 6 days in a week and "Full Backup" rest of the week . But in oracle article we read that
"RMAN can only create incremental backups of datafiles, not of archived redo log files or other files."
(source: http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/bkup001.htm#BRBSC131)
In this moment I think , archivelog is very important for database recovery and it is necessary to take archivelog backup regularly .Now if we want to run Incremental backup then I think I cannot take "archivelog" backup using following script :
run
allocate channel t1 type 'sbt_tape' parms
'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
sql "alter system switch logfile";
backup incremental level 1 database plus archivelog;
Give me some idea plz ... ...what should I need to ?

Sorry Hemant ,
Accroding to ur advice , I run the script following way :
run
allocate channel t1 type disk;
backup incremental level 1 database;
sql "alter system switch logfile";
backup archivelog;
But I got the following ERROR :
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00558: error encountered while parsing input commands
RMAN-01009: syntax error: found ";": expecting one of: "all, from, high, like, logseq, low, scn, sequence, time, until"
RMAN-01007: at line 6 column 18 file: standard input
RMAN>
But when I use the following script , it shows no error :
run
allocate channel t1 type disk;
sql "alter system switch logfile";
backup incremental level 1 database plus archivelog;
I think here database is backup only using LEVEL 1 , but archivelog is backed up full . Here is the output :
RMAN> run
2> {
3> allocate channel t1 type disk;
4> sql "alter system switch logfile";
5> backup incremental level 1 database plus archivelog;
6> }
using target database control file instead of recovery catalog
allocated channel: t1
channel t1: sid=159 devtype=DISK
sql statement: alter system switch logfile
Starting backup at 29-JUL-08
current log archived
channel t1: starting archive log backupset
channel t1: specifying archive log(s) in backup set
input archive log thread=1 sequence=2 recid=1 stamp=661354070
input archive log thread=1 sequence=3 recid=2 stamp=661354123
input archive log thread=1 sequence=4 recid=3 stamp=661354895
input archive log thread=1 sequence=5 recid=4 stamp=661354935
input archive log thread=1 sequence=6 recid=5 stamp=661355047
input archive log thread=1 sequence=7 recid=6 stamp=661355050
input archive log thread=1 sequence=8 recid=7 stamp=661355072
input archive log thread=1 sequence=9 recid=8 stamp=661355327
channel t1: starting piece 1 at 29-JUL-08
channel t1: finished piece 1 at 29-JUL-08
piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\BACKUPSET\2008_07_29\O1_MF_ANNNN_TAG20080729T143725_48
channel t1: backup set complete, elapsed time: 00:00:06
Finished backup at 29-JUL-08
Starting backup at 29-JUL-08
channel t1: starting incremental level 1 datafile backupset
channel t1: specifying datafile(s) in backupset
input datafile fno=00001 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\SYSTEM01.DBF
input datafile fno=00003 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\SYSAUX01.DBF
input datafile fno=00002 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\UNDOTBS01.DBF
input datafile fno=00004 name=C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\USERS01.DBF
channel t1: starting piece 1 at 29-JUL-08
channel t1: finished piece 1 at 29-JUL-08
piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\BACKUPSET\2008_07_29\O1_MF_NNND1_TAG20080729T143732_48
channel t1: backup set complete, elapsed time: 00:00:15
Finished backup at 29-JUL-08
Starting backup at 29-JUL-08
current log archived
channel t1: starting archive log backupset
channel t1: specifying archive log(s) in backup set
input archive log thread=1 sequence=33 recid=32 stamp=661358270
channel t1: starting piece 1 at 29-JUL-08
channel t1: finished piece 1 at 29-JUL-08
piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\TESTDB\BACKUPSET\2008_07_29\O1_MF_ANNNN_TAG20080729T143751_48
channel t1: backup set complete, elapsed time: 00:00:02
Finished backup at 29-JUL-08
Starting Control File and SPFILE Autobackup at 29-JUL-08
piece handle=D:\RMAN_BACK\CFC-2444681464-20080729-0C comment=NONE
Finished Control File and SPFILE Autobackup at 29-JUL-08
released channel: t1
RMAN>
what u think , am i right ?

Similar Messages

  • About incremental backup/restore

    I current have 6 master nodes with about 150G data, and I want to migrate them to a new store with 2 master nodes. My plan is:
    (1) take a snapshot online and load the .jdb files to new store, which may takes a really long time.
    (2) stop the online application and take another snapshot.
    (3) rsync the .jdb files to new server and ONLY load the changed ones (compare with step 1) to the new store instead of loading them all again.
    is that ok?

    You should not try to change the store topology in this fashion. You should instead migrate from old to new by moving K/V pairs (records).
    Charles

  • Question about using an incremental backup to update a standby

    We have a 2TB Oracle 10g database with a standby and the application that uses it is about to be updated.  We're using cumulative incremental backups with block change tracking to back it up with weekly level 0 backups.  The application upgrade will be making a lot of changes (several hundred GB) and we have stop the standby during the upgrade process as a quick way to get back (we don't have the space for a flashback recovery) in the event that there are issues with the upgrade.  We can just let the archivelogs back up and get them over to the standby and applied once they decide they like the upgrade but, it looks like it would be simpler and perhaps quicker to use an incremental backup to update the standby.  I probably won't but, If we do that, it looks like we can turn off archivelogs in the primary and not deal with them at all.  I've never tried this but, I do have some questions.
    Does it make sense to take this approach?
    If we were to turn off archivelogs in the primary, would that have any effect on block change tracking?  I don't see why it would but, had to ask.  Of course, we would turn archivelogs back on and take a level 1 backup after the upgrade.
    Thanks in advance for the education.

    Funny you should mention that rolling upgrade,  I'm actually planning to do that in another environment.  My testing says it works pretty well and I'll be able to move a 400GB database to new hardware and upgrade it to 11g with very little downtime.  However, in this case, the database is not being upgraded.  The application is.  It's just that, as part of that upgrade, there are a lot of updates and I'd just as soon not deal with the archivelogs for that. Here's what I was thinking about:
    Set logs shipping to defer in the primary.
    Stop log apply in the standby.
    Turn off archivelogs in the primary.
    Do the application update.
    If they like the results, turn archivelogs back on in the primary.
    Take an rman incremental backup from scn in the primary.
    Apply the incremental backup to the standby.
    Start log log apply in the standby.
    Start log shipping in the primary.
    The process for getting and using the incremental is described here:
    http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#BGBCEBJG
    This isn't your regular incremental backup.
    So, am I the only crazy one?  Has anyone else tried this?

  • Quesion about the Basic concept of RMAN incremental backup

    I have a problem in understanding the basic concept of two types RMAN Incremental backup ie. Differential and Cumulative. I just don't understand how cumulative incremental backup consumes more space than Differential backup.
    Have a look at the scenario in which Differential backup is used.
    1. On Sunday midnight, a LEVEL0 backup is taken.
    2. On Monday midnight all the blocks that was changed since Sunday midnight are stored in the backup media (tape or disk)
    3. On Tuesday midnight all the blocks that was changed since monday midnight are stored in the backup media.
    4. On Wednesday midnight, all the blocks that was changed since tuesday midnight are stored in the backup media.
    At this point, in the backup media, you have all the changed blocks from sunday midnight to wednesday midnight eventhough it was stored in a daily basis. If you had taken a cumulative backup at wednesday midnight the backup media would have contained the same changed blocks from sunday midnight(LEVEL0) to wednesday midnight, but all at one go instead of daily basis. I don't understand how cumulative backup consumes more space when the backup media contains the same amount of changed blocks as it were in the case of the Differential backup.

    Considering the Scenario you given:
    Sunday : Level 0 backup.
    Monday : You have taken an incremental backup then there will not be any difference in size of backup set for differential or cumulative as the changes from last Level0 backup are considered.
    Tuesday : A cumulative backup (n-1) will have changed blocks since Sunday's Level0 backup but a differential backup(n) will only have changed blocks since Monday. So definitely there will be more space consumed by cumulative backups compared to differentials.
    Hope it helps ...
    Bhupinder

  • ACS 5.3 incremental backup error

    Hi ,
    I have ACS 5.3 that recently having problems with the incremental backup.
    The error is : on demand back failed
    and the details is: SQL Anywhere backup utility connection error: insufficient system resources- failed  to allocate a SYSV semphorenull .
    I mean come on.... and I did not find this error on cisco website.
    The ADE.log file is not showing errors/details related to this. Atttached are the files showing the errors
    Have anyone faced this problem before? Ideas? Anything?
    Regards,
    George

    Hi George:
    with 5.3 I experienced many issues including the incremental backup does not work. whenever I set it to "ON" next time the scheduled backup comes It fails and set itself back to "Off'. I did not get same message you get though.
    I finally did two things:
    - upgraded to latest patch.
    - moved the log collector from the primary to the secondary.
    Now things are fine for about 1 month without issues.
    Regarding your issue, I think it could be related to resource issue as mentioned in the message.
    What is the current DB size that you have?
    Note that the message is misleading (messages I got with my ACS are the same) because they mention incremental backup in the message title and then say on-demand full backup failed!
    So, you have to specify yourself if the issue with the incremental backup or the full backup?
    HTH
    Amjad
    Rating useful replies is more useful than saying "Thank you"

  • Does Time Machine still do incremental backups after a restore?

    Hi --
    We have a 500GB external iomega drive that just died and I have been working to restore it's files from Time Machine onto a new 500 GB drive. I formatted the new drive and gave it the same name as the old one, and it looks like Time Machine was smart enough to do the right thing and restore the files to their original locations.
    However, this morning -- within 24 hours of completing the restore -- we see an error message from TM saying it is out of space and it cannot perform a backup. It claims that about 450 GB are needed, which is about the same size of all the files we restored. Is it possible that once backup files are restored they are not longer considered backed up, and thus Time Machine immediately tries to back up all the files it just restored? I assumed it would still do incremental backups but recognize that restored files do not need to be backed up again unless / until they are edited...
    Thanks,
    Ram on

    felciano wrote:
    Hi --
    We have a 500GB external iomega drive that just died and I have been working to restore it's files from Time Machine onto a new 500 GB drive. I formatted the new drive and gave it the same name as the old one, and it looks like Time Machine was smart enough to do the right thing and restore the files to their original locations.
    That's quite unusual. Normally it does a full backup immediately: http://support.apple.com/kb/TS1338
    See #C4 in [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of this forum).

  • Is incremental backup possible for archivelog.

    Hi expert
    i want to plan weekly and daily backup with windows redundancy 14 days.
    full archivelog backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 0
    DEVICE TYPE DISK
    TAG = 'WEEKLY_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/weekly_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-7';
    daily backup script
    run
    BACKUP AS COMPRESSED BACKUPSET
    INCREMENTAL LEVEL = 1
    DEVICE TYPE DISK
    TAG = 'DAILY_INCREMENTAL_ARCHIVELOG'
    FORMAT '/oracle/ITB/db/apps_st/rman_backup/daily_incremental_archivelog_%d_t%t_s%s_p%p'
    ARCHIVELOG FROM TIME 'SYSDATE-1';
    my question that if i will take backup then, will be any gap in sequnce
    and second question is that ---is there incremental backup possible for archivelog.
    os =aix6 and database 10g2

    afzal wrote:
    Dear Sir,
    ok question number 2 is clear that incremental backup is not possible but still confuse
    about sequence
    if i did take backup of 17 feb at 12 o'clock seq 1,2,3,4
    after that i did take backup 18th fab 1 pm then it will take from 6,7,8-------seq 5 is missing
    please please correct my archive log script for weekly and daily backup with windows redundancy 14 days
    again please correct my script
    thnaksWHy you think the archive log file number 5 will be missing? RMAN automatically archives current redo log files and backups it
    Why you don't test your backup script by your own and check results? Never trust anyone on your critical databases' backups, do it by your own!
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • Perform Incremental Backup in Oracle 8i

    Hi all,
    I would much appreciate if anyone can provide me steps to do incremental back up using oracle 8i.

    1) Normally, when we're talking about backups, we're talking about physical backups, i.e. backups of a database. Exports can be useful additions to a proper backup strategy, but should not be used in place of proper physical backups.
    2) You cannot do an incremental export in a useful fashion. There is an "incremental export" option which will export the entire contents of an entire table if a single row changes, which may be useful if you have a schema with lots of large, totally static tables, but that's pretty rare.
    Justin

  • Incremental Backup in Oracle 9i(9.2.0.1)

    I have used Oracle 9i (9.2.0.1) version. How could I take incremental backup of the particular database user? Please help me.

    1) Normally, when we're talking about backups, we're talking about physical backups, i.e. backups of a database. Exports can be useful additions to a proper backup strategy, but should not be used in place of proper physical backups.
    2) You cannot do an incremental export in a useful fashion. There is an "incremental export" option which will export the entire contents of an entire table if a single row changes, which may be useful if you have a schema with lots of large, totally static tables, but that's pretty rare.
    Justin

  • Restore Tablespace incremental backup is not work as after reimage oracle

    TheTablespace incremental backup Restore is not work as after reimage the oracle database or restore tablespace in standby machine(another machine) is not working .its working in the same machine without reimage .after reimage not working please clarify me ,
    I need the solution as soon as please reply as soon as .
    Commnads used:
    This is the step is followed but i am getting backup or control file not found error.Its works i the application server is not reimaged ;
    please give your valuable suggestion .
    Product Used:oracle 11g in linux environmnet
    1)Before taking backup get SCN number for restore.
    Command applied: Select current_scn from v$database;
    2)running Full backup of database
    Command applied:
    configure controlfile autobackup on;
    backup database plus archivelog;
    CROSSCHECK BACKUP;
    exit;
    3)Running level 0 incremental backup
    Before taking backup get SCN number for restore.
    Command applied:
    BACKUP AS COMPRESSED BACKUPSET INCREMENTAL LEVEL 0 TAG ='WEEKLY' TABLESPACE TEST;
    exit;
    3) Running level 1 incremental backup
    Before taking backup get SCN number for restore.
    Command applied:
    BACKUP AS COMPRESSED BACKUPSET INCREMENTAL LEVEL 1 TAG ='DAILY' TABLESPACE TEST;
    4)Before Restore(TSPITR) following procedure are applied under sysdba privilege
    Command applied:
    SQL 'exec dbms_backup_restore.manageauxinstance ('TSPITR',1)';
    5)TSPITR Restore command
    Command applied:
    run
    RECOVER TABLESPACE TEST UNTIL SCN 1791053 AUXILIARY DESTINATION '/opt/oracle/base/flash_recovery_area';
    SQL 'ALTER TABLESPACE TEST ONLINE';
    please calrfiy my following question:
    1. After reimage(reinstall oracle database with application ).The aboove scenario is not working
    2. After fullbackup what are the files needs to copy from (opt/oraclle/base/flash_recovery_area/dbname/) to repository because daily cleanup script will keep the data as sysdate -1 .
    For fullbacckup we are currently copying entire (flash_recovery_area/dbname) database folder to repoistory.
    3. after incremental backup what are the files needs to copy from (opt/oraclle/base/flash_recovery_area/dbname/..) to repository because daily cleanup script will keep the data as sysdate -1
    For incremenatl backup currently we are copying (flash_recovery_area/dbname/backupset/<currentdate> and flash_recovery_area/dbname/autobackup/<currentdate>) folder to repoistory.
    4.During restore we are copy entire things from repository to flash_recovery_area finaly apply the above mentioned restore command.
    Tabelspace incremenatl restore is possible after reimage application server(fresh database)/another server with same database(standby machine) ....?
    If we missing something in backup side please clarify me how to retore the tablespace incremental / level 0 tablespacae after reinstallion of server/another standby server.
    Any information please let me know .I need the solution as soon as please reply as soon as .

    Try the Recovery Manager (RMAN) instead. This forum is for feedback about the 11g XE Beta.

  • About RMAN backup !!!!

    Dear Friends,
    Let my production server running starts from 1st June .
    In 15 june , I take the First rman full (or level0) backup using the command :
    RMAN> backup database plus archivelog;
    In 20 June I take 2nd rman full backup using : RMAN> backup database plus archivelog;
    Again in 30 June , I take the Third(3rd) rman full (or level 0) backup using the command :
    RMAN> backup database plus archivelog;
    And also my rman policy set as :
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    In the above scenario , I have the following questions :
    1) When I take the Third(3rd) backup then is it the First RMAN backup goes to obsolete as per my rman policy ( RETENTION POLICY TO REDUNDANCY 1) ?
    2) Is the above all RMAN backup make a link between them ?
    3) If my first RMAN backup goes to obsolete and I have to delete the First RMAN backup , then which types of problem I face ? Can I go to previous state(suppose I need to back in 1st June) of my server if I delete First rman backup ?
    4) when I take 3rd rman full backup , then is it all information from 1st january of the server are stored in the 3rd backup ? i.e., is the 3rd rman backup stores all the previous two rman backups information ?so that If I delete the previous two backup , then I get all information form 3rd rman backup .what is the actual scenario ......
    plz help me to make clear concept about it .......
    thx in advance .....

    1) When I take the Third(3rd) backup then is it the First RMAN backup goes to obsolete as per my rman policy ( RETENTION POLICY TO REDUNDANCY 1) ?The REDUNDANCY parameter of the CONFIGURE RETENTION POLICY command specifies how many backups of each datafile and control file that RMAN should keep. In other words, if the number of backups for a specific datafile or control file exceeds the REDUNDANCY setting, then RMAN considers the extra backups as obsolete.So as in your case the redundancy is 1 so the 1st and 2nd backup are obsolete.
    To check the obsolete backups run
    rman> report obsolete;
    To delete them
    rman> delete obsolete;
    Link:[http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/setup005.htm#BRBSC400]
    Is the above all RMAN backup make a link between them ?I am not very much clear with the question.The RMAN information is stored in the controlfile.You can also create a new recovery catalog and register the target database. The RMAN repository records in the control file will be copied to the new recovery catalog.
    when I take 3rd rman full backup , then is it all information from 1st january of the server are stored in the 3rd backup ? i.e., is the 3rd rman backup stores all the previous two rman backups information ?so that If I delete the previous two backup , then I get all information form 3rd rman backupThe 3rd RMAN backup will contain all the information of the DB from the very 1st day.You will get all the information in the 3rd rman backup as its a level 0 or what we say a FULL DATABASE BACKUP.If suppose the 3rd rman backup would have been a incremental backup, then you would have required a full backup, previous to the incremental one, so that after restoring the full backup, you restore the incremental to recover the DB completely.
    Link:[http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/part1.htm#i996723]
    [http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/bkup004.htm#BRBSC133]
    Forgot to answer the 3rd question
    3) If my first RMAN backup goes to obsolete and I have to delete the First RMAN backup , then which types of problem I face ? Can I go to previous state(suppose I need to back in 1st June) of my server if I delete First rman backup ?well, i am not very much sure , but i think is , if you have the 1st rman backup pieces physically present on the disk, you can catalog it and then use the rman command to restore the data from it of till 1st june.
    To catalog the backup pieces use
    rman> catalog backuppiece 'filename';
    Link: [http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/maint007.htm]
    HTH
    Anand
    Edited by: Anand... on Oct 15, 2008 10:51 AM

  • Optimized incremental backup in 10g

    Hi,
    I study the http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family.pdf and i have one question about it...
    In "Incremental backup" feature/option there is a note :"SE/XE no optimized incremental backup".
    What are the features of "optimized incremental backup"...????
    Thanks......
    Sim

    I believe that is referring to block change tracking. That allows Oracle to track which blocks have actually changed since the last backup, so RMAN can just read the tracking file and backup those blocks rather than examining each block to see whether it has changed.
    Justin

  • Basic questation about sql backup

    HI all, sorry for my englisch . I have quetstaion about DPM and SQL 2012 database recovery model .
    If I select recovery model simple , that DPM always backup full backup ... This create with vss providera ?
    If I select full backup what work synchranization ? Every log files is copy to replica , and after copy truncate log ? 
    thanx
    Falcon

    For application data that support incremental backups (exchange, SQL Db's in full recovery mode) there are two job types.
    A) Synchronization - This is equivalent of an incremental backup and only brings over log changes.  Each incremental synchronization is equivalent to a recovery point.  Each incremental synchronization results in application log truncation which
    is performed by the application (SQL / Exchange)
     B) Express full - This is equivalent to FULL backup, however only brings over Database changed blocks and applies them to the replica volume then makes a snapshot  Each express full backup is recoverable.  Express full backups do not result
    in log truncation by the application.  There is a 512 snapshot limit for express full backups.
    For applications that do not support incremental backups (SharePoint, SQL Db's in simple recovery mode, Hyper-V VMs)  always use express full backups.
    http://social.technet.microsoft.com/Forums/en-US/b767a3fb-ce59-4599-a92e-2e5e7e1c8b98/help-to-understand-the-difference?forum=dpmfilebackup
    Backing up SQL with DPM
    SCDPM: Backup SQL and Truncate SQL Logs
    Does DPM Clear transaction Log when Backup?
    Have a nice day !!!

  • Time Machine Incremental Backups

    I have just purchased a new MacBook Pro and restored my old MacBook on the new one using my Time Machine backup. Now I want Time Machine to continue backing up using the old backup and not starting a new backup from scratch. In effect, I want Time Machine to do incremental backups. I have read about Time Machine tying the Mac address of the old MacBook to the old backup I already have and as such, my new MacBook will have to create its own backup from scratch. Is there a work around this problem? Any helpful hints are welcome.

    iMinds wrote:
    Thanks for your suggestion. Yes, I did a full system restore, by booting the new Mac from the Leopard Install disc and selecting Utilities then Restore from Backups from the Menubar. What else can I do?
    Eeeeek! You now have the old Mac's entire version of OSX on the new one. I'm surprised it booted up at all. You may not have the correct hardware drivers and other things for the new Mac.
    I'm sorry to say, you need to start over. You need to do an *Erase and Install* using the Leopard Install disc that came with the new Mac, to put the correct version of OSX back on it. Then you can Migrate (transfer) everything else from your TM backups.
    See the *Erase, Install, & Migrate* section of the Glenn Carter - Restoring Your Entire System / Time Machine *User Tip* at the top of this forum.
    Once that's done, TM's next backup will be a full one. Everything you put on the new Mac's internal HD is new *to that Mac* as well as new *to that disk,* and TM's whole role in life is to back up everything that's new or changed. You cannot prevent it.
    Also, your old backups will not appear if you use the normal +Enter Time Machine+ option on the new Mac; you'll need the Browse option as per item #17 of the Frequently Asked Questions *User Tip* at the top of this forum.
    Plus, they won't be deleted by TM as the disk fills up, and it needs room for new backups. So your best bet will probably be, once you're sure everything transferred over properly, to simply erase the TM disk via Disk Utility and let TM start fresh.

  • Incremental backup information

    hi,
    i am using oracle 10g database enterprise edition release 2 in linux rhel 5. i have taken a some incremental backups. now i need to look at the information about the incremental backup? i wanted to know what all the incremental backups that will be used for complete recovery. where can i view those informations?? plz tell me.
    thanks in advance.

    793097 wrote:
    hi,
    i am using oracle 10g database enterprise edition release 2 in linux rhel 5. i have taken a some incremental backups. now i need to look at the information about the incremental backup? i wanted to know what all the incremental backups that will be used for complete recovery. where can i view those informations?? plz tell me.
    thanks in advance.Use LIST BACKUP command
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

Maybe you are looking for

  • HP LaserJet P1005 vs Linux drivers [was a PEBKACH after all]

    Hi, I'm trying to set up my HP Laserjet P1005 printer on Arch.  After some googling I found that the foo2xqx driver should support it -- looking at AUR, I found foo2zjs driver package -- which isn't the same, but after a closer look it seems to inclu

  • Is there an application that will allow adding files to a "Burned Disk"?

    In the Finder, if I burn several folders to a disk, I can not add any additional files later, even though I've used less than 10% of the disk's capacity. Is there any way around this? Some other disk burning application? Patrick

  • "Convert Selection for iPod" Command Increases File Size?

    Hello! I'm trying to convert a file that has the following characteristics (as reported in Quicktime Pro): Format: H.264 Decoder, 496 x 208, Millions, AAC, Stereo (L R), 44.100 kHz FPS: 25 Data Size: 572.20 MB Data Rate: 659.18 kbits/sec Normal Size:

  • Using SAP Business content with different client number

    Hi, I want to use and upload client numbers into SAP BW in an InfoObject as master data. The client number is for example with 9 figures. Can I use the SAP standard InfoObject 0Client for that or is there another one or should I define my own InfoObj

  • Dynamic combination of members in evdre

    Hi How is it possible to restrict the dynamic generation of combinationof members. say In my entity dimension, 5 members, and User defined dimension 5 members, when I am selecting these two dimensions in rows in evdre it is generating 25 combinations