Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

FILLER columns in External Tables

user274721 - oracleJan 12 2012 — edited Jan 12 2012
Hi All,

I wanted to know whether FILLER columns can be defined in the Access Parameters section when External tables are defined? I have implemented it in the following way and get an error when I try to see the data in the table.


create table load2(
chrom varchar2(100),
)
ORGANIZATION EXTERNAL (TYPE ORACLE_LOADER DEFAULT DIRECTORY MY_LOAD
access parameters ( records delimited by newline
fields terminated by '\t'
lrtrim REJECT ROWS WITH ALL NULL FIELDS
(
CHROM char(100),
POS FILLER char(100)
)
) location ('test.txt'))
reject limit unlimited;

The error I get is " KUP-01005:syntax error: found "identifier":expecting one of:"binary_double,binary_float,comma,char,date,defaultif, decimal, double, float, integer, (,nullif,oracle_date,oracle_number,position,raw,recnum,),unsigned,varrawc,varchar,varraw,varcharc,zoned"
KUP-01008:the bad identifier was: FILLER"

I tried placing FILLER at different positions and it still gives me an error.

Thanks,
Nikita
This post has been answered by John Spencer on Jan 12 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 9 2012
Added on Jan 12 2012
1 comment
1,720 views