Saturday, January 19, 2013


Automatic Shared Memory Management in Oracle 10g

Oracle instance in memory consists of two major areas SGA (system/shared global area)and PGA (program/private global area). The SGA is shared by all sessions and consists of a few pools for different purposes. A few of them are as follows:

1. DEFAULT buffer cache :- used to store oracle data blocks when they are read or updated.
2. DEFAULT nK buffer cache :- used to store oracle data blocks having different size then the default block size (db_block_size) - (non -ASMM)
3. KEEP buffer cache :- used to store oracle data blocks from the objects which are not supposed to age out from memory. (non -ASMM)
4. RECYCLE buffer cache :- used to store oracle data blocks from the objects which are not supposed to be kept in the memory. (non -ASMM)
5. log buffer cache :- used to store redo entries to reconstruct the operations in case of an instance crash. (non -ASMM)
6. shared pool :- used to parse and store session queries, define execution plans for queries etc.
7. large pool :- used for backup/recovery operations and batch job processing etc.
8. java pool :- All session's java related activities are done here.
9. streams pool :- used for oracle streams.

Sizing these pools manually in the SGA is a great pain and it is almost impossible to use all available memory efficiently to different pools. Lets take a scenario where the database is being used for OLTP application in the daytime and there are some huge batch jobs scheduled to run every night. We have 1G of memory available for SGA out of which we have given 400m to the DB Buffer Cache, 300m to Shared Pool, 100m to Large Pool and rest of the memory i.e. 200m to other pools in the SGA.

In the daytime the DB Buffer Cache is being used extensively for OLTP transactions and a very little of Large Pool say 5 to 10 megabytes. Keeping this in view, even when DB Buffer Cache is in contention and 400m is not sufficient enough for it we are wasting a lot of memory in Large Pool where nothing is being happening.

While during nights when there is no OLTP activity and we need more memory for Large Pool, a lot of memory is being wasted in the DB Buffer cache.
Having this problem in hand now lets go through the ASMM (Automatic Shared Memory Management) feature introduced in Oracle 10g and see how it can help us with our problem.

ASMM when switched on, it controls the sizes of the certain components in the SGA by making sure they get the memory they need and it does that by shrinking the components which are not using all of memory allocated to them and growing the ones which need more then the allocated memory. ASMM adopts to the workload changes and maximize the utilization of the memory. This happens with the help of MMAN (Memory Manager) background process which is all the time capturing the workload during the instance run and uses the memory advisers to decide what should be size of components.

Components like db_nk_caches, keep/recycle buffer cache and log buffer cache are manually tuned. ASMM does the auto tuning for the following pools:

1. DEFAULT buffer cache
2. Shared Pool
3. Large Pool
4. Java Pool
5. Streams Pool (10g R2+)

When ASMM is disabled the following initialization parameters are used to set the sizes for auto tuned pools in SGA. In oracle 10g these initialization parameters are called "auto tuned parameters".

1. db_cache_size
2. shared_pool_size
3. large_pool_size
4. java_pool_size
5. streams_pool_size

To switch to ASMM you need to set the initialization parameters SGA_TARGET to a non-zero value which must be less than or equal to value of parameter SGA_MAX_SIZE.

$ sqlplus / as sysdba
SQL> alter system set sga_max_size=1G scope=spfile;
System altered.
SQL> alter system set sga_target=500m scope=both;
System altered.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
 Total System Global Area 1073741824 bytes
Fixed Size                  1223540 bytes
Variable Size             738198668 bytes
Database Buffers          327155712 bytes
Redo Buffers                7163904 bytes
Database mounted.
Database opened.
SQL> show parameter sga_target
 NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
sga_target                  big integer 500M
SQL> show parameter sga_max_size
 NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
sga_max_size                big integer 1G
SQL>

