I need to 'import' a flat files into Oracle 8i. The problem is the file is NOT 'delimited'. Instead, the field are of defined sizes.
i.e.
Hence, I have rows of two fields, with first field of 10 chars and second field of 11field in chars. With things like BCP, I could specify this to be imported.
However, there appears to be a requirement for Oracle SQLLoader that delimiter be used. Is this really the case? If not, could someone please tell me how I could import files like the above into a table like the below-
Or would there be any other Oracle tool to do this? For simpliciy, I would rather not have to write a parser using perl/awk, etc. etc...
i.e.
Code:
<-10chars--><--11chars--><-10chars--><--11chars-->
field 1 field 2 field 1 field 2
However, there appears to be a requirement for Oracle SQLLoader that delimiter be used. Is this really the case? If not, could someone please tell me how I could import files like the above into a table like the below-
Code:
Table1
Field1 Varchar(10)
Field2 Varchar(11)
Or would there be any other Oracle tool to do this? For simpliciy, I would rather not have to write a parser using perl/awk, etc. etc...