龙空技术网

数据库笔试面试108——在Oracle中,sqlldr

DBA宝典 199

前言:

现在朋友们对“oracle中sqlldr使用方法”可能比较注意,我们都需要了解一些“oracle中sqlldr使用方法”的相关文章。那么小编同时在网上收集了一些有关“oracle中sqlldr使用方法””的相关资讯,希望大家能喜欢,我们快快来了解一下吧!

Which two statements are true regarding the usage of the SQL*Loaderutility? (Choose two.)

A.You can load data into multiple tables during the same load session.

B.You can load data from multiple files to a tableduring the same load session.

C.You cannotperform selective data loadingbased on the values available in the records.

D.You can use an export file generated by the EXPDP utility as an input data file to load the data.

答案:A、B。

题目中要求选出与SQL*Loader工具的说法正确的2个选项。

本题中,对于选项A,可以在一个SQL*Loader会话中导入多个表的数据,根据前边的分析,该功能可以实现。所以,选项A正确。

对于选项B,可以在一个SQL*Loader会话中将多个数据文件导入到1个表中,根据前边的分析,该功能可以实现。所以,选项B正确。

对于选项C,在导入数据的时候可以使用WHEN关键词实现选择性的导入。所以,选项C错误。

对于选项D,SQL*Loader是文本导入工具,只能导入文本数据,而exp导出的文件属于二进制文件,所以不能导入。所以,选项D错误。

所以,本题的答案为A、B。

标签: #oracle中sqlldr使用方法