Oracle SQL Loader Interview Question and Answers
9. | How can you load multi line records? |
---|---|
|
|
10. | How can you get SQL*Loader to commit only at the end of the load file? |
---|---|
You cannot ensure a commit only at the end of the load file but you can increase the value of ROWS parameter to ensure the commit after certain number of rows. | |
11. | Can you selectively load only those records that you need? |
---|---|
Yes, you can use the WHEN clause to specify the selection criteria. However, it does not allow you to use the OR clause; instead, you can only use the AND clause. | |
12. | How does SQL*Loader handles newline characters in a record? |
---|---|
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 bases on the constraints of a table or inserts erroreous records without throwing any error. | |