According to the configuration we just made the SGA_TARGET is 500m, which means that the total size of SGA will be 500m and after allocating the defined sizes to the non-auto tuned pools and memory areas Oracle will dynamically manage all the auto tuned pools in the remaining memory space. But the total size of the SGA will never exceed 500m. I have met people having a perception that sga_target is the limit for the SGA but if the current_sizes are not enough for the components in the SGA it may grow upto sga_max_size which is incorrect. The SGA will stay in the boundaries of sga_target, period.
The reason why sga_max_size is usually larger then sga_target is the relationship between these two and the static nature of the sga_max_size parameter. Lets say you have set both sga_target and sga_max_size to 500m initially but later on after a couple of months you find out that 500m is not enough memory for your components to be managed in an efficient manner. Now if you want to increase the sga_taget to 1G, you will have to increase the sga_max_size to 1G also because sga_target cannot be larger then sga_max_size. But othe other hand if initially you set sga_target to 500m and sga_max_size to 1G then you have a window of at lease 500m to increase your sga_target without shutting down your database. sga_max_size is nothing more then a maximum limit which defines how big your sga_target can be, it doesn't effect memory allocation for the SGA in the oracle instance. Whenever an oracle instance is started it allocates the SGA memory equal to the value of sga_target, so it doesn't really matter how big you set your sga_max_size.

Now lets come back to our example where we have set sga_target to 500m, it doesn't mean all of this 500m will be used for auto tuned pools. The memory that will be used for the auto tuned pools is (sga_target - sum of non-auto tuned areas sizes). ASMM is not suppose to touch the size of manually tuned memory areas. If the total size of all non-auto tuned areas (log buffer cache, keep/recycle buffer cache etc) is 100m, then rest of 400m will be used for adjusting the sizes of auto tuned pools according to the workload.

After we enable the automatic memory management Oracle start managing the pools for us and set reasonable sizes for all the pools according to their nature and the type of work they do. Lets have a look at the current allocation of the auto tuned pools:

$ sqlplus / as sysdba
 SQL> show parameter db_cache_size
 NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
db_cache_size               big integer 0
SQL> show parameter pool_size
 NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
global_context_pool_size    string
java_pool_size              big integer 0
large_pool_size             big integer 0
olap_page_pool_size         big integer 0
shared_pool_size            big integer 0
streams_pool_size           big integer 0
SQL>     
           
SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
 COMPONENT                          SIZE_MB
------------------------------- ----------
shared pool                            172
large pool                               4
java pool                                4
streams pool                             0
DEFAULT buffer cache                   292

Notice all the auto tuned parameters are set to 0 (we will discuss about this later). v$sga_dynamic_component shows us the current sizes of all these components in SGA. If we sum them up (172 + 4 + 4 + 292 = 472) is the total size where auto tuning is suppose to happen. Rest of 28m is for other areas in SGA like log buffer, keep/recycle cache sizes and any db_nk_cache_sizes if configured. Now lets open another console and connect with a normal oracle user to put the ASMM to the test.

 /*  This is another console where we login with user scott. The sysdba session is still intact in the other console. */

$ sqlplus scott/tiger@mydb
 SQL> create or replace package myPack
  2     is
  3      TYPE myType is table of char(2000) index by binary_integer;
  4      myTable myType;
  5     end;
  6       /
 Package created.

 SQL> begin
  2    for i in 1..100000 loop
  3       myPack.myTable(i) := i; 
  4    end loop;
  5  end;
  6  /
 PL/SQL procedure successfully completed.
 SQL> exit 

I established this session using shared server mode, so any variables I declare will be stored in the Large Pool where my UGA is being maintained. I created a packaged PL/SQL table of type char(2000) and inserted 100000 records in it. Being char(2000) each element's size is 2000 bytes no matter hat I assign to it. Hence after the population of the PL/SQL it is going to be around 200m(200*100000 bytes) in size. Since it is a packaged variable, so it is gonna stay in my Large Pool until I exit out the session. Once I exit from the session the variable should be cleaned out releasing space from Larg Pool.

/* Now we are back to the sysdba session */

SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
 COMPONENT                             SIZE_MB
