首页 数据库 mysql教程 Oracle 10g OCP 042 题库 31-70 题 共168题

Oracle 10g OCP 042 题库 31-70 题 共168题

Jun 07, 2016 pm 05:10 PM

Oracle 10g OCP 042 题库 31-70 题 共168题

31. Which two statements are true regarding the database in ARCHIVELOG mode? (Choose two.)

A) You have to shut down the database to perform the backups.

B) Archiving information is written to the data files and redo log files.

C) You can perform complete database backups without closing the database.

D) Online redo log files have to be multiplexed before putting the database in ARCHIVELOG mode.

E) All the previous database backups become invalid after you configure the database to ARCHIVELOG mode.

答案:C E.

32.  You perform differential incremental level 1 backups of your database on each working day and level 0

backup on Sundays. Which two statements are true about the differential incremental backups? (Choose two.)

A) The backup performed on Sundays contains all the blocks that have ever been use in the database.

B) The backup performed on Sundays contains all the blocks that have changed since the last level 1 backup.

C) The backup performed on each working day contains all the blocks that have changed since the last level 0 or level

1 backup.

D) The backup performed on each working day contains all the blocks that have changed since the last level 0 backup.

答案: A C

 

33.  You require the Oracle server to manage the undo segments and space among various active sessions

automatically. You created an undo tablespace, UNDO_TBS1, in your database. Which two additional steps

would you perform to achieve this? (Choose two.)

A) Set the UNDO_RETENTION parameter to 900 or more.

B) Create an initial undo segment in the undo tablespace.

C) Enable the retention guarantee for the undo tablespace.

D) Set the UNDO_TABLESPACE parameter to UNDO_TBS1.

E) Set the UNDO_MANAGEMENT initialization parameter to AUTO.

答案:DE

Oracle undo 管理

34. Which two statements are true regarding a PL/SQL package body? (Choose two.)

A) It cannot be created without a package specification.

B) It cannot invoke subprograms defined in other packages.

C) It can contain only the subprograms defined in the package specification.

D) It can be changed and recompiled without making the package specification invalid.

答案:AD

35. User A executes the following command to update the TRANS table)

SQL> UPDATE B.trans SET tr_amt=tr_amt+500 WHERE c_code='C005';

Before user A issues a COMMIT or ROLLBACK command, user B executes the following command on the

TRANS table:

SQl> ALTER TABLE trans MODIFY (tr_type VARCHAR2 (3));

What would happen in this scenario?

A) The transaction for user A is rolled back.

B) The ALTER TABLE command modifies the column successfully.

C) The ALTER TABLE command fails due to the resource being busy.

D) The ALTER TABLE command waits until user A ends the transaction.

答案:C

36. Which three statements are true regarding the fine-grained auditing (FGA)? (Choose three.)

A) FGA is possible on SELECT statements only.

B) The audit trail for FGA is stored in the FGA_LOG$ table.

C) The audit trail for FGA is stored in the AUD_LOG$ table.

D) FGA enables a SQL predicate to define when to audit an event.

E) FGA audits DELETE statements only when audit columns are specified.

F) FGA includes the SQL statement used by the user as part of the audit event entry.

答案:B D F

理解的也不是很透彻,,参考 About Fine-Grained Auditing 小节:

37. Which step do you need to perform to enable a user with the SYSDBA privilege to log in as SYSDBA in

iSQL*Plus?

A) The user must be granted the database administrator (DBA) privilege.

B) The user must be listed in the password file for the authentication.

C) No special setup is needed for the user to connect as SYSDBA in iSQL*Plus.

D) Set up a user in the Oracle Application Server Containers for J2EE (OC4J) user manager, and grant the webDba

role to the user.

答案:D

38. In your Oracle 10g database, you have scheduled a job to update the optimizer statistics at 05) 00 pm

every Friday. The job has successfully completed. Which three pieces of information would you check to

confirm that the statistics have been collected? (Choose three.)

A) average row size

B) last analyzed date

C) size of table in bytes

D) size of table in database blocks

E) number of free blocks in the free list

F) number of extents present in the table

答案:ABD

16.5.1 Verifying Optimizer Statistics

39。您的数据库已打开,并且用户已使用 LISTENER 侦听器连接。系统新的DBA使用以下命令停止监听:

LSNRCTL>停止

当前连接到数据库实例的会话会发生什么?

A) 会话只能执行查询。

B) 会话不受影响并继续正常运行。

