From 46bab05f5d57bddb9aa755f9b1cc90d4786b5ea4 Mon Sep 17 00:00:00 2001 From: Ottmar Gobrecht Date: Mon, 26 Jul 2021 09:52:09 +0200 Subject: [PATCH] create data load script for import format "om_tapigen" --- plex_install.sql | 2 +- src/PLEX.pkb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plex_install.sql b/plex_install.sql index 909e027..c79ada1 100644 --- a/plex_install.sql +++ b/plex_install.sql @@ -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; diff --git a/src/PLEX.pkb b/src/PLEX.pkb index 6252b7c..b1c960f 100644 --- a/src/PLEX.pkb +++ b/src/PLEX.pkb @@ -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;