↧
Using DBMS_DATAPUMP – Full Export and Filtering DB Tables (Metadata Filtering)
SELECT trim(instance_name), trim(host_name) INTO v_db_name, v_hostname FROM v$instance; v_dp_handle := DBMS_DATAPUMP.open( operation => 'EXPORT', job_mode => 'FULL', remote_link =>...
View ArticleExcluding Table Partitions – expdp EXCLUDE=TABLE_DATA
Oracle Datapump – Using expdp utility excluding table & table partitions in a par file can be managed with the below syntax… –Excluding Table Partitions’ Data EXCLUDE=TABLE_DATA:”IN (select...
View Article