Oracle OCP 052最新考试题库解析-20180608
更新时间:2024-01-19 16:29:01 阅读量: 教育文库 文档下载
- oracle数据库推荐度:
- 相关推荐
2018年OCP 052最新考试题库解析-20180608
题库新特点:
更加灵活,题库的顺序与考试时的顺序每场都在变化
更加考验知识点的掌握,题库答案为二,考试时要求选择最佳一个答案
整理:CUUG
1、Which three are true about undo segments and undo tablespaces in the same database and instance?
? A. Multiple transactions run by the same Oracle user can share a single undo segment. ? B. Multiple transactions run by different Oracle users can share a single undo segment. ? C. A serial transaction can use multiple undo segments.
? D. Undo segments are automatically dropped shortly after transactions that use them commit. ? E. A new undo segment is always created for each transaction. ? F. A database can have multiple undo tablespaces. ? Correct Answer: ABF
2、Which two are true about the Data Recovery Advisor?
? A. It can be used only for databases that are running in ARCHIVELOG mode. ? B. It can be used when the database is closed.
? C. It can be used to validate database recovery strategies. ? D. It provides intelligent database problem analysis. ? E. It can be used to validate database backup strategies.
? F. It can be used only for databases with FLASHBACK enabled. ? Correct Answer: CD
3、Which two are true about Oracle Data Pump in Oracle Database 11g Release 2?
? A. If the directory used in the export operation has existing dump files, it overwrites them. ? B. It allows encryption to be performed without using a password. ? C. It supports the renaming of tables during import. ? D. It supports the export of specific views as tables.
? E. It allows compression levels to be defined for the export. ? Correct Answer: BE
4、 For your ORCL database.
1. The instance is started using an spfile. 2. The database is opened. 3. It is in ARCHIVELOG mode.
4. CONTROL FILE AUTOBACKUP IS ON. Examine this command:
RMAN> backup as copy datafile ‘users01.dbf’,’example01.dbf’; Which four files are backed up? ? A. spfile
? B. undo01.dbf ? C. users01.dbf ? D. archivelogs ? E. sysaux01.dbf ? F. control file ? G. system01.dbf ? H. example01.dbf Correct Answer: ACFH
5、 When does an incremental checkpoint occur?
? A. when DBWn writes dirty buffers as part of its normal process ? B. when the alter system checkpoint statement is executed. ? C. when a user tablespace is taken offline ? D. when an online redo log switch occurs ? Correct Answer: A
6、 Examine this query and its output: SQL> select sid,event,blocking_session from v$session
where blocking_session is not null; SID EVENT BLOCKING_SESSION --- ----------------------------------- --------------------------- 105 enq:TX – row lock contention 15
Which two are true?
? A. The blocked session is waiting on a shared table lock. ? B. The blocked session is waiting on an enqueue. ? C. The blocking session is waiting on a row-level lock. ? D. Session 105 is blocked by session 15. ? E. Session 105 is blocking session 15. ? Correct Answer: BD
? 7、 In one of your databases:
1. USER1 and USER2 have no system privileges. 2. ROLE1 only has these privileges: * create session * create table * create view
Examine these commands: SQL> conn / as sysdba Connected
SQL> GRANT create table,role1 to user1 with admin option; grant successed
SQL> conn user1/oracle_4u Connected
SQL> GRANT role1 to user2; grant successed
7、Which command would you execute and as which user, to revoke the create table privilege from USER2?
? A. Revoke create table from user2 as user1 ? B. Revoke create table from user1 as sys ? C. Revoke create table from role1 as user1 ? D. Revoke create table from role1 as sys ? E. Revoke create table from user2 as sys ? Correct Answer: D
如果用user1回收角色的权限,会报错: SQL> revoke create session from role1; revoke create session from role1 *
ERROR at line 1:
ORA-01031: insufficient privileges
8、 Which two are true about server-generated alerts? ? A. Stateful alerts must always be cleared manually.
? B. They are visible in Oracle Enterprise Manager by default. ? C. All stateful alerts can be found in DBA_ALERT_HISTORY. ? D. They can be based only on database metrics.
? E. Stateless alerts cannot be found in DBA_OUTSTANDING_ALERTS. ? F. They can be based only on instance metrics. ? Correct Answer: BE
9、 Your database instance is in NOMOUNT state.
Your select the delete option in the database configuration assistant (DBCA) for your database. What is the outcome?
? A. DBCA is able to delete the data files but not the services. ? B. DBCA shuts down the instance and deletes the database. ? C. DBCA is able to delete the services but not the data files.
? D. DBCA prompts you to open the database, and then proceeds with the deletion. Correct Answer: D
10、 Which is true when a database instance is shut down?
? A. IMMEIATE, TRANSACTIONAL, and NORMAL modes wait for all uncommitted transactions either to commit or rollback and then close the database
? B. IMMEIATE, TRANSACTIONAL, and NORMAL modes all result in a checkpoint
? C. Only TRANSACTIONAL, and NORMAL modes wait for all uncommitted transactions to commit or rollback and then close the database
? D. Neither the IMMEDIATE nor the ABORT mode rolls back uncommitted transactions. Correct Answer: B
11 、 The ORCL database has CONTROL FILE AUTOBACKUP and BACKUP OPTIMIZATION enabled. USER1.EMP is a table in tablespace TBS1. There are no existing backups of the database. Examine these commands: $rman target /
RMAN> BACKUP DATABASE RMAN> exit
$sqlplus / as sysdba
SQL>UPDATE USER1.EMP set SAL=5000 WHERE eno=10;
1 row updated SQL>COMMIT Commit Complete SQL>exit
RMAN>CONFIGURE EXECUTE FOR TABLESPACE tbs1; RMAN>BACKUP INCREMENTAL LEVEL 1 DATABASE; ? What is the outcome?
? A. It takes a level 0 incremental backup of ORCL with TBS1. ? B. It takes a level 1 incremental backup of ORCL without TBS1. ? C. It takes a level 0 incremental backup of ORCL without TBS1. ? D. It takes a level 1 incremental backup of ORCL with TBS1. ? Correct Answer: C
12、 Which two statements are true about dispatchers used by the Oracle shared server? ? A. Multiple user processes can connect to a single dispatcher.
? B. They return completed requests to the appropriate user processes. ? C. A dispatcher is created for each user process.
? D. Multiple dispatchers can connect to a single server process.
? E. They pull requests from the requests queue and process them until they are complete. ? Correct Answer: AB
13、 Examine this session output: SQL>connect scott/tiger Connected
SQL>select name,value from v$parameter where name =’audit_trail’; NAME VALUE -------- -------- audit_trail DB SQL>audit all on emp; Audit succeeded
Which two will generate an audit record?
? A. every DDL statement executed by SCOTT that affects SCOTT.EMP
? B. every UPDATE statement executed by SCOTT that updates SCOTT.EMP
? C. only the first SELECT statement executed by SCOTT is a session on SCOTT.EMP ? D. only the first DML statement executed by SYSTEM in a session on SCOTT.EMP ? E. every UPDATE statement executed by SCOTT that updates HR.EMP ? F. any DML statement executed by SYS on SCOTT.EMP
? Correct Answer: AB
14、In which two cases is a consistent database backup created?
? A. when the RMAN BACKUP command is used while the database is OPEN READ ONLY
? B. when the RMAN BACKUP AS COPY command is used while the database is OPEN RESTRICTED
? C. when the RMAN BACKUP AS COPY command is used while the database is OPEN
? D. when O/S commands are used to copy database files after a database instance is shut down normally
? E. when the RMAN BACKUP command is used while the database is mounted Correct Answer: AD
只读表空间下用rman备份时没有发生检查点,无需更改数据文件头部,所以可以 备份数据库。
15、 Which two are true about UNDO data? ? A. Inactive UNDO is never written to disk. ? B. Active UNDO is always kept in memory ? C. Only DML statements generate UNDO. ? D. Active UNDO can never be overwritten.
? E. It can be used to restore a table by using FLASHBACK TABLE.
? F. Inactive UNDO cannot be overwritten until the elapsed time since becoming inactive exceeds UNDO RETENTION. Correct Answer: DE
16、 You successfully executed these commands: CONNECT scott/tiger@prod1
CREATE DATEBASE LINK db_prod2 CONNECT TO scott IDENTIFIED BY tiger USING ‘PROD2’
Which type of database link is created? ? A. private current user database link. ? B. public current user database link
? C. private fixed user database link ? D. public connected user database link ? E. public fixed user database link Correct Answer: C
Create database link connect to current …
正在阅读:
Oracle OCP 052最新考试题库解析-2018060801-19
欧姆定律计算题题型汇总07-29
液 氧 供 气 站 操 作 说 明 书05-11
信息管理考试重点03-09
一测模拟题(77+50)03-08
鲸鱼的自述作文450字06-20
最新【圣经故事大全集】圣经故事:绿林好汉耶弗他.doc04-27
2017年度政府采购评审专家题库03-22
弟子规21-40教案03-14
- exercise2
- 铅锌矿详查地质设计 - 图文
- 厨余垃圾、餐厨垃圾堆肥系统设计方案
- 陈明珠开题报告
- 化工原理精选例题
- 政府形象宣传册营销案例
- 小学一至三年级语文阅读专项练习题
- 2014.民诉 期末考试 复习题
- 巅峰智业 - 做好顶层设计对建设城市的重要意义
- (三起)冀教版三年级英语上册Unit4 Lesson24练习题及答案
- 2017年实心轮胎现状及发展趋势分析(目录)
- 基于GIS的农用地定级技术研究定稿
- 2017-2022年中国医疗保健市场调查与市场前景预测报告(目录) - 图文
- 作业
- OFDM技术仿真(MATLAB代码) - 图文
- Android工程师笔试题及答案
- 生命密码联合密码
- 空间地上权若干法律问题探究
- 江苏学业水平测试《机械基础》模拟试题
- 选课走班实施方案
- 考试题库
- 20180608
- 解析
- Oracle
- 最新
- OCP
- 052
- 南京外国语学校24届体育节
- 外国教育思想家
- 社会工作概论(补修课)选择判断答案
- 学前教育专业(专科)专业实习日记
- 2019河北承德公务员考试行测类比推理练习题及答案(知满天教育) - 图文
- cadence - FlowPlan操作
- 美食协议最终版
- 《面向对象程序设计》第01章在线测试
- 2017年春尔雅-大学启示录课后题及答案
- 工程项目中的风险评估研究
- 7状态空间设计法极点配置观测器
- 32个设计师常用的英文字体下载
- 弱电智能化施工进度计划范本
- “个人与团队管理”课程重难点分析与练习
- 招标目录
- 英才风采-武清图书馆
- EPC总承包项目对于分包商的管理办法
- 《金融理论与实务》真题精讲班讲义
- 关于发布《证券投资基金会计核算业务指引》的通知
- 关于“四好农村路”示范县创建工作任务分工的通知