Update DATA_EXPORTER package to version 2.8.1, fix query in EXPORT_TABLE_DATA to ensure single file output, and update version history.

This commit is contained in:
Grzegorz Michalski
2026-02-12 16:31:00 +01:00
parent 6039d6bce4
commit a3ec31341b
3 changed files with 9 additions and 8 deletions

View File

@@ -750,10 +750,9 @@ AS
ENV_MANAGER.LOG_PROCESS_EVENT('File registration enabled with config key: ' || vConfigKey, 'INFO', vParameters);
END IF;
-- Construct single query for entire table (no key value partitioning)
-- Construct single query for entire table (no join with A_LOAD_HISTORY - ensures single file output)
vQuery := 'SELECT ' || vProcessedColumnList ||
' FROM ' || vTableName || ' T, CT_ODS.A_LOAD_HISTORY L' ||
' WHERE T.' || DBMS_ASSERT.simple_sql_name(vKeyColumnName) || ' = L.A_ETL_LOAD_SET_KEY';
' FROM ' || vTableName || ' T';
-- Construct the URI for the file in OCI Object Storage
vUri := vBucketUri ||