1Z0-052 · Question #170
Which two statements are true regarding the usage of the SQL*LOADER utility? (Choose two.)
The correct answer is A. You can load data into multiple tables during the same load session B. You can load data from multiple files to a table during the same load session. SQL*Loader supports flexible loading scenarios including loading data into multiple tables and from multiple input files within a single load session.
Question
Which two statements are true regarding the usage of the SQL*LOADER utility? (Choose two.)
Options
- AYou can load data into multiple tables during the same load session
- BYou can load data from multiple files to a table during the same load session
- CYou cannot perform selective data loading based on the values available in the records
- DYou can use an export file generated by the EXPDP utility as an input data file to load the data
- EYou can load data only if the input file is available on the disk and tape but not a named pipes
How the community answered
(19 responses)- A95% (18)
- C5% (1)
Why each option
SQL*Loader supports flexible loading scenarios including loading data into multiple tables and from multiple input files within a single load session.
SQL*Loader allows a single control file to define multiple INTO TABLE clauses, enabling data to be loaded into several different tables during one load session.
SQL*Loader supports loading from multiple input data files specified in the control file, allowing data spread across several flat files to be loaded into a table in one session.
This is false - SQL*Loader supports selective data loading using the WHEN clause in the control file, which filters records based on field values before loading.
SQL*Loader requires flat text or delimited files as input; it cannot use Data Pump export (.dmp) files, which are a proprietary binary format readable only by the IMPDP utility.
SQL*Loader can load data from named pipes in addition to disk and tape, making this statement false.
Concept tested: SQL*Loader multi-table and multi-file loading capabilities
Source: https://docs.oracle.com/en/database/oracle/oracle-database/19/sutil/oracle-sql-loader-concepts.html
Topics
Community Discussion
No community discussion yet for this question.