---------------------------------- ----------
shared pool                               132
large pool                                232
java pool                                   4
streams pool                                0
DEFAULT buffer cache                      104
Notice the current size of all these pools. It is clear now that when Large Pool needed space Oracle squeezed both buffer cache and shared pool and gave required space to large pool. Also notice (132 + 232 + 4 + 104 = 472). Now these sizes will stay like this until any pool needs more memory then it has and that is when these sizes will adjust again.
Lets go back to our normal session and create a heavy work load on Default buffer cache

/* Open another console and connect with a normal oracle user. The sysdba session is still open in the other console. */

$ sqlplus scott/tiger@mydb
SQL> create table big_table as select * from all_objects;
Table created.
SQL> insert into big_table select * from big_table;
40697 rows created.
SQL> /
81394 rows created.
SQL> /
162788 rows created.
SQL> /
325576 rows created.
SQL> /
651152 rows created.
SQL> /
1302304 rows created.
SQL> commit;
Commit complete.
SQL> analyze table big_table compute statistics;
Table analyzed.
SQL> select table_name , round(blocks*8192/1024/1024,2) size_mb
  2  from user_tables
  3  where table_name = 'BIG_TABLE';
TABLE_NAME                        SIZE_MB
------------------------------ ----------
BIG_TABLE                          283.21
SQL> 

We have processed about 1.3 million rows here in the table big_table which is 283m in size i.e quite larger then the whole buffer cache as its current size is 104m. When these queries are processed there is an extensive aging out and loading of rows from big_table in buffer cache causing high physical reads and low cache hit ratio. MMAN (memory manager) captures it and signals the adjustment in the size of buffer cache as there is a plenty of free space in Large Pool. Lets go back to sysdba session and see what are the current sizes of these components.

/* Now we are back to the sysdba session */

SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
COMPONENT                              SIZE_MB
----------------------------------- ----------
shared pool                                108
large pool                                   4
java pool                                    4
streams pool                                 0
DEFAULT buffer cache                       356

See the buffer cache is larger the all others. The free space has been taken away from Large Pool and even some from Shared Pool also to accommodate heavy workload on buffer cache. As the current component sizes stand (108 + 4 + 4 + 356 = 472) Oracle is managing then within the boundary of 472m.

The dynamically adjusted sizes are retained through instance shutdowns if you are using server parameter file (i.e. spfile).

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1073741824 bytes
Fixed Size                  1223540 bytes
Variable Size             671089804 bytes
Database Buffers          394264576 bytes
Redo Buffers                7163904 bytes
Database mounted.
Database opened.

SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
COMPONENT                            SIZE_MB
--------------------------------- ----------
shared pool                              108
large pool                                 4
java pool                                  4
streams pool                               0
DEFAULT buffer cache                     356
Note:- Even after a shutdown and restart the components are of the same size. 

 SQL> SELECT
  2     a.ksppinm "Parameter",
  3     b.ksppstvl "Value"
  4  FROM
  5     x$ksppi a,
  6     x$ksppsv b
  7  WHERE
  8     a.indx = b.indx AND
  9     a.ksppinm LIKE '/_/_%' escape '/' AND
 10    (a.ksppinm LIKE '%db_cache_size%' 
 11     OR a.ksppinm LIKE '%pool_size%');
Parameter                      Value
------------------------------ ----------
__shared_pool_size             113246208
__large_pool_size              4194304
__java_pool_size               4194304
__streams_pool_size            0
__db_cache_size                373293056

How is this happening? Actually whenever these components size is changed it is updated in undocumented siblings of auto tuned parameters. On the instance start up these undocumented parameters are read and the components are allocated accordingly. The above query shows how to read undocumented oracle parameters and their values from tables x$ksppi (contains parameter names) and x$ksppsv (contains parameter values for the instance) owned by sys

Here are some other useful columns in the view v$sga_dynamic_components where you can see the Operations have been happening with these components along their minimum and maximum sizes.

