RMAN Report

Hi,
I am using ORACLE 10.2 G. I have done the following on my pc :
ALTER TABLESPACE USERS BEGIN BACKUP;
CREATE TABLE NOTBACKEDUP(ID INTEGER, STR VARCHAR(16)) TABLESPACE USERS;
INSERT INTO NOTBACKEDUP VALUES(1, 'ROW 1');
INSERT INTO NOTBACKEDUP VALUES(2,'ROW 2);
COMMIT;
ALTER TABLESPACE USERS END BACKUP;
How do I view RMAN Report ? I need to print that report.
Thanks .

Hi,
I have never used RMAN before, I need to print a copy of RMAN report to show that work that I provided in my question. How do I start RMAN ? and How Do I print that report ? I am still in dilema with respect to above statement.
Take time and try to refer to the below oracle documentation
http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/bkup008.htm
Note:- Don't be in hurry

Similar Messages

  • RMAN report need backup

    We have an incremental level-1 backup Mon-Sat and cold full backup on Sundays with retention policy of 7 days. While troubleshooting some backup issues (space issue, expired backups) I ran the following commands and trying to understand the output.
    RMAN> report need backup database;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to recovery window of 7 days
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    100 146 /orahprdidx/hprd/psindex05.dbf
    RMAN> report unrecoverable;
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    RMAN> report need backup days = 7 database;
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    100 146 /orahprdidx/hprd/psindex05.dbf
    RMAN> report obsolete recovery window of 7 days;
    no obsolete backups found
    RMAN>
    I looks like I need 146 days worth of archive log files to recover the psindex05.dbf. If so, what I could do to bring that into the 7 days policy?
    The database is fine, I am not trying to recover the database.
    This was setup by someone and now I am taking over with minimum RMAN experience.
    I appreciate any help in this subject.

    The datafile was offline. I guess it was created my mistake and hanging in there. Once I do the cleanup it should go away.

  • RMAN REPORT OPTIONS

    i do not really understand the 'redundancy' option of rman report command.
    like the one below:
    RMAN> REPORT NEED BACKUP REDUNDANCY 2;
    please, i don't understand what the word 'redundancy' means here.
    I need help please.
    thank you

    Think of redundancy as number of full backups.
    Redundancy 1 is 1 backup ago.
    Redundancy 2 is 2 backups ago.

  • Rman - "report unrecoverable" concept

    Hi
    I am readin g a book on rman (rman recipes 11g from APress).
    I m not able to understand what is the purpose of "report unrecoverable" command. Book says:
    >
    Ref: Section 8.3 - page# 229:
    You want to identify which datafiles have been affected by unrecoverable operations, since RMAN needs to back up those files as soon as possible after you perform an unrecoverable operation.
    Use the report unrecoverable command to find out which datafiles in the database have been marked unrecoverable because they’re part of an unrecoverable operation. Here’s an example showing how to use the report unrecoverable command:
    RMAN> report unrecoverable;
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    1 full /u01/app/oracle/data/prod1/example01.dbf
    RMAN>Could someone please give example of unrecoverable operation(s)? And how could rman/oracle know before hand if such an unrecoverable operation is going to be performed on certain datafile(s)?
    Thanks

    user12033597 wrote:
    Hi
    I am readin g a book on rman (rman recipes 11g from APress).
    I m not able to understand what is the purpose of "report unrecoverable" command. Book says:
    Ref: Section 8.3 - page# 229:
    You want to identify which datafiles have been affected by unrecoverable operations, since RMAN needs to back up those files as soon as possible after you perform an unrecoverable operation.
    Use the report unrecoverable command to find out which datafiles in the database have been marked unrecoverable because they’re part of an unrecoverable operation. Here’s an example showing how to use the report unrecoverable command:
    RMAN> report unrecoverable;
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    1 full /u01/app/oracle/data/prod1/example01.dbf
    RMAN> Could someone please give example of unrecoverable operation(s)? And how could rman/oracle know before hand if such an unrecoverable operation is going to be performed on certain datafile(s)?
    Thanks A datafile or tablespace are set to unrecoverable if any operation that had been performed (since the last backup taken on these datafiles) on datafile or tablespace that are unrecoverable.
    A little explanation:
    When ever a operation occurs on database i.e. any dml occurs on tables, these operation generates REDO information in redolog files. So when someone explicitly disable the logging information to redologfile(by hint no_logging), then datafile is marked as unrecoverable.
    Oracle says it unrecoverable because oracle cannot perform recovery by reading from redologfile or archivefiles if datafile crashes and need a recovery. Thats why rman warns you about such operation which could have taken place and point you to datafile which had these operation performed. The operations which are unrecoverable are:
    1) direct load/SQL load
    2) direct-path inserts result from insert or merge statement
    3) ALTER TABLE commands
    4) CREATE and ALTER INDEX commands
    5) INSERT /*+APPEND*/
    6) partition manipulation
    7) database object that has explicitly set with nologging option
    8) Oracle eBusiness Suite concurrent job execution identified in Oracle metalink note: 216211.1
    8) Oracle eBusiness Suite patches activities that involve database object manipulation
    9) SQL*loader with nologging
    So once you take the full backup of datafiles (which are affected by these operation) will clearout the Unrecoverable warning. Because now oracle has the backup of these files.
    What preventions you can take for not making datafile to Unrecoverable?
    Use force_logging
    Also see
    http://www.pythian.com/news/7401/oracle-what-is-an-unrecoverable-data-file/
    Hope this help you in understanding

  • RMAN reports

    Hi - need some tips on generating useful RMAN reports. (Not using Recovery Catalog).
    SQL> select input_type,
      2  round(output_bytes/1024/1024,2) "MB",
      3  status,
      4  start_time,
      5  end_time,
      6  time_taken_display "Total Time"
      7  from v$rman_backup_job_details;
    INPUT_TYPE              MB STATUS          START_TIME END_TIME   Total Time
    DB INCR             191,63 COMPLETED       15.04.2011 15.04.2011 00:01:05
    1 row selected.As you can see this was a incremental backup. But I would like to know what level and what type of incremental backup that was used. I have tried to search through all the v$rman views but cannot find anything that would give me that information.
    Is it not possible to get that kind of information from the database views?
    Thanks in advance.

    Hemant K Chitale wrote:
    But I would like to know what level and what type of incremental backup that was used.Unfortunately no. If you run a BACKUP .. INCREMENTAL -- whether it is LEVEL 0 or LEVEL 1 -- it is reported as "DB INCR". So, you can't distinguish between L0 and L1 backups !
    You have to cross-check the times with your own backup schedules (e.g. you know when L0 backups are scheduled and when L1 backups are scheduled) OR backup run logs (using the LOG option or capturing the screen output).
    Hemant K ChitaleHerman,
    I tested tychos's solution (querying v$backup_set_details), and it looks Ok to me?

  • Unrecoverable_change# and rman report unrecoverable

    I am running a test db oracle 11gR2 on windows server 2008.
    I am running oracle suggested backup strategy for my backup operation.
    So every night i run incremental backup and apply the previous incremental to image copies.
    I am confused on why when i run a query like
    select file#,name,unrecoverable_change#,unrecoverable_time from v$datafile
    i have atleast one or two datafiles whose unrecoverable_change# and unrecoverable_time value is not 0.
    Whether the operation was in nologging or not, since i have a incremental backup, why is the above value not 0??
    However when i run in rman,
    report unrecoverable;
    rman does not report anything. So whats the difference b/w rman unrecoverable and the one from v$datafile??
    can someone help me understand the correct concept of unrecoverable_change#??
    Thanks.

    Yes , this is right. At least with Oracle XE as show in following test case:
    SQL> select name, unrecoverable_change#, unrecoverable_time from v$datafile where file#=1;
    NAME
    UNRECOVERABLE_CHANGE# UNRECOVER
    C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
                        0
    SQL> select name, unrecoverable_change# UC, unrecoverable_time UT from v$datafile where file#=1;
    NAME
            UC UT
    C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
             0
    SQL> desc t;
    ERROR:
    ORA-04043: object t does not exist
    SQL> create table t(x int) nologging;
    Table created.
    SQL> insert /*+ APPEND */ into t select object_id from dba_objects;
    12616 rows created.
    SQL> commit;
    Commit complete.
    SQL> select name, unrecoverable_change# UC, unrecoverable_time UT from v$datafile where file#=1;
    NAME
            UC UT
    C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
       2004176 16-SEP-10
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    C:\>rman target /
    Recovery Manager: Release 10.2.0.1.0 - Production on Thu Sep 16 20:59:51 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    connected to target database: XE (DBID=2607125346)
    RMAN> report unrecoverable;
    using target database control file instead of recovery catalog
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    1    full or incremental     C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
    RMAN> backup incremental level 1 datafile 1;
    Starting backup at 16-SEP-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=25 devtype=DISK
    channel ORA_DISK_1: starting incremental level 1 datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
    channel ORA_DISK_1: starting piece 1 at 16-SEP-10
    channel ORA_DISK_1: finished piece 1 at 16-SEP-10
    piece handle=C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\BACKUPSET\2010_09_16\
    O1_MF_NNND1_TAG20100916T210031_694TBHLT_.BKP tag=TAG20100916T210031 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting incremental level 1 datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current control file in backupset
    including current SPFILE in backupset
    channel ORA_DISK_1: starting piece 1 at 16-SEP-10
    channel ORA_DISK_1: finished piece 1 at 16-SEP-10
    piece handle=C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\BACKUPSET\2010_09_16\
    O1_MF_NCSN1_TAG20100916T210031_694TC04T_.BKP tag=TAG20100916T210031 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
    Finished backup at 16-SEP-10
    RMAN> report unrecoverable;
    Report of files that need backup due to unrecoverable operations
    File Type of Backup Required Name
    RMAN>And you still have:
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 16 21:08:27 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> select name, unrecoverable_change# UC, unrecoverable_time UT from v$datafile where file#=1;
    NAME
            UC UT
    C:\ORACLEXE\ORADATA\XE\SYSTEM.DBF
       2004176 16-SEP-10Edited by: P. Forstmann on 16 sept. 2010 21:07

  • RMAN report to a table

    Hello,
    is there a way to create a RMAN report for all the backups that are being done in different databases and that report should be directly writing to a sample table.
    the report should contain the colums like -
    DBNAME BKPTYPE DATE STATUS STARTTIME ENDTIME .. and so on..
    i've tried using some v$views like V$RMAN_BACKUP_JOB_DETAILS,V$RMAN_BACKUP_JOB_DETAILS,V$BACKUP_SET_DETAILS. etc... but i need a some sql or pl/sql that should give me the complete report.
    thanks,
    vinay

    Hi Vinay,
    are you using recovery catalog then you can generate the backup report for all databases using the following query.
    select
    session_key, db_name,
    min(r.start_time) start_rman,
    min(c.checkpoint_time) start_controlfile,
    min(d.checkpoint_time) start_datafile,
    min(a.first_time) start_archivelog,
    max(a.next_time) end_archivelog,
    min(b.start_time) start_set,
    max(b.completion_time)
    end_set, min(p.start_time)
    start_piece, max(p.completion_time) end_piece
    from
    rman.rc_backup_controlfile_details c
    join
    rman.rc_backup_datafile_details d
    on c.session_key = d.session_key
    join
    rman.rc_backup_archivelog_details a
    on c.session_key = a.session_key
    join
    rman.rc_backup_set_details b
    on c.session_key = b.session_key
    join
    rman.rc_backup_piece_details p
    on c.session_key = p.session_key
    join
    rman.rc_rman_backup_job_details r
    on c.session_key = r.session_key
    where
    db_key =
    (select db_key
    from rman.rc_database
    where name = 'alice1')
    and
    c.checkpoint_time >sysdate-14
    and
    d.checkpoint_time >sysdate-14
    and
    r.start_time >sysdate-14
    and
    a.first_time >sysdate-14
    and
    b.start_time >sysdate-14
    and
    p.start_time >sysdate-14
    and
    a.next_time >sysdate-14
    and
    b.completion_time >sysdate-14
    and
    p.completion_time >sysdate-14
    group by
    session_key,
    db_name;
    Regards,
    Jey

  • OEM and rman reporting

    Good Morning.
    I've just installed Grid Control 11g, and have it successfully monitoring several of our databases.
    One of the pages shows the database RMan backups. Is it possible to get these eMailed out ?
    The databases are backed up using RMan, but there is no catalog involved. Is it possible to get the RMan stats out (Such as size, speed, time taken, successful or not from the control file), in which case I should be able to write my own report out, and have these eMailed out..
    Thanks in advance
    KEv

    user8705047 wrote:
    Good Morning.
    I've just installed Grid Control 11g, and have it successfully monitoring several of our databases.
    One of the pages shows the database RMan backups. Is it possible to get these eMailed out ?
    Yes you can get that .
    Create a job of type RMAN and then configure email notification for that.
    Regards
    Rajesh

  • RMAN reporting using SQL*PLUS

    I am trying to create a report that will take some of the rman schema views/tables and put it in a specified format for a report. I need to get the database name, start day and time, end day and time, how long the backup took in seonds, the backup status and the number of bytes of the backup. I also need it to span 2 days, i.e 6pm yeterday to 8am today. So far here is what I have:
    select a.name,
    to_char(MIN(b.start_time), 'MM-DD-YYYY') as "Start_Day",
    to_char(MIN(b.start_time), 'HH24:MI:SS') as "Start_Time",
    to_char(MAX(b.completion_time), 'MM-DD-YYYY HH24:MI:SS') as "End Day",
    SUM(b.elapsed_seconds) as "Seconds",
    b.status
    from rman.rc_database a, rman.rc_backup_set b
    WHERE a.DB_KEY = B.DB_KEY
    AND a.DBID = B.DB_ID
    AND trunc(b.Start_time) = trunc(sysdate)
    GROUP BY a.name, b.status
    order by 2,3,1
    It only works for the current day and I can't seem to find the byte size for the backup piece. Any suggestions on how this should work I would relly appreciate it.

    This is not a right forum to post your problem. This is SQL PL/SQL forum.
    Please post it in Database General Forum.
    Regards.
    Satyaki De.

  • RMAN reporting of Netapp Snapshots

    Hi,
    The database snapshots taken using Netapp are diverted to RMAN catalog repository. Is there a way, where we can run the reports on which backup is failed/successful using RMAN.
    Thanks

    user13674606 wrote:
    Hi,
    The database snapshots taken using Netapp are diverted to RMAN catalog repository. Is there a way, where we can run the reports on which backup is failed/successful using RMAN.
    Thanksfor Backup sets and proxy copies the command is: LIST BACKUP :     (You can list all backup sets, copies, and proxy copies of a database, tablespace, datafile, archived redo log, control file, or server parameter file.)
    for Image copies the command is: LIST COPY : (You can list datafile copies and archived redo log files. By default, LIST COPY displays copies of all database files and archived redo logs. Both usable and unusable image copies are included in the output, even those that cannot be restored or are expired or unavailable.)
    for Archived redo log files: the command is LIST ARCHIVELOG (You can list archived redo log files.)
    Query the V$RMAN_BACKUP_JOB_DETAILS view for information about the backup type, status, and start and end time. The status column of this view STATUS, This column has One of the following values:
    * RUNNING WITH WARNINGS
    * RUNNING WITH ERRORS
    * COMPLETED
    * COMPLETED WITH WARNINGS
    * COMPLETED WITH ERRORS
    * FAILED
    http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmreprt.htm#CHDIDAEC
    http://download.oracle.com/docs/cd/E18283_01/server.112/e17110/dynviews_2142.htm#REFRN30391

  • Rman :: report backup tag= ??

    hello all,
    few weeks back i took a full backup of my database using rman and specified a tag like ' %weekly.......%' . Now i dont remember the name of the tag.
    how would i find the TAG ?. I checked the TAG column in v$backup_piece, but to no use.
    TIA,
    JJ

    but list backup summary did not get me the tag !!How no??
    The 'list backup summary' show the TAG yes...
    LIST BACKUP SUMMARY;
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Tag
    35 B A A SBT_TAPE FEB 08 2002 05:37:37 1 1 TAG20020208T053733
    42 B F A SBT_TAPE FEB 08 2002 05:38:21 1 1 TAG20020208T053744

  • RMAN report/list query

    Does anyone have a query or script that goes into the RMAN catalog and gets the same type information (database backup info, status, dates, duration, etc) for databases 8i and 9i?

    i am looking for something like this , for all 300+ dbs from RMAN Catalog , any idea?
    HOSTNAME DB_SID START_TIME END_TIME BKP_STATUS BKP_TYPE
    padb01 cmd 09/24/08 02:32 09/24/08 02:39 OK hot
    adb01 amp 09/24/08 01:09 09/24/08 01:15 OK hot
    arcs01 arsp 09/24/08 00:30 09/24/08 04:58 OK hot
    radb01 arp 09/23/08 22:00 09/23/08 22:20 OK hot
    otle bkerp 09/23/08 22:00 09/23/08 22:07 OK hot
    adb01 bsd 09/23/08 22:59 09/23/08 23:17 OK hot
    wradb01 cp 09/23/08 22:00 09/23/08 22:07 OK hot

  • Rman - backups not reporting obsolete

    Hi,
    Please see below of our now cleaned up rman catalog:
    RMAN> list backup of database summary;
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
    1531 B 0 A DISK 20-APR-10 1 1 YES TAG20100420T172430
    1543 B F A DISK 15-AUG-11 1 1 NO TAG20110815T140126
    1549 B F A DISK 15-AUG-11 1 1 NO TAG20110815T144719
    1553 B F A DISK 15-AUG-11 1 1 NO TAG20110815T160724
    1557 B F A DISK 15-AUG-11 1 1 NO TAG20110815T170223
    RMAN> report obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 1
    Based on the fact I see five backups of our current database (produced with "backup database") and we see "retention policy is set to redundancy 1", I would expect to see four backups reported, however the next line is:
    no obsolete backups found;
    Naturally, my scheduled "delete noprompt obsolete" never seems to remove anything. Any advise appreciated.

    Hi,
    Please post here the script that you use to perform this backup.
    Check if you are using KEEP UNTIL clause.
    DELETE OBSOLETE Behavior When KEEP UNTIL Time Expires
    If the KEEP UNTIL TIME period has not expired for an archival backup, RMAN does not consider the backup as obsolete. As soon as the KEEP UNTIL period expires, however, the backup is immediately considered to be obsolete, regardless of any configured backup retention policy. Thus, DELETE OBSOLETE deletes any backup created with BACKUP ... KEEP UNTIL TIME if the KEEP time has expired.
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV89640
    V$BACKUP_FILES
    KEEP- Indicates whether the backup has a retention policy different from the value for CONFIGURE RETENTION POLICY (YES) or not (NO)
    KEEP_UNTIL - If the KEEP UNTIL TIME clause of the BACKUP command was specified, then this column shows the date after which the backup becomes obsolete. If the column is null and KEEP_OPTIONS is not null, the backup never becomes obsolete.V$BACKUP_FILES displays information about all RMAN backups (both image copies and backup sets) and archived logs.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17110/dynviews_1057.htm#REFRN30022
    Regards,
    Levi Pereira
    Edited by: Levi Pereira on Aug 17, 2011 12:07 AM
    Edited by: Levi Pereira on Aug 17, 2011 12:11 AM - Add V$BACKUP_FILES

  • RMAN Issue

    I am having issue with RMAN
    I have Oracle 11gR2 database on HP-UX. when I issue any command in RMAN prompt, its displaying the information but it's not returning to RMAN prompt, I have to hit CTRL+C to come out. But I have 2 more database on the same home, and I don't have this problem on that database.
    oracle@hublhp10:/home/oracle$ rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Mon Mar 19 15:00:53 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: IMGPROD (DBID=2867365220)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name IMGPROD are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/imgback/RMAN/cf-IMGPROD-%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/imgback/RMAN/snapcf_imgprod.f';
    RMAN>
    RMAN> report obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 1
    Report of obsolete backups and copies
    Type                 Key    Completion Time    Filename/Handle
    Archive Log          1      19-MAR-12          /imgarch/ORACLE/imgprod/al_imgprod_1_283_777982948.dbf

    I traced the session, see the following
    WAIT #2: nam='control file sequential read' ela= 143 file#=0 block#=17 blocks=1 obj#=-1 tim=11750515395399
    WAIT #2: nam='control file sequential read' ela= 143 file#=0 block#=1 blocks=1 obj#=-1 tim=11750515395853
    WAIT #2: nam='control file sequential read' ela= 144 file#=0 block#=15 blocks=1 obj#=-1 tim=11750515396024
    WAIT #2: nam='control file sequential read' ela= 145 file#=0 block#=17 blocks=1 obj#=-1 tim=11750515396192
    WAIT #2: nam='control file sequential read' ela= 206 file#=0 block#=1 blocks=1 obj#=-1 tim=11750515396719
    WAIT #2: nam='control file sequential read' ela= 142 file#=0 block#=15 blocks=1 obj#=-1 tim=11750515396909
    WAIT #2: nam='control file sequential read' ela= 168 file#=0 block#=17 blocks=1 obj#=-1 tim=11750515397102
    FETCH #2:c=0,e=16905,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=818693323,tim=11750515397527
    WAIT #2: nam='SQL*Net message from client' ela= 450 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=11750515398178
    CLOSE #2:c=0,e=27,dep=0,type=3,tim=11750515398262
    =====================
    PARSING IN CURSOR #4 len=205 dep=0 uid=0 oct=3 lid=0 tim=11750515399507 hv=1796820951 ad='c0000004fe449f88' sqlid='gq4u3dppjkmyr'
    select /*+ rule */ round(sum(MBYTES_PROCESSED)), round(sum(INPUT_BYTES)), round(sum(OUTPUT_BYTES)) from V$RMAN_STATUS START WITH RECID = :row_id and STAMP = :row_stamp CONNECT BY PRIOR RECID = parent_recid
    END OF STMT
    PARSE #4:c=0,e=556,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=0,tim=11750515399506

  • Error while running commands at RMAN prompt

    Hi ,
    We have a few oracle 10g(10.2.0.3) databases on AIX platform.We use RMAN backup with a recovery catalog database.
    The rman full(level 0)backups are scheduled dailly and running fine.When I tried to run commands like 'list backup','report obsolete' I'm getting the following errors.
    connected to target database: TICSPROD (DBID=2626621498)
    connected to recovery catalog database
    RMAN> report obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 3
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of report command at 08/04/2011 07:49:36
    RMAN-06004: ORACLE error from recovery catalog database: ORA-03113: end-of-file on communication channel
    ORACLE error from recovery catalog database: ORA-03114: not connected to ORACLE
    RMAN> list backup;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of list command at 08/04/2011 07:56:25
    RMAN-06004: ORACLE error from recovery catalog database: ORA-03113: end-of-file on communication channel
    ORACLE error from recovery catalog database: ORA-03114: not connected to ORACLE
    But the recovery catalog database is up and running fine.For few other databases I'm able to run the above commands without errors and for some databases I'm getting the errors as mentioned above.
    Could someone help me out with this...

    Thanks Tycho for your reply.
    Please find the output of the query in recovery catalog.
    SQL> select * from v$resource_limit;
    RESOURCE_NAME CURRENT_UTILIZATION MAX_UTILIZATION INITIAL_AL LIMIT_VALU
    processes 49 83 5000 5000
    sessions 30 63 5505 5505
    enqueue_locks 27 94 65910 65910
    enqueue_resources 27 73 24440 UNLIMITED
    ges_procs 0 0 0 0
    ges_ress 0 0 0 UNLIMITED
    ges_locks 0 0 0 UNLIMITED
    ges_cache_ress 0 0 0 UNLIMITED
    ges_reg_msgs 0 0 0 UNLIMITED
    ges_big_msgs 0 0 0 UNLIMITED
    ges_rsv_msgs 0 0 0 0
    gcs_resources 0 0 0 0
    gcs_shadows 0 0 0 0
    dml_locks 0 76 24220 UNLIMITED
    temporary_table_locks 0 3 UNLIMITED UNLIMITED
    transactions 1 10 6055 UNLIMITED
    branches 0 0 6055 UNLIMITED
    cmtcallbk 0 1 6055 UNLIMITED
    sort_segment_locks 0 5 UNLIMITED UNLIMITED
    max_rollback_segments 11 11 6055 65535
    max_shared_servers 20 20 800 800
    parallel_max_servers 0 32 320 3600
    22 rows selected.
    The alert log of the catalog database is continously getting refreshed with the following message.
    Incremental checkpoint up to RBA [0x3b3.a780.0], current log tail at RBA [0x3b3.a78f.0]
    Mon Aug 8 00:16:17 2011
    Incremental checkpoint up to RBA [0x3b3.abf8.0], current log tail at RBA [0x3b3.ac4f.0]
    Mon Aug 8 00:46:19 2011
    Incremental checkpoint up to RBA [0x3b3.1451b.0], current log tail at RBA [0x3b3.1451b.0]
    Mon Aug 8 01:16:21 2011
    Incremental checkpoint up to RBA [0x3b3.14b15.0], current log tail at RBA [0x3b3.14baa.0]
    Mon Aug 8 01:46:23 2011
    Incremental checkpoint up to RBA [0x3b3.14be1.0], current log tail at RBA [0x3b3.14bf0.0]
    Mon Aug 8 02:16:25 2011
    Incremental checkpoint up to RBA [0x3b3.15069.0], current log tail at RBA [0x3b3.150a9.0]
    Mon Aug 8 02:46:27 2011
    Incremental checkpoint up to RBA [0x3b3.150ed.0], current log tail at RBA [0x3b3.150ed.0]
    What could be the potential cause of the issue I'm facing .Could you please guide me...

