RE: SQL Loader Load Problem

2001-12-19 Thread Ken Janusz
That's the book I have. I have not found any other books totally for SQL*Loader. Ken -Original Message- Sent: Wednesday, December 19, 2001 8:16 AM To: Multiple recipients of list ORACLE-L Subject: RE: SQL Loader Load Problem Ken, Good to know that it worked. Not

RE: SQL Loader Load Problem

2001-12-19 Thread Paula Wachtmeister
- Original Message - To: <[EMAIL PROTECTED]> Sent: Wednesday, December 19, 2001 11:30 AM > With Oracle 7.3.4 you could use this method: > > LOAD DATA > INFILE 'example.dat' > BADFILE 'example.bad' > insert > INTO TABLE emp > FIELDS TERMINATED BY ';' > (empno POSITION(*), > ename POSITI

RE: SQL Loader Load Problem

2001-12-19 Thread lhoska
nts of list ORACLE-L Kirti: Another person recommended this approach and it worked very nicely. To bad it's not in the book. Thanks much, Ken -Original Message- Sent: Tuesday, December 18, 2001 10:20 PM To: Multiple recipients of list ORACLE-L Subject:RE: SQL Loader Loa

RE: SQL Loader Load Problem

2001-12-19 Thread Deshpande, Kirti
Multiple recipients of list ORACLE-L Subject: RE: SQL Loader Load Problem Ken, If you are using 8i, then you can use the 'filler' fields. In this case the control file would look something like below(considering the fields are terminated by a comma and the table has column

RE: SQL Loader Load Problem

2001-12-19 Thread Ken Janusz
Kirti: Another person recommended this approach and it worked very nicely. To bad it's not in the book. Thanks much, Ken -Original Message- Sent: Tuesday, December 18, 2001 10:20 PM To: Multiple recipients of list ORACLE-L Subject: RE: SQL Loader Load Problem Ken

RE: SQL Loader Load Problem

2001-12-18 Thread Deshpande, Kirti
Ken, If you are using 8i, then you can use the 'filler' fields. In this case the control file would look something like below(considering the fields are terminated by a comma and the table has columns a, b and c) load data infile 'myfile' into table mytable fields terminated by ','