没有合适的资源?快使用搜索试试~ 我知道了~
本人新测,一次性过052考试。。
资源推荐
资源详情
资源评论
Vendor: 1z0-052
Exam Code: Oracle Database 11g: Administration I
分卷: A(共73题)
1、You perform differential incremental level 1 backups of your database on each working day and level 0
backup on Sundays, to tape. Which two statements are true about differential incremental backups? (Choose
two.) A D
A. The backup performed on Sundays contains all the blocks that have ever been used 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 backup.
D. The backup performed on Monday contains all the blocks that have changed since the level 0
backup, and every other working day contains all the blocks that have changed since the level 1
backup.
2、
View the Exhibit to examine the output produced by the following query at three different times
since the database
instance started and has experienced workloads of different capacities:
SQL> SELECT substr(component, 0, 10) COMP, current_size CS,user_specified_size US
FROM v$memory_dynamic_components
WHERE current_size!=0;
What do you infer from this? C
A. The database instance is running with manual PGA management.
B. The database instance is running with manual shared memory management.
C. The database instance has the MEMORY_TARGET value set to a nonzero value.
D. All sessions are connected to the database instance in dedicated mode, and no RMAN or parallel
query operations have been performed.
3、Identify two situations in which you can use Data Recovery Advisor for recovery. (Choose
two.) AD
A. The database files are corrupted when the database is open.
B. The user has dropped an important table that needs to be recovered.
C. The archived redo log files are missing for which the backup is not available.
D. The database is not opening because the required database files are missing.
4、You have two tables with referential integrity enforced between them. You need to insert
data to the child table first because it is going to be a long transaction and data for the parent
table will be available in a later stage, which can be inserted as part of the same
transaction.View the Exhibit to examine the commands used to create tables.Which action
would you take to delay the referential integrity checking until the end of the transaction? A
A. Set the constraint to deferred before starting the transaction.
B. Alter the constraint to NOVALIDATE state before starting the transaction.
C. Enable the resumable mode for the session before starting the transaction.
D. Set the COMMIT_WAIT parameter to FORCE_WAIT for the session before starting the transaction.
5、Your database is open and the LISTENER listener is running. The new DBA of the system stop
the listener by using the command:
LSNRCTL> STOP
What happens to the sessions that are presently connected to the database instance? B
A. The sessions are able to perform only queries.
B. The sessions are not affected and continue to function normally.
C. The sessions are terminated and the active transactions are rolled back.
D. The sessions are not allowed to perform any operations till the listener is started.
6
、
You executed this command to create a temporary table:
SQL> CREATE GLOBAL TEMPORARY TABLE report_work_area (startdate DATE, enddate DATE, class
CHAR(20)) ON COMMIT PRESERVE ROWS;
Which statement is true about the rows inserted into the REPORT_WORK_AREA table during a transaction? A
A. The rows stay in the table only until session termination.
B. The rows stay in the table only until the next transaction starts on the table.
C. The rows are visible to all current sessions after the transaction is committed.
D. The rows stay available for subsequent sessions after the transaction is committed.
7、Examine this command:
SQL> CREATE GLOBAL TEMPORARY TABLE report_work_area
(startdate DATE,
enddate DATE, class CHAR(20))
ON COMMIT PRESERVE ROWS;
Which three statements are true about rows inserted into REPORT_WORK_AREA? (ABE)
A. Rows will be lost if a ROLLBACK is done.
B. Rows will be lost upon session failure.
C. Rows are visible to all sessions logged in by the same user until the session that inserted the
rows terminates.
D. Rows are visible to all sessions logged in by all users granted the DBA role until the session that
inserted the rows terminates.
E. Rows will be lost upon session normal termination.
F. Rows are visible globally to all sessions logged in by any user until the session that inserted the
rows terminates.
8、In which of the scenarios will the DBA perform recovery? (Choose all that apply.) BE
A. The alert log file is corrupted.
B. A tablespace is accidentally dropped.
C. One of the redo og members is corrupted.
D. A database user terminates the session abnormally.
E. The hard disk on which the data file is stored is corrupted.
9、 Note the following structures in your database server:
1. Extents
2. OS Blocks
3. Tablespace
4. Segments
5. Oracle Data Block
Which option has the correct arrangement of these structures from the smallest to the largest? A
A. 2, 5, 1, 4, 3
B. 1, 2, 3, 4, 5
C. 5, 2, 1, 3, 4
D. 2, 1, 5, 4, 3
10、You are working on an instance started using the SPFILE. You want to move the Flash Recovery Area of
your database to a new location. You want the Flashback log files to be stored in the new location. Given
below are the steps to accomplish the task in random order:
1、Shut down the instance.
2、Change the value of the DB_RECOVERY_FILE_DEST initialization parameter to a new value.
3、Execute the ALTER DATABASE FLASHBACK OFF command.
4、Start up the instance and mount the database.
5、Execute the ALTER DATABASE FLASHBACK ON command.
6、Open the database.
Select the correct order in which these tasks need to be performed. A
A. 2, 1, 4, 3, 5, 6
B. 1, 4, 3, 2, 6, 5
C. 1, 4, 2, 6, 3, 5
D. 3, 2, 1, 4, 5, 6
11、 A user, who is authenticated externally, logs in to a remote machine and connects to the
database instance. What action would you take to ensure that a user cannot connect to the database
instance by merely logging in to a remote machine? C
A. Set REMOTE_OS_ROLES to FALSE.
B. Set the OS_ROLES parameter to FALSE.
C. Set the REMOTE_OS_AUTHENT parameter to FALSE.
D. Set the REMOTE_LOGIN_PASSWORD_FILE parameter to NONE.
12、 Your database instance is started using the server parameter file (SPFILE). You executed a
command to change the value of the LOG_BUFFER initialization parameter:
ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH;
What would be the outcome of this command? C
A. The command succeeds only if Automatic Memory Management is not enabled.
B. The command succeeds, but you need to restart the database for changes to take effect.
C. The command returns an error because the size of the redo log buffer cannot be changed
dynamically.
D. The parameter value is changed and it comes into effect as soon as space becomes available in
the System Global Area (SGA).
13、The database instance is currently using SPFILE. View the Exhibit and examine the error that
you received while running the DB Structure Integrity check.
Given below are the steps to recover from the error in random order:
1、Shut down the instance, if not already done.
2、Copy one of the remaining control files to a new location.
3、Change the value of the CONTROL_FILES initialization parameter to correspond to the new location of the
control files.
4、Start up the database instance to the NOMOUNT stage.
5、Recover the database to the point of failure of the control file.
6、Open the database.
Identify the correct sequence of steps?
A. 1, 2, 4, 3, 5, 6
B. 2, 4, 3, 5, 6; 1 not require
C. 4, 5, 6, 2, 3; 1 not required
D. 5, 2, 3, 4; 1 and 6 not required
14、View the Exhibit and examine the parameters.
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? D
A. The ALTER TABLE command modifies the column successfully.
B. The DDL operation gets higher priority and transaction for user A is rolled back.
C. The ALTER TABLE command waits indefinitely until user A ends the transaction.
D. The ALTER TABLE command fails after waiting for 60 seconds due to the resource being busy.
15、View the Exhibit to examine the details for an incident.
Which statement is true regarding the
status of the incident? D
剩余88页未读,继续阅读
资源评论
摸着石头
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功