SQL> set lines 10000
SQL> column component format a20
SQL> select component , round(current_size/1024/1024,2) size_mb, 
  2  LAST_OPER_TYPE, OPER_COUNT, MIN_SIZE, MAX_SIZE
  3  from v$sga_dynamic_components
  4  where component like '%pool' 
  5  OR component ='DEFAULT buffer cache';
COMPONENT            SIZE_MB LAST_OPER_TYP OPER_COUNT 
-------------------- ------- ------------- ---------- 
shared pool              112 GROW                   1  
large pool                 4 SHRINK               114
java pool                  4 STATIC                 0
streams pool               0 STATIC                 0
DEFAULT buffer cache     352 GROW                 115
SQL> 

A few more things to know about ASMM:

When the ASMM is switched all auto tuned parameter sizes are managed by the oracle it self and any sizes manually defined for these parameters are no more considered as the max size that component may have, rather it is considered as a minimum size for that component.

$ sqlplus / as sysdba
 SQL> show parameter db_cache_size
 NAME                       TYPE        VALUE
-------------------------- ----------- --------------------
db_cache_size              big integer 0
SQL> show parameter pool_size
NAME                       TYPE        VALUE
-------------------------- ----------- --------------------
global_context_pool_size   string
java_pool_size             big integer 0
large_pool_size            big integer 0
olap_page_pool_size        big integer 0
shared_pool_size           big integer 0
streams_pool_size          big integer 0
SQL>
Here , All auto tuned parameter values are set to 0, which means 0 is the minimum size for this component and this component can be re-sized to 0 to allow other components use all of its memory. If we change them as follows:

SQL> alter system set db_cache_size=100m scope=both;
System altered.
SQL> show parameter db_cache_size
NAME                       TYPE        VALUE
-------------------------- ----------- --------------------
db_cache_size              big integer 100M
SQL> 
This means 100m is the minimum size for the buffer cache, no matter what happens to the other components this 100m will never be taken away from the Default buffer cache. Manual settings of the auto tuned parameters is useful when you don't want one of components to suffer too much because of auto adjustments in sizes.

When setting the auto tuned parameters manually if you set a size larger then its current size and the increase in the size can be supported by shrinking other components then the change is done immediately.

SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
COMPONENT               SIZE_MB
-------------------- ----------
shared pool                 112
large pool                    4
java pool                     4
streams pool                  0
DEFAULT buffer cache        352
SQL> alter system set shared_pool_size = 120m scope=both;
System altered.
SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
COMPONENT               SIZE_MB
-------------------- ----------
shared pool                 120
large pool                    4
java pool                     4
streams pool                  0
DEFAULT buffer cache        344
We increased the size of shared pool from 112m to 120m and there was space in buffer cache that was available for allocating to shared pool so our change came into effect immediately. And when there is no space available to grow the pool to the size you specified, you will get an error like this.

SQL> alter system set shared_pool_size = 450m scope=both;
alter system set shared_pool_size = 450m scope=both
*
ERROR at line 1:
ORA-02097: parameter cannot be modified because specified  value is invalid
ORA-04033: Insufficient memory to grow pool
SQL>
When an auto tuned parameters are set to a value lower then their current size then the change is not done immediately.

SQL> alter system set shared_pool_size = 100m scope=both;
System altered.
SQL> select component , round(current_size/1024/1024,2) size_mb
  2  from v$sga_dynamic_components
  3  where component like '%pool' 
  4  OR component ='DEFAULT buffer cache';
COMPONENT               SIZE_MB
-------------------- ----------
shared pool                 120
large pool                    4
java pool                     4
streams pool                  0
DEFAULT buffer cache        344
SQL> 
Now according to the workload if a situations comes where Oracle has to shrink shared pool then the shared will be squeezed to 100m and the shrinking will stop since 100m is the minimum value for shared pool.

If you disable the ASMM then all the components that are being managed by the auto tuning will be freezed at their current sizes and become static unless you enable the ASMM again.

