题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2024-03-18 23:12:50

[不定项选择题]Choose the best answer.Examine this output of an export from the

Current release of an Oracle multitenant database: $ sqlplus system/oracle .

SQL> col name for a10

SQL> select name, open_mode from v$pdbs;

NAME OPEN_MODE

---------------------------------------

PDB$SEED READ ONLY

PDB1 READ WRITE

PDB2 MOUNTED

SQL> exit

Next you execute: $ expdp system/oracle full=y What is the outcome?


A.

It fails because Data Pump cannot be used while connected to the root container.


B.

It creates a full export of the root and pdb1.


C.

It creates a full export of the root and all pdbs

.


D.

It creates a full export of the root container and all open pdbs.


E.

It creates a full export of only the root container

更多"[不定项选择题]Choose the best answer.Exam"的相关试题:

[不定项选择题]Choose the best answer. Examine this output of an export from the

Current release of an Oracle multitenant database:

$ sqlplus system/oracle .

SQL> col name for a10

SQL> select name, open_mode from v$pdbs;

NAME

OPEN_MODE

---------------------------------------

PDB$SEED

READ ONLY

PDB1

READ WRITE

PDB2

MOUNTED

SQL> exit

Next you execute:

$ expdp system/oracle full=y

What is the outcome?


A.

It fails because Data Pump cannot be used while connected to the root

Container.


B.

It creates a full export of the root container and PDB1.


C.

It creates a full export of the root container and all PDBs.


D.

It creates a full export of the root container and all open PDBs.


E. It creates a full export of only the root container.
[不定项选择题]Choose the best answer. Examine this configuration:

1 CDB1 is a container database.

2There are several pluggable databases (PDBs) in CDB1.

5Each PDB has several tables with referential integrity constraints.

6FLASHBACK DATABASE is ON.

7 UNDO RETENTION GUARANTEE is enabled.

Multiple undesired multitable changes were made in all the PDBs.

Which method can be used to undo the changes using a single command?


A.

restore and recover database


B.

flashback transaction


C.

flashback database


D.

flashback table and transaction


E. flashback table
[不定项选择题]Choose the best answer.

Examine this configuration:

1CDB1 is a container database.

2 APP_ROOT is an application root in CDB1.

3APP_PDB1 is an application PDB in APP_ROOT.

4FLASHBACK DATABASE is ON.

You execute these commands:

$ sqlplus sys/orac1e_4U@localhost:1521/cdb1

SQL> SELECT current_scn FROM v$database;

CURRENT_SCN

-----------------------

2074756

SQL> CREATE TABLE cdb1_tab(c1 NUMBER) ;

Table created.

SQL> ALTER SESSION SET CONTAINER=app_root;

Session altered.

SQL> CREATE TABLE app_root_tab (c1 NUMBER) ;

Table created.

SQL> ALTER SESSION SET CONTAINER=app_pdb1;

Session altered.

SQL> CREATE TABLE app_pdb1_tab (c1 NUMBER) ;

Table created.

SQL> conn / as sysdba

Connected.

SQL> ALTER PLUGGABLE DATABASE app_root CLOSE;

Pluggable database altered.

SQL> FLASHBACK PLUGGABLE DATABASE app_root TO SCN 2074756;

Flashback complete.

Which table or set of tables will exist after the Flashback operation has

Completed?


A.

CDB1_TAB, APP_ROOT_TAB, and APP_PDB1_TAB


B.

CDB1_TAB and APP_PDB1_TAB


C.

CDB1_TAB and APP_ROOT_TAB


D.

CDB1_TAB only


E. none of the tables, because all three tables will be dropped
[不定项选择题]Choose the best answer. Which operating system group is NOT

Needed to perform an Oracle Database installation?


A.

OSASM


B.

OSRACDBA


C.

OSKMDBA


D.

OSDBA


E. OSOPER
[不定项选择题]Choose the best answer
You want to create a duplicate database
DUP_DB from your production database PROD on the same host. The PROD
Database uses Automatic Storage Management (ASM) for storage.
Regular backups are taken using RMAN connected to a recovery catalog.
You create an auxiliary instance and want to execute the command:
RMAN> DUPLICATE TARGET DATABASE TO dup_db FROM ACTIVE
DATABASE;
What is a prerequisite for the successful execution of this command
A. RMAN must be connected to the target database instance and the auxiliary
Instance.
B. A most recent backup set of the PROD database must exist.
C. Flashback must be enabled for the PROD database.
D. The target database must be in MOUNT state.
[不定项选择题]Choose the best answer. Which statement correctly describes the SQL

