Hi,
I think here are possible workarounds for this.
1. The extract job is working well when using "output to " instead of temp_extract* option.
(DBA)>select '9999' from dummy; ; OUTPUT TO '/gjang/DATA/test.dat';
2. Insert the data into other table using "select into".
select '9999' into #test_tmp from dummy;
set temporary option Temp_extract_name1='/gjang/DATA/test.dat';
select * from #test_tmp;
"KBA 2323613" explanins the possible workaround.
- 'Feature, EXTRACT with OMNI functional compensation, is not supported' when using TEMP_EXTRACT option
https://launchpad.support.sap.com/#/notes/2323613
Best Regards,
Gi-Sung Jang