SQL> alter system set sga_target=0 scope=both;
System altered.
SQL> show parameter db_cache_size
NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
db_cache_size               big integer 344M
SQL> show parameter pool_size
NAME                        TYPE        VALUE
--------------------------- ----------- ---------------------
global_context_pool_size    string
java_pool_size              big integer 4M
large_pool_size             big integer 4M
olap_page_pool_size         big integer 0
shared_pool_size            big integer 120M
streams_pool_size           big integer 0
SQL>

Wednesday, January 2, 2013

Rman incremental backup and restore an example

its a simple demonstration of rman incremental backup and restore , any oracle enthusiast can follow this post and can understand how rman incremental backup will works.

C:\Users\Admin\mahi>set ORACLE_SID=idea
C:\Users\Admin\mahi>rman target sys/sys
Recovery Manager: Release 11.2.0.1.0 - Production on Thu Jan 3 10:39:31 2013
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
connected to target database: IDEA (DBID=1142773416)

RMAN> show all;
using target database control file instead of recovery catalog
RMAN configuration parameters for database with db_unique_name IDEA are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'C:\rman\%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 CHANNEL DEVICE TYPE DISK FORMAT   'c:\rman\idea_%U';
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 'E:\APP\ADMIN\PRODUCT\11.2.0\DBHOME_1\DATABASE\SNCFIDEA.ORA'; # default

Here i took the full incremental level 0 backup,

RMAN>  BACKUP INCREMENTAL LEVEL 0 DATABASE TAG 'FULL_INC';
Starting backup at 03-JAN-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=160 device type=DISK
channel ORA_DISK_1: starting incremental level 0 datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=E:\DATA\IDEA\SYSTEM01.DBF
input datafile file number=00002 name=E:\DATA\IDEA\SYSAUX01.DBF
input datafile file number=00009 name=E:\DATA\IDEA\USERS02.DBF
input datafile file number=00007 name=E:\DATA\IDEA\EXAMPLE02.DBF
input datafile file number=00008 name=E:\DATA\IDEA\EXAMPLE03.DBF
input datafile file number=00010 name=E:\DATA\IDEA\USERS03.DBF
input datafile file number=00005 name=E:\DATA\IDEA\EXAMPLE01.DBF
input datafile file number=00006 name=E:\DATA\IDEA\SYSTEM02.DBF
input datafile file number=00003 name=E:\DATA\IDEA\UNDOTBS01.DBF
input datafile file number=00004 name=E:\DATA\IDEA\USERS01.DBF
channel ORA_DISK_1: starting piece 1 at 03-JAN-13
channel ORA_DISK_1: finished piece 1 at 03-JAN-13
piece handle=C:\RMAN\IDEA_0TNUFTOB_1_1 tag=FULL_INC comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:45
Finished backup at 03-JAN-13
Starting Control File and SPFILE Autobackup at 03-JAN-13
piece handle=C:\RMAN\C-1142773416-20130103-02 comment=NONE
Finished Control File and SPFILE Autobackup at 03-JAN-13
RMAN>

SQL> select * from v$log;
    GROUP#    THREAD#  SEQUENCE#      BYTES  BLOCKSIZE    MEMBERS ARC STATUS           FIRST_CHANGE# FIRST_TIM NEXT_CHANGE# NEXT_TIME
---------- ---------- ---------- ---------- ---------- ---------- --- ---------------- ------------- --------- ------------ ---------
         1          1          1   52428800        512          1 YES INACTIVE               2107075 02-JAN-13      2136108 03-JAN-13
         2          1          2   52428800        512          1 NO  CURRENT                2136108 03-JAN-13   2.8147E+14
         3          1          0   52428800        512          1 YES UNUSED                       0              0

SQL>
SQL> select checkpoint_change# from v$database;

CHECKPOINT_CHANGE#
------------------
           2136108
SQL>

Now create a table and insert some values,

C:\Users\Admin\mahi>sqlplus

SQL*Plus: Release 11.2.0.1.0 Production on Thu Jan 3 10:42:58 2013

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Enter user-name: hr/hr

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL>  CREATE TABLE T1(C1 NUMBER);

