出自:Oracle认证

You have a master-detail relationship in the EMPLOYEE form module. You set the Delete Record Behavior property to Cascading. When a user deletes a master record, how does Forms implement the cascade-delete foreign-key rule? ()
A:With a Pre-Delete trigger. 
B:With an On-Delete trigger. 
C:With a Post-Delete trigger. 
D:With the On-Check-Delete-Master trigger.
John, a junior workflow developer, has approached you for advice on a workflow process that he is defining. He is unclear about the implications of selecting the Runnable checkbox while defining the Process Activity. What advice would you offer?()
A:Runnable allows the workflow engine to compile the process.
B:Runnable allows the process to be included as a stand-alone subprocess.
C:Runnable allows the workflow engine to check its status during process execution.
D:Runnable allows the workflow engine to define this as a top-level process and initiate it
Exhibit Examine the data in the EMPLOYEES and DEPARTMENTS tables. You want to retrieve all employees' last names, along with their manager's last names and their department names. Which query would you use?()
A:SELECT last_name, manager_id, department_name FROM employees e FULL OUTER JOIN department d ON (e.department_id = d.department_id);
B:SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.managaer_id = m.employee_id) LEFT OUTER JOIN department d ON (e.department_id = d.department_id);
C:SELECT e.last_name, m.last_name, department_name FROM employees e RIGT OUTER JOIN employees m on ( e.manager_id = m.employee_id) FULL OUTER JOIN department d ON (e.department_id = d.department_id);
D:SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGT OUTER JOIN department d ON (e.department_id = d.department_id);
E:SELECT e.last_name, m.last_name, department_name FROM employees e RIGHT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id)
F:SELECT last_name, manager_id, department_name FROM employees e JOIN department d ON (e.department_id = d.department_id);
以下关于PL/SQL变量类型的说法正确的是()
A:CHAR类型的变量比VARCHAR2类型的变量更省空间
B:对VARCHAR2类型变量的访问效率要高于CHAR类型的变量
C:BOOLEAN变量的值只有两种:TRUE和FALSE
D:DATE类型的变量取值可以精确毫秒
E:PLS_INTEGER与BINARY_INTEGER类型变量取值范围相同
Examine the following command that is used to duplicate a database on the same host:   RMAN> RUN {  ALLOCATE AUXILIARY CHANNEL, aux 1 DEVICE TYPE DISK; DUPLICATE TARGET DATABASE TO auxdb SKIP READONLY; / } Which two statements describe the effect after the database is duplicated successfully?()
A: The data files of the read-only tablespaces in the target database are not duplicated
B: The read-only tablespaces in the target database are still defined in new the database
C: The read-only tablespaces in the target database are changed to online after duplication
D: The data files of the read-only tablespaces in the target database get duplicated
E: The read-only tablespaces in the target database are not defined in the new database
Examine the following values of the initialization parameters in the database having the SID ORCL:   BACKGROUND_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/bdump USER_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/udump CORE_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/cdump DIAGNOSTIC_DEST=   The environment variables have the following value:   ORACLE_BASE=/u01/app/oracle  ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1   What is the location of the Automatic Diagnostic Repository (ADR) home?()
A: /u01/app/oracle/product/11.1.0/db_1
B: /u01/app/oracle
C: $ORACLE_HOME/bdump
D: $ORACLE_HOME/log
As A DBA, which of the following methods can you use to make a backup of your table?()
A:Recover Manager (RMAN) utility
B:Import utility
C:Export utility
D:O/S backup command
In which situations will the ASM metadata backup help you recover the ASM disk in a disk group?()
A: when one or more file directory paths are accidentally deleted from an ASM disk group
B: when one of the disks in a disk group is accidentaly unplugged
C: when the data file on an ASM disk group gets corrupted
D: when one or more disks in an ASM disk group are lost
下列哪一个命令用来显示RMAN通道的配置信息?()
A:LIST
B:DISPLAY
C:SHOW
D:都可以
Which capability exists only in java.io.FileWriter?()
A:Closing an open stream.
B:Flushing an open stream.
C:Writing to an open stream.
D:Writing a line separator to an open stream.
You create a new Automatic Database Diagnostic Monitor (ADDM) task: instance_analysis_mode_task. To view the ADDM report, you use the following command: You want to suppress ADDM output relating to Segment Advisor actions on user SCOTT's segments.What would you do to achieve this?()
A:Add a finding directive for the ADDM task.
B:Add a segment directive for the ADDM task.
C:Add a parameter directive for the ADDM task.
D:Disable the Segment Advisor from the Automatic Maintenance Task.
The table contains a million rows for zonewise analysis in the DSS system. DML operations areperformed very rarely on the table. You decide to prepare an index on the ZONE column to enhance theperformance of the queries on the ZONE column.  Which type of index would you select in this scenario()
A:Bitmap index
B:Reverse key index
C:Normal B-Tree index
D:Function-based index
You are granted the CREATE VIEW privilege. What does this allow you to do?()
A:Create a table view.
B:Create a view in any schema.
C:Create a view in your schema.
D:Create a sequence view in any schema.
E:Create a view that is accessible by everyone.
F:Create a view only of it is based on tables that you created.
What does the term application partitioning refer to?()
A:The feature of a forms application enabling it to run both in client-server mode and on the Web. 
B:Storing PL/SQL program units between the Oracle server and the application to make optimal use of available resources. 
C:The nature of a three-tier architecture, where the form module and processing software reside on an application server. 
D:The feature of a forms application that is able to use Ethernet, twisted pair, and wireless data connections.
Upon starting your database, you receive the following error: You can choose from the following steps: 1.Restore the database datafiles. 2.Issue the alter database clear unarchived logfile group 1 command. 3.Issue the alter database open command. 4.Issue the alter database open resetlogs command. 5.Recover the database using point-in-time recovery. 6.Issue the Startup Mount command to mount the database. 7.Back up the database. Which is the correct order of these steps in this case?()
A:1,6,5,4,7
B:6,5,4
C:6,2,3,7
D:1,6,3
E:The database cannot be recovered
内连接查询操作列出与连接条件匹配的数据行,它使用比较运算符比较被连接列的列值。内连接分()。
A:等值连接
B:不等连接
C:自然连接
D:交叉连接
Which of the following is a benefit of ASM fast disk resync?()
A:Failed disks are taken offline immediately but are not dropped.
B:Disk data is never lost.
C:By default, the failed disk is not dropped from the disk group ever, protecting you from loss of that disk.
D:The failed disk is automatically reformatted and then resynchronized to speed up the recovery process.
E:Hot spare disks are automatically configured and added to the disk group.
撤销用户指定权限的命令是()。
A:REVOKE
B:REMOVE RIGHT
C:DROP RIGHT
D:DELETE RIGHT
You have implemented OMF for redo log management. Which of the following choices reflects a log filename that might be employed when OMF is enabled?()
A:log01.log 
B:logORCL01.log 
C:1_2.logALTER ROLLBACK SEGMENT 
D:ora_1_asdf1234.log
Which of the following can be used in conjunction with a Flashback Versions Query to filter the results?()
A: A range of SCN values
B: A list of SCN values
C: A starting and ending timestamp
D: Minimum and maximum sequence values
E: A list of sequence values
Which two are true regarding external tables? ()
A:External tables can be updated. 
B:External tables are read-only tables. 
C:Indexes can be created on external tables. 
D:Indexes cannot be created on external tables.
Which of the following is not a valid linguistic sort element?()
A:Accent expansion
B:Canonical equivalence
C:Reverse secondary sorting
D:Ignorable characters
E:Character rearrangement
A programmer has an algorithm that requires a java.util.List that provides an efficient implementation of add(0, object), but does NOT need to support quick random access. What supports these requirements?()
A:java.util.Queue
B:java.util.ArrayList
C:java.util.LinearList
D:java.util.LinkedList
Oracle Net is responsible for establishing and maintaining the connection between the client application and the server. On the client side, Oracle Net is responsible for which three connectivity issues?()
A:The location of the server.
B:The Oracle user being connected.
C:Privileges and role information.
D:Protocol involved in the connection.
E:How to handle exceptions and interrupts.
At design time, you create a query record group for the LOV associated with the HOTEL text item in a form module for the Travel Planner Application. When is the record group populated?()
A:When the user navigates to the HOTEL item. 
B:When the form module successfully compiles. 
C:After Form Builder validates the SELECT statement and dismisses the New Record Group dialog box. 
D:When the user enters data in the HOTEL item, and the Validate from List property for the HOTEL item is set to YES. 
Given: What is the result?()
A:test end
B:Compilation fails.
C:test runtime end
D:test exception end
E:Throwable is thrown by main at runtime.
Which statement correctly describes the function of Oracle9i Cache Fusion feature?()
A:It provides each session with its own view of the database at a different point in the past. 
B:It enables you to execute scalable applications on a clustered database without having to partition the users or the database tables. 
C:It lets you dynamically reassign memory in your database buffer cache to different block buffer sizes. 
D:It allows you to add new sites to multimaster replication environment without quiescing the master definition site.
Flushing dirty buffers out of the buffer cache is influenced to the greatest extent by which of the following process?()
A:ARCH 
B:SMON 
C:LGWR
D:SERVER
Your database operates in ARCHIVELOG mode and all the tablespaces are online. Due to a user error, you decided to perform an incomplete recovery.  Which two tasks would you be required to perform in the recovery process? ()
A:open the database with the RESETLOGS option
B:open the database with the RESTRICTED option
C:recover all the data files to the same system change number (SCN)
D:recover to the required SCN only that data file in which the error occurred
DRAG DROP Click the Task button.