create data load script for import format "om_tapigen"

This commit is contained in:
Ottmar Gobrecht 2021-07-26 09:52:09 +02:00
parent 16ae48af6d
commit 46bab05f5d
2 changed files with 2 additions and 2 deletions

View File

@ -3628,7 +3628,7 @@ BEGIN
$end
IF p_include_data THEN
process_data;
if upper(p_data_format) LIKE '%INSERT%' then
if upper(p_data_format) LIKE '%INSERT%' or upper(p_data_format) LIKE '%OM_TAPIGEN%' then
create_load_data_file;
end if;
END IF;

View File

@ -3007,7 +3007,7 @@ BEGIN
$end
IF p_include_data THEN
process_data;
if upper(p_data_format) LIKE '%INSERT%' then
if upper(p_data_format) LIKE '%INSERT%' or upper(p_data_format) LIKE '%OM_TAPIGEN%' then
create_load_data_file;
end if;
END IF;