let's suppose I have a file like this:
101010AAAABBB
where I don't have a symbol for separating the different fields and I want to load it into an external table In the definition of my external table I would usually put
access parameters (records delimited by newline
fields terminated by ";"
if I had
101010;AAAA;BBB
But in my case, how can I write the syntax for loading every field in positional way?
Oracle version 10g
Thanks! Mark