Table created.

SQL> INSERT INTO T1 VALUES(1);

1 row created.

SQL> /

1 row created.

SQL> /

1 row created.

SQL> commit;

Commit complete.

SQL>

Now i took incremental level 1 backup and it is tagged as INC_1,

RMAN>  BACKUP INCREMENTAL LEVEL 1 DATABASE TAG 'INC_1';
Starting backup at 03-JAN-13
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=160 device type=DISK
channel ORA_DISK_1: starting incremental level 1 datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=E:\DATA\IDEA\SYSTEM01.DBF
input datafile file number=00002 name=E:\DATA\IDEA\SYSAUX01.DBF
input datafile file number=00009 name=E:\DATA\IDEA\USERS02.DBF
input datafile file number=00007 name=E:\DATA\IDEA\EXAMPLE02.DBF
input datafile file number=00008 name=E:\DATA\IDEA\EXAMPLE03.DBF
input datafile file number=00010 name=E:\DATA\IDEA\USERS03.DBF
input datafile file number=00005 name=E:\DATA\IDEA\EXAMPLE01.DBF
input datafile file number=00006 name=E:\DATA\IDEA\SYSTEM02.DBF
input datafile file number=00003 name=E:\DATA\IDEA\UNDOTBS01.DBF
input datafile file number=00004 name=E:\DATA\IDEA\USERS01.DBF
channel ORA_DISK_1: starting piece 1 at 03-JAN-13
channel ORA_DISK_1: finished piece 1 at 03-JAN-13
piece handle=C:\RMAN\IDEA_0VNUFU0U_1_1 tag=INC_1 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:35
Finished backup at 03-JAN-13
Starting Control File and SPFILE Autobackup at 03-JAN-13
piece handle=C:\RMAN\C-1142773416-20130103-03 comment=NONE
Finished Control File and SPFILE Autobackup at 03-JAN-13
RMAN>

C:\Users\Admin\mahi>sqlplus

SQL*Plus: Release 11.2.0.1.0 Production on Thu Jan 3 10:46:02 2013

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Enter user-name: hr
Enter password:

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL>  INSERT INTO T1 VALUES(2);

1 row created.

SQL> /

1 row created.

SQL> /

1 row created.

SQL> commit;

Commit complete.

SQL>

Now take incremental level 2 backup and it also tagged as INC_2,

RMAN> BACKUP INCREMENTAL LEVEL 2 DATABASE TAG 'INC_2';
Starting backup at 03-JAN-13
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=160 device type=DISK
channel ORA_DISK_1: starting incremental level 2 datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=E:\DATA\IDEA\SYSTEM01.DBF
input datafile file number=00002 name=E:\DATA\IDEA\SYSAUX01.DBF
input datafile file number=00009 name=E:\DATA\IDEA\USERS02.DBF
input datafile file number=00007 name=E:\DATA\IDEA\EXAMPLE02.DBF
input datafile file number=00008 name=E:\DATA\IDEA\EXAMPLE03.DBF
input datafile file number=00010 name=E:\DATA\IDEA\USERS03.DBF
input datafile file number=00005 name=E:\DATA\IDEA\EXAMPLE01.DBF
input datafile file number=00006 name=E:\DATA\IDEA\SYSTEM02.DBF
input datafile file number=00003 name=E:\DATA\IDEA\UNDOTBS01.DBF
input datafile file number=00004 name=E:\DATA\IDEA\USERS01.DBF
channel ORA_DISK_1: starting piece 1 at 03-JAN-13
channel ORA_DISK_1: finished piece 1 at 03-JAN-13
piece handle=C:\RMAN\IDEA_11NUFU6A_1_1 tag=INC_2 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:35
Finished backup at 03-JAN-13
Starting Control File and SPFILE Autobackup at 03-JAN-13
piece handle=C:\RMAN\C-1142773416-20130103-04 comment=NONE
Finished Control File and SPFILE Autobackup at 03-JAN-13
RMAN>

