InterviewSolution
Saved Bookmarks
| 1. |
What Is The Benefit Of Storing The Lob Datatype Out-of- Line? |
|
Answer» This ALLOWS the database to AVOID scanning LOB data each time it reads rows from the table. The LOB data will be READ only when it is required; however, at other times, only the LOB locator VALUES are read. This allows the database to avoid scanning LOB data each time it reads rows from the table. The LOB data will be read only when it is required; however, at other times, only the LOB locator values are read. |
|