Merge pull request #7 from booyaa/patch-1

Comment on TABLE_EXISTS_ACTION parameter
This commit is contained in:
mortenbra 2015-04-26 22:40:52 +02:00
commit 0367caa1f4

View File

@ -122,6 +122,8 @@ begin
if p_table_data_only then
dbms_datapump.metadata_filter (l_job_handle, 'INCLUDE_PATH_LIST', '''TABLE'''); -- note the double quotes
-- TODO: investigate the "TABLE_EXISTS_ACTION" parameter
-- not sure what the context was for the TODO, but we use it to clear down tables before importing data.
-- Usage is dbms_datapump.set_parameter(l_job_handle, 'TABLE_EXISTS_ACTION', 'TRUNCATE');
end if;
dbms_datapump.start_job (l_job_handle);