C:\Users\Admin\mahi>sqlplus

SQL*Plus: Release 11.2.0.1.0 Production on Thu Jan 3 10:49:13 2013

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

Enter user-name: hr/hr

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> INSERT INTO T1 VALUES(3);

1 row created.

SQL> /

1 row created.

SQL> /

1 row created.

SQL> commit;

Commit complete.

SQL>  select * from v$log;
    GROUP#    THREAD#  SEQUENCE#      BYTES  BLOCKSIZE    MEMBERS ARC STATUS           FIRST_CHANGE# FIRST_TIM NEXT_CHANGE# NEXT_TIME
---------- ---------- ---------- ---------- ---------- ---------- --- ---------------- ------------- --------- ------------ ---------
         1          1          1   52428800        512          1 YES INACTIVE               2107075 02-JAN-13      2136108 03-JAN-13
         2          1          2   52428800        512          1 NO  CURRENT                2136108 03-JAN-13   2.8147E+14
         3          1          0   52428800        512          1 YES UNUSED                       0              0

SQL>

SQL> select checkpoint_change# from v$database;

CHECKPOINT_CHANGE#
------------------
           2136108
SQL>
SQL> conn sys as sysdba
Enter password:
Connected.
SQL> shut abort;
ORACLE instance shut down.
SQL>

Here all the changes since the last backup has been stored in the redo logs. Now delete the controlfile ,

SQL> host del E:\data\idea\*.CTL

RMAN> startup;
Oracle instance started
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 01/03/2013 10:56:44
ORA-00205: error in identifying control file, check alert log for more info
RMAN>

RMAN> SET CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO  'C:\rman\%F';

executing command: SET CONTROLFILE AUTOBACKUP FORMAT

RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;

Starting restore at 03-JAN-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=156 device type=DISK
AUTOBACKUP search with format "C:\rman\%F" not attempted because DBID was not set
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 01/03/2013 10:57:59
RMAN-06172: no AUTOBACKUP found or specified handle is not a valid copy or piece

Take the dbid from controlfile autobackup,

RMAN> set DBID=1142773416

executing command: SET DBID

RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;
Starting restore at 03-JAN-13
using channel ORA_DISK_1
channel ORA_DISK_1: looking for AUTOBACKUP on day: 20130103
channel ORA_DISK_1: AUTOBACKUP found: C:\rman\c-1142773416-20130103-04
channel ORA_DISK_1: restoring control file from AUTOBACKUP C:\rman\c-1142773416-20130103-04
channel ORA_DISK_1: control file restore from AUTOBACKUP complete
output file name=E:\DATA\IDEA\CONTROL01.CTL
output file name=E:\DATA\IDEA\CONTROL02.CTL
Finished restore at 03-JAN-13

RMAN> alter database mount;
database mounted
released channel: ORA_DISK_1

RMAN> RESTORE DATABASE;
Starting restore at 03-JAN-13
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=156 device type=DISK
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00001 to E:\DATA\IDEA\SYSTEM01.DBF
channel ORA_DISK_1: restoring datafile 00002 to E:\DATA\IDEA\SYSAUX01.DBF
channel ORA_DISK_1: restoring datafile 00003 to E:\DATA\IDEA\UNDOTBS01.DBF
channel ORA_DISK_1: restoring datafile 00004 to E:\DATA\IDEA\USERS01.DBF
channel ORA_DISK_1: restoring datafile 00005 to E:\DATA\IDEA\EXAMPLE01.DBF
channel ORA_DISK_1: restoring datafile 00006 to E:\DATA\IDEA\SYSTEM02.DBF
channel ORA_DISK_1: restoring datafile 00007 to E:\DATA\IDEA\EXAMPLE02.DBF
channel ORA_DISK_1: restoring datafile 00008 to E:\DATA\IDEA\EXAMPLE03.DBF
channel ORA_DISK_1: restoring datafile 00009 to E:\DATA\IDEA\USERS02.DBF
channel ORA_DISK_1: restoring datafile 00010 to E:\DATA\IDEA\USERS03.DBF
channel ORA_DISK_1: reading from backup piece C:\RMAN\IDEA_0TNUFTOB_1_1
channel ORA_DISK_1: piece handle=C:\RMAN\IDEA_0TNUFTOB_1_1 tag=FULL_INC
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:55
Finished restore at 03-JAN-13
RMAN>