Profiling performed by the SQL Tuning Advisor?


A.

It is a set of recommendations by the optimizer to change the access methods

Used.


B.

It is auxiliary information collected by the optimizer for a SQL statement to eliminate estimation error.


C.

It is a set of recommendations by the optimizer to restructure a SQL statement to avoid suboptimal execution plans.


D.

It is auxiliary information collected by the optimizer for a SQL statement to

Help use better joins orders.


E. It is a set of recommendations by the optimizer to create new indexes.
[不定项选择题]Choose the best answer.

SQL Performance Analyzer (SPA) has reported several regressed SQL

Statements for one of your databases.

Which action could help in the performance management of these regressed

SQL statements?


A.

Create SQL plan directives for each of the regressed statements.


B.

Use The SQL Tuning Advisor for each of the regressed statements.


C.

Create an adaptive execution plan for each of the regressed statements.


D.

Use the SQL Access Advisor for each of the regressed statements.

[不定项选择题]Choose the best answer.

How do you configure a CDB for local undo mode?


A.

Open the CDB instance in restricted mode. In CDB$ROOT, drop the UNDO

Tablespace. Execute ALTER DATABASE LOCAL UNDO ON in each PDB, and then

Restart the CDB

Instance.


B.

Open the CDB instance in upgrade mode. In CDB$ROOT, execute ALTER

DATABASE LOCAL UNDO ON, and then restart the CDB instance.


C.

Open the CDB instance in upgrade mode. In each PDB, execute ALTER

DATABASE LOCAL UNDO ON, create an UNDO tablespace, and then restart the

CDB instance.


D.

Open the CDB instance in restricted mode. In CDB$ROOT, execute ALTER

DATABASE LOCAL UNDO ON. create an UNDO tablespace in each PDB, and

Then restart the CDB instance.


E. Open the CDB in read-only mode. In CDB$ROOT, execute ALTER DATABASE
LOCAL UNDO ON, and then change the CDB to read/write mode.
[不定项选择题]Choose the best answer. You want to transport the UNIVERSITY

Tablespace from one database to another. The UNIVERSITY tablespace is

Currently open read/write. The source and destination platforms have the

Same endian Examine this list of steps:. 

1. Make the UNIVERSITY tablespace read-only on the source 

2. Export the UNIVERSITY tablespace metadata using EXPDP. 

3. Create a cross-platform backup set from the UNIVERSITY

Source system, using an RMAN command that includes the DATAPUMP clause. 

4. Copy the cross-platform backup sets to the destination system. 

5. Copy the Data Pump dump set from the source to the destination system. 

6. Restore the cross-platform backup set on the destination system using an

RMAN command that includes the DATAPUMP clause. 

7. Import the UNIVERSITY tablespace metadata using IMPDP. 

8. Make the UNIVERSITY Tablespace read/write on the destination system. 


Which are the minimum number of steps required, in the correct order, to transport the UNIVERSITY Tablespace?


A.

3,4,6


B.

2,3,4,5,6,7


C.

1,3,4,6,8


D.

1,2,3,4,5,6,7,8

[不定项选择题]Choose the best answer. Which should be tuned first when doing a
Performance tuning exercise for an Oracle Database environment?
A. log writer performance
B. database writer performance
C. general operating system health
D. SQL statements
E. database instance memory management and sizes
[不定项选择题]Choose the best answer.

On the 10th of August, you implement an incremental database backup

Strategy and configure a recovery window of five days.

Level 0 backups are taken on the 10th, 17th, and 24th of August.

Differential level 1 incremental backups are taken daily between the level 0

Backups. Today is the 26th of August.

Which backups will be obsolete?


A.

) all backups prior to 10th of August


B.

) all backups prior to 22nd of August


C.

) all backups prior to 20th of August


D.

) all backups prior to 24th of August


E.) all backups prior to 17th of August
[不定项选择题]工会的职责
A.负责协调伤亡员工与运营分公司的关系,并维护员工的合法利益
B.负责内部各中心、部门间的协调配合,并做好伤亡员工探视及慰问,妥善处理家属接待、安抚工作
C.负责组织相关中心、部门与当事人及其家属对员工伤亡事故处理中的纠纷、争议进行商谈,结果及时报分公司研究处理
D.负责参与和监督员工伤亡事故调查
[不定项选择题]运营事故报告分为:
A.初报
B.电话报送
C.续报
D.书面报送
[不定项选择题]运营事故主要包括:
A.生产安全事故
B.消防安全事故
C.特种设备安全事故
D.道路交通安全事故
E.行车指挥事故
F.网络安全事件

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码