![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I am doing many SQL insert statements to insert records into an oracle database. I need the order of the records, after inserting all records, to be the same as the order I inserted them in. Right now my program fails to keep the records in order if the number of records is large. I inserted 100,000 records and the first record after all inserts were done was record#540. I have been told that the /*+ APPEND */ hint and /*+ PARALLEL */ hint can accomplish this. Is this correct? I want to avoid using ORDER BY at all costs as its slow and I can't affort the slowdown. Has anyone else had this problem? and can help. Example: If I insert records with employee numbers 1 throughy 100,000 into the oracle database in ascending order, then the first record viewed after inserting all records should be record with employee number1. The last record should be record with employee number 100, 000. thanks Ryan. The whole concept of an RDBMS is that there isn't any implicit order. |
#3
| |||
| |||
|
|
I am doing many SQL insert statements to insert records into an oracle database. I need the order of the records, after inserting all records, to be the same as the order I inserted them in. Right now my program fails to keep the records in order if the number of records is large. I inserted 100,000 records and the first record after all inserts were done was record#540. I have been told that the /*+ APPEND */ hint and /*+ PARALLEL */ hint can accomplish this. Is this correct? I want to avoid using ORDER BY at all costs as its slow and I can't affort the slowdown. Has anyone else had this problem? and can help. Example: If I insert records with employee numbers 1 throughy 100,000 into the oracle database in ascending order, then the first record viewed after inserting all records should be record with employee number1. The last record should be record with employee number 100, 000. |
![]() |
| Thread Tools | |
| Display Modes | |
| |