Chinaunix首页 | 论坛 | 博客
  • 博客访问: 667435
  • 博文数量: 487
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 4936
  • 用 户 组: 普通用户
  • 注册时间: 2018-07-05 13:59
个人简介

ocp考试资料群:569933648 验证码:ocp OCP 12c 19c考试题库解析与资料群:钉钉群号:35277291

文章分类

全部博文(487)

文章存档

2024年(2)

2023年(37)

2021年(151)

2020年(37)

2019年(222)

2018年(38)

我的朋友

分类: Oracle

2019-08-20 09:17:39

Examine these facts about objects in the SYSTEM schema:

1.EMP is a table.

2.EMP_PK is a primary key constraint on EMP.ENO.

3.EMP_IDX is an index on EMP.MGR_NO.

4.EMP_SEQ is a sequence used to generate values for EMP.ENO.

5.EMP_OPS_PKG is a package that performs DML operations on EMP.

6.EMP_VU is a view on EMP.

7. EMP_TRG is a trigger on EMP.

Examine this command:

$ expdp system/oracle \

> FULL =Y \

> EXCLUDE=TABLE:"= 'EMP' "\

> DIRECTORY=data_pump_dir \

> DUMPFILE=full_db.dmp \

> LOGFILE=full_db.1og

Which three objects will be exported?

A)EMP_PK

B)EMP_SEQ

C)EMP_OPS_PKG

D)EMP_VU

E)EMP_IDX

F)EMP_TRG

G)EME_FN

Answer: BCD(已验证)

CUUG:如果在导出的过程中排除了一张表,那么跟这张表相关的数据就不会导出,比如表的结构、数据、索引、约束、触发器等。但是其它跟这张表相关的关系不是密切的对象还是会导出,比如:该表引用的序列、访问该表的存储过程、创建在该表上的视图等。这道题是新题,相关的内容以前没有出现过。

expdp system/oracle DUMPFILE=scott.dmp

DIRECTORY=dmpdir SCHEMAS=scott

EXCLUDE=TABLE:\"IN\(\'EMP\'\)\"

SCHEMAS=scott

注意以上 exclude 的语法。

赵:

参数说明:full=y 导出整个数据库,exclude=table 排除表,logfile 生成一个日志文件。

阅读(964) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~