C) 活动事务被回滚并且会话被终止。

D) 在侦听器启动之前,会话不允许执行任何操作。  

答案:B

40。被聘为数据库管理员后,您发现只有一个数据库可以正常运行

并且正在被应用程序访问。您想要创建数据库的副本,用于

测试目的。创建副本的最佳方法是什么?

A) 使用 CREATE DATABASE .. 命令创建数据库并手动复制数据

B) 使用数据库配置助手 (DBCA) 从现有数据库创建模板以包含

数据库结构

C) 使用 DBCA 从现有数据库创建模板来包含数据库结构,然后手动

使用 Oracle Data Pump 复制数据

D) 使用 DBCA 从现有数据库创建一个模板,以包含带有数据文件的数据库结构,然后

使用相同的模板在新位置创建数据库

答案:D

41。您正在处理具有高事务量的 24X7 数据库,为了确保数据库上更快的实例恢复,您将 FAST_START_MTTR_TARGET 初始化参数设置为非常低的值。对数据库会有什么影响?

A) 数据库性能将得到增强。

B) 重做日志文件会更频繁地被填满。

C) 数据库的整体性能将会下降。

D) 平均恢复时间 (MTTR) 将增加。

答案:C

10.5.3 调整 FAST_START_MTTR_TARGET 并使用 MTTR Advisor

42。您正在开发在线事务处理 (OLTP) 系统。您注意到 PL/SQL 过程在下午 2:00 执行了两次。这错误地更新了 EMP_SAL 表。如何将表恢复到下午 2:00 的状态?

A) 执行时间点恢复至下午 2:00

B) 使用闪回表功能恢复更改。

C) 从最近的备份中恢复整个数据库并打开它。

D) 发出带有系统更改号 (SCN) 的回滚语句。

 答案:B

Oracle闪回技术总结

43。根据您的备份策略,您对数据库执行了增量 0 级备份。关于此备份的哪种说法是正确的?

A) 备份与镜像复制类似。

B) 备份包含所有已使用的数据块。

C) 备份仅包含未使用的数据块。

D) 备份包含自上次增量 1 级备份以来更改的所有数据块。

答案:B

Oracle 10g OCP 042 题库 31-70 题 共168题

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

如何使用Alter Table语句在MySQL中更改表? 如何使用Alter Table语句在MySQL中更改表? Mar 19, 2025 pm 03:51 PM

本文讨论了使用MySQL的Alter Table语句修改表,包括添加/删除列,重命名表/列以及更改列数据类型。

如何为MySQL连接配置SSL/TLS加密? 如何为MySQL连接配置SSL/TLS加密? Mar 18, 2025 pm 12:01 PM

文章讨论了为MySQL配置SSL/TLS加密,包括证书生成和验证。主要问题是使用自签名证书的安全含义。[角色计数:159]

您如何处理MySQL中的大型数据集? 您如何处理MySQL中的大型数据集? Mar 21, 2025 pm 12:15 PM

文章讨论了处理MySQL中大型数据集的策略,包括分区,碎片,索引和查询优化。

哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么? 哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么? Mar 21, 2025 pm 06:28 PM

文章讨论了流行的MySQL GUI工具,例如MySQL Workbench和PhpMyAdmin,比较了它们对初学者和高级用户的功能和适合性。[159个字符]

如何使用Drop Table语句将表放入MySQL中? 如何使用Drop Table语句将表放入MySQL中? Mar 19, 2025 pm 03:52 PM

本文讨论了使用Drop Table语句在MySQL中放下表,并强调了预防措施和风险。它强调,没有备份,该动作是不可逆转的,详细介绍了恢复方法和潜在的生产环境危害。

您如何用外国钥匙代表关系? 您如何用外国钥匙代表关系? Mar 19, 2025 pm 03:48 PM

文章讨论了使用外国密钥来代表数据库中的关系,重点是最佳实践,数据完整性和避免的常见陷阱。

如何在JSON列上创建索引? 如何在JSON列上创建索引? Mar 21, 2025 pm 12:13 PM

本文讨论了在PostgreSQL,MySQL和MongoDB等各个数据库中的JSON列上创建索引,以增强查询性能。它解释了索引特定的JSON路径的语法和好处,并列出了支持的数据库系统。

如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)? 如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)? Mar 18, 2025 pm 12:00 PM

文章讨论了使用准备好的语句,输入验证和强密码策略确保针对SQL注入和蛮力攻击的MySQL。(159个字符)

See all articles