If I use an sql bulk loader to load 10 000 rows into an oracle database from a flat file, will the rows be inserted in the same order as they appear in the file? For example, let us say there is a unique key column that is automatically incremented by 1 for every row inserted.
So can I predict that the first row in the file will become the first row in the db, (a.k.a have a value of 1 for this column)