Oracle Partitioning - Enhance Performance & Data Management-1
Oracle Partitioning - Enhance Performance & Data Management-1
com
PARTITIONING IN ORACLE
Partitioning in Oracle is a technique used to divide large tables and indexes into smaller, more
manageable pieces called partitions. This can improve performance, manageability, and
availability. Here’s a step-by-step explanation:
Backup a partition
Using RMAN:
You will typically backup the entire tablespace or datafile that contains the partition
RMAN>BACKUP DATAFILE ‘/u01/app/oracle/oradata/orcl/user01.dbf
Or Tablespace
RMAN > BACKUP TABLESPACE TESTTBLSPC;
Use Oracle Data Pump for Partition-Level Export
=========================GOOD LUCK=================================