| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Help With External Table Definition
I'm trying to create an external table definition.
The only problem I am having is that the last field could be a null value and I have no idea how to define the external table to handle this. Here is the external table definition as it currently is:
CREATE TABLE BIS.X_FRANCHISE
( franchise CHAR(3),
franchise_name VARCHAR2(35),
active CHAR(1),
na_assoc CHAR(3) )
RECORDS DELIMITED BY NEWLINE
NOBADFILE
NOLOGFILE
FIELDS TERMINATED BY ','
(
franchise,
franchise_name,
active,
na_assoc
)
![]() |
![]() |