Note:- The database was restored using level 0 full backup tagged as FULL_INC

RMAN> RECOVER DATABASE;

Starting recover at 03-JAN-13
using channel ORA_DISK_1
channel ORA_DISK_1: starting incremental datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: E:\DATA\IDEA\SYSTEM01.DBF
destination for restore of datafile 00002: E:\DATA\IDEA\SYSAUX01.DBF
destination for restore of datafile 00003: E:\DATA\IDEA\UNDOTBS01.DBF
destination for restore of datafile 00004: E:\DATA\IDEA\USERS01.DBF
destination for restore of datafile 00005: E:\DATA\IDEA\EXAMPLE01.DBF
destination for restore of datafile 00006: E:\DATA\IDEA\SYSTEM02.DBF
destination for restore of datafile 00007: E:\DATA\IDEA\EXAMPLE02.DBF
destination for restore of datafile 00008: E:\DATA\IDEA\EXAMPLE03.DBF
destination for restore of datafile 00009: E:\DATA\IDEA\USERS02.DBF
destination for restore of datafile 00010: E:\DATA\IDEA\USERS03.DBF
channel ORA_DISK_1: reading from backup piece C:\RMAN\IDEA_0VNUFU0U_1_1
channel ORA_DISK_1: piece handle=C:\RMAN\IDEA_0VNUFU0U_1_1 tag=INC_1
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:03
channel ORA_DISK_1: starting incremental datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: E:\DATA\IDEA\SYSTEM01.DBF
destination for restore of datafile 00002: E:\DATA\IDEA\SYSAUX01.DBF
destination for restore of datafile 00003: E:\DATA\IDEA\UNDOTBS01.DBF
destination for restore of datafile 00004: E:\DATA\IDEA\USERS01.DBF
destination for restore of datafile 00005: E:\DATA\IDEA\EXAMPLE01.DBF
destination for restore of datafile 00006: E:\DATA\IDEA\SYSTEM02.DBF
destination for restore of datafile 00007: E:\DATA\IDEA\EXAMPLE02.DBF
destination for restore of datafile 00008: E:\DATA\IDEA\EXAMPLE03.DBF
destination for restore of datafile 00009: E:\DATA\IDEA\USERS02.DBF
destination for restore of datafile 00010: E:\DATA\IDEA\USERS03.DBF
channel ORA_DISK_1: reading from backup piece C:\RMAN\IDEA_11NUFU6A_1_1
channel ORA_DISK_1: piece handle=C:\RMAN\IDEA_11NUFU6A_1_1 tag=INC_2
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:03

starting media recovery

archived log for thread 1 with sequence 2 is already on disk as file E:\DATA\IDEA\REDO02.LOG
archived log file name=E:\DATA\IDEA\REDO02.LOG thread=1 sequence=2
media recovery complete, elapsed time: 00:00:01
Finished recover at 03-JAN-13

Note:- Watch the output carefully. You can recognise various backups that are being applied. Look for the tags that you have given to backupsets. It will applies all the incrementals one by one. First it will apply level 1 incremental, and then level 2. Then it will search for appropriate log sequence and applies the same if found.

RMAN>  ALTER DATABASE OPEN RESETLOGS;

database opened

RMAN> exit

Recovery Manager complete.

C:\Users\Admin\mahi>sqlplus hr/hr

SQL*Plus: Release 11.2.0.1.0 Production on Thu Jan 3 11:03:39 2013

Copyright (c) 1982, 2010, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select * from t1;

        C1
----------
         2
         2
         2
         3
         3
         3
         1
         1
         1

9 rows selected.

Hope its helps to somebody.. :)



SQL>