Maybe you are looking for

  • Lightroom disappears after export to Photoshop

    Am working with Lightroom 2.0 on a PowerMac G5, 4 g RAM, ATI Radeon 9800 XT, OS 10.5.4. Each time I send an image out from Lightroom for editing in Photoshop, do a SAVE in PSCS3 and try to return to Lightroom, the browser window is gone and I can't g

  • Stereo speakers to audio video hook ups

    is it possible to hook up stereo speakers by themselves to the back of my tv...how do i convert to speaker wire to audio jacks. what do i need to do this with Solved! Go to Solution.

  • TS1389 How do I authorize my computer for an Audible Account?

    I have authorized my computer for iTunes but when trying to add an audio book to my library, I keep being asked to authorize my "Audible" account.  It seems my standard iTunes Account is not the same thing.

  • Calling servlet problem in iPlanet web server.

    Hello, friends. I have installed iPlanet web server 6.0. After installation I am using the default virtual server only. Thus, for all testing pages also, I use the default Document Root only (C:\iplanet\servers\docs\testsite) (I think, here "docs" is

  • NAC Inband Layer 2 VG

    Hello Dear's, My company ordered NAC and ACS 1120 My question is Can i configure 802.1X security through ACS server and NAC in layer 2 Inband Virtual Gateway.for campus switches. Is it the good design to have double security for switch ports. 1st is