) While doing loading, data is sorted and then loaded into table (True or False)
-
True
-
False
The LOAD utility does not sort data before loading - it loads data as-is for efficiency. Sorting would significantly impact performance during bulk loading operations. If sorting is needed, it must be done separately before or after the LOAD operation.
To answer this question, you need to understand the process of loading data into a table.
Option A) True - This option is incorrect. When loading data into a table, it is not necessary to sort the data before loading it. The data can be loaded into the table in any order, and the sorting can be done later if needed.
Option B) False - This option is correct. While loading data into a table, there is no requirement to sort the data before loading it. The data can be loaded into the table in any order.
Therefore, the correct answer is B) False.