InterviewSolution
Saved Bookmarks
| 1. |
How Does Sql*loader Handles Newline Characters In A Record? |
|
Answer» SQL*Loader expects a record to be in a SINGLE line; therefore, whenever it ENCOUNTERS a newline character in a record, it treats the record as a new record and either THROWS an error BASED on the constraints of a table or inserts erroneous records without throwing any error. SQL*Loader expects a record to be in a single line; therefore, whenever it encounters a newline character in a record, it treats the record as a new record and either throws an error based on the constraints of a table or inserts erroneous records without throwing any error. |
|