我的要求是我必须在存储过程中为具有不同列的不同文本文件使用单个外部表。
我可以在 Oracle 11g 的外部表中使用动态列吗?像这样:
create table ext_table as select * from TBL_test
organization external (
type oracle_loader
default directory DATALOAD
access parameters(
records delimited by newline
fields terminated by '#'
missing field values are null
)
location ('APD.txt')
)
reject limit unlimited;