出自:Oracle认证

The DB_BLOCK_CHECKING initialization parameter is set to OFF. 数据库块检测初始化参数被设定为关  Which block checking would be performed?()
A:The Oracle database will perform block checking for the index blocks only 
B:The Oracle database will not perform block checking for any of the data blocks 
C:The Oracle database will perform block checking for the default permanent tablespace only 
D:The Oracle database will perform block checking for the data blocks in all user tablespaces 
E:The Oracle database will perform block checking for the data blocks in the SYSTEM tablespace only Oracle
在Oracle中,在执行SQL语句时,你不小心使用Update命令将所有的ID值设置成了11111,那么使用()命令可以取消这一操作。
A:EXIT
B:COMMIT
C:ROLLBACK
D:UNDO
Examine the structure if the EMPLOYEES and NEW EMPLOYEES tables: Which MERGE statement is valid?()
A:
B:
C:
D:
Another DBA issues a shutdown abort command on a database on which you were running an online backup. What will happen when you try to restart the database?()  
A: Oracle will automatically take the datafile out of hot backup mode,generate a warning message,and then open the database.
B: Oracle will automatically take the datafile out of hot backup mode and then open the database.
C: Oracle will generate an error when trying to open the database,indicating that a datafile is in hot backup mode.You will need to correct this error before you can open the database.
D: The database will open with the file in hot backup mode. You can restart the backup at any time.
E: The datafile in hot backup mode will be corrupted and you will have to recover it.
The()writes the Flashback Database logs in the flash recovery area.
A: FLSH
B: FLDB
C: RVWR
D: RVRW
E: FBDA
Which three components does the Scheduler use for managing tasks within the Oracle environment?()
A:a job
B:a program
C:a schedule
D:a PL/SQL procedure
See the build instructions for managing Coherence via JMX and put the steps in order.  () 1. Update set-env.cmd (or set-env.sh if you are building on UNIX) to reflect your system environment.  2. Open a command shell and execute set-env.cmd (or source set-env.sh if you are building on UNIX)  3. Run ant build.  4. Deploy the jmx-console.war file found under the build directory to your application server. Be sure to start your application server JVM with the necessary Coherence  Management Framework overrides. For example: -Dtangosol.coherence.management=all  5. To remove build artifacts from your file system, run ’ant clean’
A: 1,2,3,4,5
B: 1,3,2,4,5
C: 1,2,3,5,4
D: 2,1,3,4,5
A customer wants to send JMS messages to a remote WebLogic server from a Java SE application over an unreliable network connection. Which feature of WebLogic JMS will enable the customer to send messages from a Java SE client to a JMS destination that is not always easily reached?()
A:SAF Target
B:SAF Imported Destination
C:SAF Client
D:SAF Server
E:Distributed SAF JMS
Examine the structure of the STUDENTS table: STUDENT_ID NUMBER NOT NULL, Primary Key STUDENT_NAME VARCHAR2(30) COURSE_ID VARCHAR2(10) NOT NULL MARKS NUMBER START_DATE DATE FINISH_DATE DATE You need to create a report of the 10 students who achieved the highest ranking in the course INT SQL and who completed the course in the year 1999. Which SQL statement accomplishes this task?()
A:SELECT student_ id, marks, ROWNUM "Rank" FROM students WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC;
B:SELECT student_id, marks, ROWID "Rank" FROM students WHERE ROWID <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks;
C:SELECT student_id, marks, ROWNUM "Rank" FROM (SELECT student_id, marks FROM students WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course_id = 'INT_SQL' ORDER BY marks DESC);
D:SELECT student_id, marks, ROWNUM "Rank" FROM (SELECT student_id, marks FROM students ORDER BY marks DESC) WHERE ROWNUM <= 10 AND finish_date BETWEEN '01-JAN-99' AND '31-DEC-99' AND course _ id ='INT _ SQL';
说出2种以上扩大数据库的方式?
You set the following parameters in the parameter file and restarted the database: Which two statements are true regarding these parameters after the database instance is restarted?()
A:The MEMORY_MAX_TARGET parameter is automatically set to 500 MB
B:The value of the MEMORY_MAX_TARGET parameter remains zero till it is changed manually
C:The PGA_AGGREGATE_TARGET and SGA_TARGET parameters are automatically set to zero
D:The lower bounds of PGA_AGGREGATE_TARGET and SGA_TARGET parameters are set to 90 MB and 270 MB, respectively
What are the prerequisites for performing flashback transactions? ()(Choose all that apply)
A:Supplemental log must be enabled
B:Supplemental log must be enabled for the primary key
C:Undo retention guarantee for the database must be configured
D:”EXECUTE “ permission on the DBMS_FLASHBACK package must be granted to the user
Which technique retrieves the error number when explicit DML fails?()
A:SQLCODE in an On-Error trigger. 
B:SQLCODE in an exception handler. 
C:DBMS_ERROR_CODE in an On-Error trigger. 
D:DBMS_ERROR_CODE in an exception handler. 
 Form_A invokes Form_B in Post-Only mode. Which statement must be true?()
