Backup
Corporate Traing
Database
Online Training
Oracle
Oracle DBA
Oracle RAC
tablespace
VirtualNuggets
https://oracledbaraconlinetraining.blogspot.com/2016/05/to-exclude-particular-tablespace.html
In most of the environment we know few tableapces zero data change happned in test environment. In a such environment tablespace data is not crucial. then we can avoid particular tablespace backup from RMAN full backup.
note: the following command may override the backup policy
step1: Exclude the particular tablespace in rman level.
RMAN> CONFIGURE EXCLUDE FOR TABLESPACE SAMTBS1;
using target database control file instead of recovery catalog Tablespace SAMTBS1 will be excluded from future whole database backups new RMAN configuration parameters are successfully stored.
step2: Then need to perform the default full backup. so now rman will backup all tablespace in the database except the tablespace mentioned in step 1
RMAN> BACKUP DATABASE;
the below command help to view excludes tablespace with rman
To list the excludes tablespace
RMAN> show exclude;
RMAN configuration parameters for database with db_unique_name JATWAY are:
CONFIGURE EXCLUDE FOR TABLESPACE 'SAMTBS1';
Command to skip multiple tablespaces blog to same database.
RMAN> CONFIGURE EXCLUDE FOR TABLESPACE SAMTBS2;
RMAN> CONFIGURE EXCLUDE FOR TABLESPACE SAMTBS3;
Here tablespace SAMTBS2,SAMTBS3 will be excluded from backup.
Command to override (or) clear the Excluded tablespace in RMAN
(a)Command for Override the excluded tablespaces
You can override this exclusion feature by explicitly issuing keyword NOEXCLUDE in order to take whole database backup.
RMAN>BACKUP DATABASE NOEXCLUDE;
(b)Command for Clear the Excluded SAMTBS1 tablespace
RMAN>CONFIGURE EXCLUDE FOR TABLESPACE SAMTBS1 CLEAR;
Command to backup READONLY and OFFLINE tablespaces
RMAN>BACKUP DATABASE SKIP READONLY, SKIP OFFLINE;
Backup,
Corporate Traing,
Database,
Online Training,
Oracle,
Oracle DBA,
Oracle RAC,
tablespace,
VirtualNuggets
VirtualNuggets
3444783484806328678
Post a Comment


:noprob:

:smile:

:shy:

:trope:

:sneered:

:happy:

:escort:

:rapt:

:love:

:heart:

:angry:

:hate:

:sad:

:sigh:

:disappointed:

:cry:

:fear:

:surprise:

:unbelieve:

:shit:

:like:

:dislike:

:clap:

:cuff:

:fist:

:ok:

:file:

:link:

:place:

:contact:
Home
item
Blog Archive
Popular Posts
-
In database computing, Oracle Real Application Clusters (RAC) - an option for the Oracle Database software produced by Oracle Corporat...
-
This is an Oracle RAC database administration, task-oriented guide that shows you how to configure and manage the environment fo...
-
In most of the environment we know few tableapces zero data change happned in test environment. In a such environment tablespace data is ...
-
1. What is VIP IP used for? It returns a dead connection IMMIDIATELY, when its primary node fails. Without using VIP IP, the clients...
-
Cloning the single instance oracle home (This method require -Sudo privilage on both servers) here we are going to clone the oracle ho...
-
1.What is cache fusion? In a RAC environment, it is the combining of data blocks, which are shipped across the interconnect fr...
-
This procedure will work for all file systems including raw or ASM. Through this example we will be using user12 (datafile). 1) On stan...
-
It took some time to investigate why CRSCTL REPLACE VOTEDISK command is not working. [oracle@node1 ~]$ crsctl replace votedisk V...