sqlload loading inverted values in oracle tables [message #72199] |
Thu, 10 April 2003 00:05 |
Manoj
Messages: 101 Registered: August 2000
|
Senior Member |
|
|
urgent pls reply,
I have a control file which will take infile as a text file and load its contents to an oracle table, but when its loading it loads the last line in text file as first entry in oracle table and so on. please help. my platform is PII and sco unix 5.0.2. oracle 7.2.
|
|
|
|
Re: sqlload loading inverted values in oracle tables [message #72209 is a reply to message #72199] |
Sat, 12 April 2003 04:59 |
|
Barbara Boehmer
Messages: 9101 Registered: November 2002 Location: California, USA
|
Senior Member |
|
|
The order in which records are inserted into an Oracle table is irrelevant. Even if you get them initially inserted in the order that you want, Oracle does not guarantee the order in which they are retrieved unless you specify an order by clause in a select statement. The only time order matters is when you are retrieving data.
|
|
|