A:Form_A has updates or deletes that have not been posted or committed, and Form_A invokes Form_B with the OPEN_FORM built-in. 
B:Form_A has updates or deletes that have not been posted or committed, and Form_A invokes Form_B with the CALL_FORM built-in. 
C:Form_A has inserts that have not been posted or committed, and Form_A invokes Form_B with the OPEN_FORM built-in. 
D:Form_A has inserts that have not been posted or committed, and Form_A invokes Form_B with the CALL_FORM built in.
Which three data components are needed for point-in-time recovery?()
A:The error log
B:The backup log
C:The general query log
D:Binary logs
E:The data backup
F:Configuration files
()是一个单元操作,要么全部执行成功,要么全部执行失败。
A:事务
B:插入操作
C:更新操作
D:删除操作
说明数据库模式与用户之间的区别。
Which statement regarding the contents of the V$PARAMETER view is true?()
A:displays only the list of default values
B:displays only the list of all basic parameters
C:displays the currently in effect parameter values
D:displays only the list of all advanced parameters
E:displays the list of all the parameter files of a database
What are the recommendations for Oracle Database 11g installation to make it Optimal Flexible Architecture (OFA)-compliant?()
A: ORACLE_BASE should be set explicitly.
B: An Oracle base should have only one Oracle home created in it.
C: Flash recovery area and data file location should be on separate disks.
D: Flash recovery area and data file location should be created under Oracle base in a non-Automatic Storage Management (ASM) setup.
You are developing the Payroll application that contains the SALARY and COMMISSION forms. When a user invoked the COMMISSION form from the SALARY form, the SAL value should be passed to the COMMISSION form. In which data form and at what time should you define the parameter to accept the value?()
A:SALARY form at runtime. 
B:SALARY form at design time. 
C:COMMISSION form at runtime. 
D:COMMISSION form at design time. 
Which method would you use to undo the changes made by a particular transaction without affecting the changes made by other transactions?()  
A: point-in-time recovery
B: execute the ROLLBACK command with transaction number
C: flashback the database to before the transaction was committed
D: determine all the necessary undo SQL statements from FLASHBACK_TRANSACTION_QUERY and use them for recovery
When performing recover of a database in NOARCHIVELOG mode with RMAN, the target database must be in the () state to restore the control file.
A:OPEN
B:IDLE
C:MOUNT
D:NOMOUNT
以下关于表空间的叙述正确的是()
A:表是表空间的基础,表空间是所有相关表所占空间的总和
B:表空间是由一至多个数据文件构成的,每个表占用一个数据文件
C:一张表可以占用多个表空间,一个表空间也可以容纳多张表
D:一个表空间可以容纳多张表,但一张表只能归属于一个表空间
E:一个空数据库是不占用表空间的
下列哪个进程用于将修改过的数据从内存保存到磁盘数据文件中?()
A:DBWR
B:LGWR
C:RECO
D:ARCH
What is the outcome of this block of code?()
A:It creates a task and workload, and executes the task.
B:It creates a task and workload but does not execute the task.
C:It produces an error because a template has not been created.
D:It produces an error because the SQL Tuning Set has not been created.
Archive file format LOG_ARCHIVE_FORMAT is defined as arch_%s.arc. A week ago, you just archived arch_4.arch to tape, then removed all archived files to save disk space. Yesterday you saw arch_10.arc and arch_11.arc on the disk. Today, you see arch_3.arc in the archive directory.  Which two could you happened?()
A:Redo logs were restored from tape for recovery. 
B:The file names are only used when they are copied to tape. 
C:The database was opened with the RESETLOGS option and log numbers restarted. 
D:Log names run in circular fashion; arch_3.arc is re-created by the ARCn process. 
E:A file name is randomly chosen by the archive process; as long as it is unique, it does not have to be sequential.
The EMPLOYEES table contains these columns: EMPLOYEE_ID NUMBER(4) ENAME VARCHAR2 (25) JOB_ID VARCHAR2(10) Which SQL statement will return the ENAME, length of the ENAME, and the numeric position of the letter "a" in the ENAME column, for those employees whose ENAME ends with a the letter "n"?()
A:SELECT ENAME, LENGTH(ENAME), INSTR(ENAME, 'a') FROM EMPLOYEES WHERE SUBSTR (ENAME, -1,1) = 'n';
B:SELECT ENAME, LENGTH(ENAME), INSTR(ENAME, ,-1,1) FROM EMPLOYEES WHERE SUBSTR (ENAME, -1,1) = 'n';
C:SELECT ENAME, LENGTH(ENAME), SUBSTR(ENAME, -1,1) FROM EMPLOYEES WHERE INSTR (ENAME, 1,1) = 'n';
D:SELECT ENAME, LENGTH(ENAME), SUBSTR(ENAME, -1,1) FROM EMPLOYEES WHERE INSTR (ENAME, -1,1) = 'n';
To control the execution of a server process when it is receiving bad packets from a potentially malicious client, you set the SEC_PROTOCOL_ERROR_FURTHER_ACTION initialization parameter as follows: SQL> ALTER SYSTEM SET SEC_PROTOCOL_ERROR_FURTHER_ACTION = Drop,10; What is the significance of this setting?()
A:It terminates the client connection after 10 bad packets and the client cannot reconnect to the same instance.
B:It terminates the client connection after 10 bad packets but the client can still reconnect, and attempt the same operation again.
C:It terminates the client connection 10 seconds after receiving a bad packet and the client cannot reconnect to the same instance.
D:It terminates the client connection after receiving a bad packet and the client can reconnect to the same instance after 10 minutes.
You create a tabular employee report and are concerned about readability because the employee records are very close together. What is the best way to increase the amount of white space between the records?()
A:In the layout model increase the size of the employee record fields. 
B:In the report wizard increase the display width values of the employee record fields. 
C:In the property palette increase the size of the repeating frame surrounding the employee records. 
D:In the life previewer, high light a field, click on the parent frame icon and make the frame bigger verticall.
Which three statements about subqueries are true?()
A:A single row subquery can retrieve only one column and one row.
B:A single row subquery can retrieve only one row but many columns.
C:A multiple row subquery can retrieve multiple rows and multiple columns.
D:A multiple row subquery can be compared by using the “>” operator.
E:A single row subquery can use the IN operator.
F:A multiple row subquery can use the “=” operator.