出自:Oracle认证

Click the Exhibit button to examine the structure of the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables. Two new departments are added to your company as shown: DEPARTMENT_ID DEPARTMENT_NAME MGR_ID LOCATION_ID 9998 Engineering 123 9999 Administrative Boston You need to list the names of employees, the department IDs, the department names, and the cities where the departments are, even if there are no employees in the departments and even if the departments are not yet assigned to a location. You need to join the EMPLOYEES, DEPARTMENTS, and LOCATIONS tables to retrieve this information. Which statement do you execute to retrieve this information?()
A:SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d RIGHT OUTER JOIN employees e ON d.department_id = e.department_id RIGHT OUTER JOIN locations l ON d.location_id = l.location_id;
B:SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d FULL OUTER JOIN employees e ON d.department_id = e.department_id FULL OUTER JOIN locations l ON d.location_id = l.location_id;
C:SELECT e.last_name, d.department_id, d.department_name, l.city FROM departments d LEFT OUTER JOIN employees e ON d.department_id = e.department_id LEFT OUTER JOIN locations l ON d.location_id = l.location_id;
D:SELECT last_name, department_id, department_name, city FROM departments d NATURAL JOIN employees e NATURAL JOIN locations l;
The Oracle Net architecture is based on which of the following?()
A:OCI
B:OSI
C:TCP/IP
D:SNMP
In a database with the database character set of US7ASCII and a national character set of UTF-8, which datatypes would be capable of storing Unicode data by default?()
A: VARCHAR2
B: CHAR
C: NVARCHAR2
D: CLOB
E: LONG
The STUDENT_GRADES table has these columns STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) Which statement finds students who have a grade point average (GPA) greater than 3.0 for the calendar year 2001?()
A:SELECT student_id, gpa FROM student_grades WHERE semester_end BETWEEN '01-JAN-2001' AND '31-DEC-2001' OR gpa > 3.;
B:SELECT student_id, gpa FROM student_grades WHERE semester_end BETWEEN '01-JAN-2001' AND '31-DEC-2001' AND gpa gt 3.0;
C:SELECT student_id, gpa FROM student_grades WHERE semester_end BETWEEN '01-JAN-2001' AND '31-DEC-2001' AND gpa > 3.0;
D:SELECT student_id, gpa FROM student_grades WHERE semester_end > '01-JAN-2001' OR semester_end < '31-DEC-2001' AND gpa >=s 3.0;
Identify two correct options regarding subscription processing.() (Choose two.)
A:processes user response
B:processes function activities
C:passes information to Notification Mailer
D:sends event information to a workflow process
E:include the task of executing custom code on the event information
What are the advantages of variable extent size support for large ASM files?()
A:It improves resync operations when the disk comes online after being taken offline for maintenance purposes. 
B:It improves performance in the extended cluster configuration by reading from a local copy of an extent. 
C:Fewer extent pointers are needed to describe the file and less memory is required to manage the extent maps in the shared pool.
D:This feature enables faster file opens because of the reduction in the amount of memory that is required to store file extents.
You lost the index tablespace in your database. You decided to re/x7fcreate the index tablespace and the indexes in the tablespace.  What methods can you use to re/x7fcreate the indexes?()
A:Data Pump
B:SQL scripts
C:SQL*Loader
D:Flashback database
E:Recovery Manager (RMAN) script
For which two constraints does the Oracle Server implicitly create a unique index?()
A:NOT NULL
B:PRIMARY KEY
C:FOREIGN KEY
D:CHECK
E:UNIQUE
During recovery, you need to know if log sequence 11 is in the online redo logs, and if so, you need to know the names of the online redo logs so you can apply them during recovery.  Which view or views would you use to determine this information?() 
A: V$LOGFILE
B: V$RECOVER_LOG
C: V$RECOVER_DATABASE
D: V$LOG_RECOVER
E: V$LOG
Identify the three processes that customers can choose for patching WebLogic Server.()
A:Download patches from My Oracle Support and manage them using Smart Update.
B:Use Enterprise Manager to download patches from My Oracle Support and apply patches to WebLogic.
C:Download patches from My Oracle Support and manually modify the classpath of the application server (though it is not recommended).
D:Download patches from My Oracle Support and apply them using the WebLogic Admin Console.
E:Use the Admin Console to connect to My Oracle Support and download patches and then target them to the domain.
You are creating a resource consumer group using the DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP procedure. Which parameter will you use to define the resource scheduling method used between sessions within the resource group?() 
A: CPU_MTH
B: NEW_CPU_MTH
C: CPU_P1
D: CPU_P2
在Oracle数据字典视图中,()视图存储了数据库中所有对象的信息。
A:dba_*
B:user_*
C:all_*
D:sys_*
By using the transaction identifier provided by () for a particular row change, you can use theFlashback Transaction Query to see the operation performed by the transaction. 
A:Flashback Table
B:Flashback Database
C:Flashback Versions Query
D:the RMAN REPORT command
E:the DBA_PENDING_TRANSACTIONS view
Given: What is the result?()
A:int Long
B:Short Long
C:Compilation fails.
D:An exception is thrown at runtime.
Your database is functioning in ARCHIVELOG mode. In which two situations would you perform a cancel-based recovery? ()
A: You find that one of the redo log members in each redo log group is lost.
B: You find that a data file that belongs to the USERS tablespace is damaged.
C: You find that a data file that belongs to the SYSTEM tablespace is damaged.
D: You find that the current redo log group is damaged and is not available for recovery.
E: You realized while performing a recovery that an archived redo log file needed for recovery is lost.
Given: What is the result?()
A:3,2,1
B:1,2,3
C:Compilation fails.
D:The code runs with no output.
E:An exception is thrown at runtime.
You are managing a single instance Oracle 10g database that utilizes the following parameters:  Which of the following set of commands must you execute to enable Flashback Database?()
A:  STARTUP MOUNT EXCLUSIVE  ALTER DATABASE FLASHBACK ON;  ALTER DATABASE OPEN;
B:  STARTUP MOUNT  ALTER DATABASE FLASHBACK ON;  ALTER DATABASE OPEN RESETLOGS;
C:  STARTUP MOUNT EXCLUSIVE  ATLER DATABASE ARCHIVELOG;  ALTER DATABASE FLASHBACK ON;  ALTER DATABASE OPEN RESETLOGS;
D:  STARTUP MOUNT  ALTER DATABASE ARCHIVELOG;  ALTER DATABASE FLASHBACK ON;  ALTER DATABASE OPEN;
Which view will you use to view information regarding the jobs that are currently running in a database?()
A:DBA_SCHEDULER_RUNNING_JOBS
B:DBA_SCHEDULER_JOB_RUN_DETAILS
C:DBA_SCHEDULER_JOBS
D:DBA_SCHEDULER_JOB_LOG
Scott issues the SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCHAR2(14), loc VARCHAR2(13)}; GRANT SELECT ON DEPT T0 SUE; If Sue needs to select from Scott's DEPT table, which command should she use?()
A:SELECT*FROMDEPT;
B:SELECT*FROMSCOTT.DEPT;
C:SELECT*FROMDBASCOTTDEPT;
D:SELECT*FROMALL_USERSWHEREUSER_NAME=';SCOTT';ANDTABLENAME=';DEPT';;
以下关于SGA和PGA的叙述正确的是()
A:PGA是SGA的一部分,SGA是共享的,但分配后的PGA是不共享的
B:PGA是客户机内存的一部分,而SGA是服务器内存的一部分
C:PGA和SGA都是服务器内存的一部分,前者是私有的,后者是共享的
D:PGA与SGA的总和等于服务器主机内存的总和
On the development database rac0, there are six raw devices: /dev/raw/raw1 through /dev/raw/raw6. /dev/raw/raw1 and /dev/raw/raw2 are 8GB each, and the rest are 6GB each. An existing disk group +DATA1, of NORMAL REDUNDANCY, uses /dev/raw/raw1 and /dev/raw/raw2.  Which series of the following commands will drop one of the failure groups for +DATA1, create a new disk group +DATA2 using two of the remaining four raw devices, and then cancel the drop operation from +DATA1? ()
A:A
B:B
C:C
D:D
Examine the structure of the EMPLOYEES table: You need to update the records of employees 103 and 115. The UPDATE statement you specify should update the rows with the values specified below: Which UPDATE statement meets the requirements?()
A:
B:
C:
D:
E:
You are working on the APPDB database as a DBA. The database has a default Flashback Data Archive DFLA1 created on it. You issued the following command to drop the Flashback Archive FLA1: DROP FLASHBACK ARCHIVE fla1,What is the effect of this command?()
A:The Flashback Archive FLA1 is dropped only if it is empty.
B:The tablespace having Flashback Archive is dropped.
C:The Flashback Archive FLA1 is dropped after moving the existing data in it to the default Flashback Archive.
D:The Flashback Data Archive and historical data are dropped.
Top N analysis requires () and ().
A:the use of rowid
B:a GROUP BY clause
C:an ORDER BY clause
D:only an inline view
E:an inline view and an outer query
You have joined a new organization as a Database Administrator. The Security Administrator in your organization has kept human errors, such as erroneously dropping users, tables, and important data, to a minimum by carefully granting only the necessary privileges to each user. As a result of several ongoing transactions within your database, you discover that the flashback logs are rapidly increasing in the flash recovery area. To avoid out-of-space errors, you decide to delete the flashback logs from the flash recovery area. How can you delete the flashback logs from the database if your database is up and running?()
A: Shut down the database using the SHUTDOWN command. Mount the database using the STARTUP MOUNT EXCLUSIVE command and disable Flashback Database using the ALTER DATABASE FLASHBACK OFF statement.
B: Change the parameter setting in the SPFILE for the DB_RECOVERY_FILE_DEST parameter using the ALTER SYSTEM SET DB_RECOVERY_FILE_DEST=’’ SCOPE=BOTH statement while the database is up and running.
C: Shut down the database using the SHUTDOWN command. Mount the database using the STARTUP MOUNT EXCLUSIVE command. Change the parameter setting in the SPFILE for the DB_RECOVERY_FILE_DEST parameter using the ALTER SYSTEM SET DB_RECOVERY_FILE_DEST=’’ SCOPE=BOTH statement. Disable Flashback Database using the ALTER DATABASE FLASHBACK OFF statement.
D: Change the parameter setting in the SPFILE for the DB_RECOVERY_FILE_DEST parameter using the ALTER SYSTEM SET DB_RECOVERY_FILE_DEST=’’ SCOPE=BOTH statement. Shut down the database using the SHUTDOWN command. Mount the database using the STARTUP MOUNT EXCLUSIVE command and disable Flashback Database using the ALTER DATABASE FLASHBACK OFF statement.
取大于或等于变量V_NUM的最小整数,应该以下哪项操作()
A:CEIL(V_NUM)
B:FLOOR(V_NUM)
C:TRUNC(V_NUM)
D:ROUND(V_NUM)
What is true about updates through a view?()
A:You cannot update a view with group functions.
B:When you update a view group functions are automatically computed.
C:When you update a view only the constraints on the underlying table will be in effect.
D:When you update a view the constraints on the views always override the constraints on the underlying tables.
What is the advantage of setting the ASM-preferred mirror read for the Stretch cluster configuration?()
A:It improves resync operations.
B:This feature enables much faster file opens.
C:It improves performance as fewer extent pointers are needed in the shared pool.
D:It improves performance by reading from a copy of an extent closest to the node.
Given: When line 14 is reached, how many objects are eligible for the garbage collector?()
A:0
B:1
C:2
D:3
E:4
Which three types of files can be automatically placed in the flash recovery area fast recovery area in 11g Release 2?()
A: Alert log file
B: Archived redo log files
C: Control file autobackups
D: Server Parameter file (SPFILE)
E: Recovery Manager (RMAN) backup piece