I have couple of vfp 9.0 .dbc and .dbf files i am trying to setup these tables as external tables, but from information i googled it seems like that oracle only support .CSV files
is that even possible
I will be selecting,updating,deleting,inserting a few rows in the dbf files.
for example
create or replace directory ext_tab as 'C:\EXT_TAB';
CREATE TABLE ext_test(
CODE NUMBER(4), DESC CHAR(20)
ORGANIZATION EXTERNAL(
TYPE ORACLE_LOADER DEFAULT DIRECTORY ext_tab
ACCESS PARAMETERS
(
RECORDS DELIMITED BY NEWLINE
NOBADFILE
NOLOGFILE
SKIP 1
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LRTRIM
MISSING FIELD VALUES ARE NULL
REJECT ROWS WITH ALL NULL FIELDS
(CODE INTEGER EXTERNAL (4),
DESC CHAR(20))
)
LOCATION ('ext_tab_test.dbf')
)
PARALLEL
REJECT LIMIT 0;
any correction, guidance, article is much appreciated.