Database
Oracle - ILM
ILM is mean Information Lifecycle Management. It's practice of applying policies for effective management of information throughout its useful life. Implemen…
ILMis mean Information Lifecycle Management. It’s practice of applying policies for effective management of information throughout its useful life.
Implementing ILM Using Oracle Database The offical documentation see here
And mainly four steps:
Define the Data ClassesCreate Storage Tiers for the Data ClassesCreate Data Access and Migration PoliciesDefine and Enforce Compliance Policies
In fact, in our production, I need to handle a unpartition table to
ILM, so I shouldarchive dataandcreate partitionandadd customize policy. See the below steps:
Archive Database
@IBSArch.par
set serveroutput on;
set verify off;
spool IBSArchive.log
prompt
prompt Attempting to create the user used for archived data ....
@@scripts/createarchuser
prompt
prompt Create objects in BD schema
@@scripts/createBDobjects
prompt
prompt Attempting to create private synonyms for BD database objects in the arch schema
@@scripts/createsynonyms
prompt
prompt Attempting to add new DSN for archived data
--create new DSN for archived data
@@scripts/createDSN
prompt
prompt Attempting to create a scheduler job to run the partitioning of Businessdata
--create new DSN for archived data
@@scripts/createPartitionJob
spool off;
exit;
VPD - Virtual Private Database
@IBSArch.par
set serveroutput on;
set verify off;
spool IBSVPD.log
prompt
prompt Attempting to create the VPD profiles
@@scripts/createvpdprofiles
These resource files see here.