出自:Oracle认证

Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) DEPARTMENT_ID NUMBER SALARY NUMBER What is the correct syntax for an inline view? ()
A:SELECT a.last_name, a.salary, a.department_id, b.maxsal FROM employees a, (SELECT department_id, max(salary)maxsal FROM employees GROUP BY department_id) b WHERE a.department_id = b.department_id AND a.salary < b.maxsal;
B:SELECT a.last name, a.salary, a.department_id FROM employees a WHERE a.department_id IN (SELECT department_id FROM employees b GROUP BY department_id having salary = (SELECT max(salary) from employees))
C:SELECT a.last_name, a.salary, a.department_id FROM employees a WHERE a.salary = (SELECT max(salary) FROM employees b WHERE a.department _ id = b.department _ id);
D:SELECT a.last_name, a.salary, a.department_id FROM employees a WHERE (a.department_id, a.salary) IN (SELECT department_id, a.salary) IN (SELECT department_id max(salary) FROM employees b GROUP BY department_id ORDER BY department _ id);
Which three objects are components of a menu module?()
A:Menus 
B:Canvases 
C:Object libraries 
D:Visual attributes 
E:Attached libraries
Which four are true regarding the Workspace Manager in Oracle9i? ()
A:Automatically versions all tables.
B:Automatically installed with Oracle9i.
C:Merges changes with parent rows or discard changes.
D:Provides mechanism to identify and resolve conflicts.
E:Allows for version enabling tables by use of a packages procedure.
Given: Which two changes, taken together, would guarantee the output: 1, 2, 3, 4, 5, ?()
A:move the line 12 print statement into the foo() method
B:change line 7 to public synchronized void go() {
C:change the variable declaration on line 2 to private volatile int x;
D:wrap the code inside the foo() method with a synchronized( this ) block
E:wrap the for loop code inside the go() method with a synchronized block synchronized(this){ //for loop code here }
You experience a loss of the disk on which the USER_DATA tablespace data files are stored. You attempt to recover the data files but discover that the archived redo log file with sequence number 45, which is needed to perform complete recovery, is invalid. You then begin incomplete recovery-You receive this prompt:  ORA-00279:change 309012...03/09/01 11:33:56 needed for thread ORA-00289: suggestion :   /disk1/archive/arch_45.rdo ORA-00280: change 309012 for thread 1 is in sequence #45 Specify log:  {=suggested | filename | AUTO | CANCEL}  What is the correct response?()
A:Enter the keyword AUTO.
B:Enter the keyword CANCEL.
C:Press the Enter or Return key.
D:Provide the filename ’/disk1/archive/arcg_46.rdo’
Which of the following advisors within the Oracle advisory framework will analyze a single SQL statement and make recommendations for performance improvement?()
A:SQL Repair Advisor
B:SQL Optimizer
C:SQL Access Advisor
D:SQL Tuning Advisor
You work as a database administrator for Certkiller .com. You want to be notified when the number of disk I/O increases by 10% of what it was yesterday. You create a baseline metric for yesterday’s disk I/O performance. How do you use the baseline metrics to achieve your objective?()
A:Save the baseline in the database
B:Save the baseline in the Database Control Home Page
C:Create a procedure to read and apply the baseline to disk I/O metrics
D:Apply the baseline to the disk I/O metrics in the Mange Metrics page
E:Alter the disk I/O metrics to include baseline by using the ALTER METRICScommnd
Examine these statements: CREATE ROLE registrar GRANT UPDATE ON dtudent_grades TO registrar; GRANT registrar to user1, user2, user3; What does this set of SQL statements do?()
A:The set of statements contains an error and does not work.
B:It creates a role called REGISTRAR, adds the MODIFY privilege on the STUDENT_GRADES object to the role, and gives the REGISTRAR role to three users.
C:It creates a role called REGISTRAR, adds the UPDATE privilege on the STUDENT_GRADES object to the role, and gives the REGISTRAR role to three users.
D:It creates a role called REGISTRAR, adds the UPDATE privilege on the STUDENT_GRADES object to the role, and creates three users with the role.
E:It creates a role called REGISTRAR, adds the UPDATE privilege on three users, and gives the REGISTRAR role to the STUDENT_GRADES object.
F:It creates a role called STUDENT_GRADES, adds the UPDATE privilege on three users, and gives the UPDATE role to the registrar.
Which two are attributes of iSQL*Plus? ()
A:/SQL*Plus commands cannot be abbreviated.
B:/SQL*Plus commands are accessed from a browser.
C:/SQL*Plus commands are used to manipulate data in tables.
D:/SQL*Plus commands manipulate table definitions in the database.
E:/SQL*Plus is the Oracle proprietary interface for executing SQL statements.
Which statement is TRUE about the CacheFactory class ?()
A: it is a topology agnostic way to access NamedCaches
B: it provides mechanisms to manage underlying remote data sources
C: both A and B are TRUE
D:Neither A nor B are TRUE
DESC student的作用是什么?
()是数据库中的基本逻辑结构,包含了一系列数据文件的集合。
A:表
B:表空间
C:段
D:盘区
Which component of the Oracle networking architecture provides character set and data type conversion between different character sets on the client and server? ()
A:SQL*Plus
B:Oracle Net
C:Two-Task Common (TTC)
D:Oracle Protocol Support (OPS)
You configured the default backup device type as disk for RMAN backups. In your database,because of business requirements,you have to take a simultaneous duplicate backup of the data files when the RMAN BACKUP command is used.  What must you set using the RMAN CONFIGURE command to achieve this?()  
A: MAXSETSIZE TO 2
B: DEVICE TYPE DISK PARALLELISM 2
C: RETENTION POLICY TO REDUNDANCY 2
D: DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 2
Which two activities are NOT supported by the Data Recovery Advisor?()
A:Diagnose and repair a data file corruption offline.
B:Diagnose and repair a data file corruption online.
C:Diagnose and repair failures on a standby database.
D:Recover from failures in the Real Application Cluster (RAC) environment.
A customer has a web application with HTTP Sessions that need to be replicated to a backup site that is more than 100 miles away from the primary site, connected over the Internet.    Which type of session replication in WebLogic is recommended?()
A:MAN Replication
B:WAN Replication  
C:Synchronous Replication
D:Asynchronous Replication
E:Database Replication
Identify three correct statements of a multi-org setup. ()(Choose three.)
A:A Government Reporting Entity (GRE)/Legal Entity can point to one and only one Set of Books.
B:Inventory Orgs can be associated directly with a GRE/Legal Entity.
C:The creation of a Master Inventory organization is mandatory.
D:One and only one Operating Unit can be associated with a GRE/Legal Entity.
E:One Set of Books can have one or many GRE's/Legal Entities associated with it.
Given: What is the result?()
A: An exception is thrown at runtime.
B: int Long
C: Compilation fails.
D: Short Long
Evaluate this SQL statement: SELECT e.emp_name, d.dept_name FROM employees e JOIN departments d USING (department_id) WHERE d.department_id NOT IN (10,40) ORSER BY dept_name; The statement fails when executed. Which change fixes the error?()
A:remove the ORDER BY clause
B:remove the table alias prefix from the WHERE clause
C:remove the table alias from the SELECT clause
D:prefix the column in the USING clause with the table alias
E:prefix the column in the ORDER BY clause with the table alias
F:replace the condition "d.department_id NOT IN (10,40)" in the WHERE clause with "d.department_id <> 10 AND d.department_id <> 40"
Which of the following options is true about shutting down an Automatic Storage Management (ASM) instance?()  
A: If the SHUTDOWN IMMEDIATE command is issued to the ASM instance, the ASM instance immediately shuts down.
B: If the SHUTDOWN ABORT command is issued to the ASM instance, the ASM instance will shut down all the database instances and then shut down immediately.
C: If the SHUTDOWN NORMAL command is issued to the ASM instance, before shutting down, the ASM instance waits for the dependent database instances to shut down.
D: If the SHUTDOWN TRANSACTIONAL command is issued to the ASM instance, the ASM instance passes the same SHUTDOWN command to the dependent database instances, but does not wait for any active transactions to complete before it shuts down.
Which statement is true regarding the creation of nested plans using Resource Manager?()
A: Only one nested subplan is allowed.
B: The plans can be nested up to four levels.
C: Resource Manager does not support nested plans.
D: Nested plans control only the degree of parallelism but not the CPU.
E: Each nested plan gets a proportion of the CPU resources assigned to its parent group.
Which three types of integration does the Business Event System support?() (Choose three.)
A:point-to-point
B:parent/child messaging
C:messaging hub system
D:distributed applications messaging
E:simple object access protocol (SOAP) messaging
Which two files in the database can be configured for automatic backups by using the autobackupfeature in Recovery Manager (RMAN)()
A:data files
B:control files
C:parameter file
D:online redo log files
E:server parameter file
You execute this command to drop the ITEM table, which has the primary key referred in the ORDERS table:SQL> DROP TABLE scott.item CASCADE CONSTRAINTS PURGE;  Which two statements are true about theeffect of the command()
A:No flashback is possible to bring back the ITEM table.
B:The ORDERS table is dropped along with the ITEM table.
C:The dependent referential integrity constraints in the ORDERS table are disabled.
D:The dependent referential integrity constraints in the ORDERS table are removed.
E:The table definition of the ITEM table and associated indexes are placed in the recycle bin
The following commands are available in the Linux binary distributions of Mysql: Mysqld Mysqld_safe Mysql.server What is the correct description of each of these commands?()
A:A
B:B
C:C
D:D
In your production database you want to use an Automatic Storage Management (ASM) instance to manage the database files. Which option would you use to migrate the database files from a non-ASM instance to an ASM instance?()
A:Oracle Migration Assistant
B:Recovery Manager (RMAN)
C:Oracle Data Pump Export and Import
D:conventional Oracle Export and Import
E:operating system utilities to copy the files to the ASM instance
Your database is started by using the server parameter file (SPFILE). You issued this command to change the value of the LOG_BUFFER initialization parameter:  ALTER SYSTEM SET LOG_BUFFER=24M SCOPE=BOTH;  What would be the outcome of this command? ()
A:The command would return an error because LOG_BUFFER is a static parameter.
B:The parameter value would be changed and it would come into effect immediately.
C:You need to restart the database so that parameter changes can come into effect.
D:The command would succeed only if initialization parameter LOG_ARCHIVE_MAX_PROCESS is set to value 2.
Note the following points describing various utilities in Oracle Database 11g: 1. It enables the transfer of data from one database to another. 2. It provides a complete solution for the backup, restoration, and recovery needs of the entire database. 3. It enables the loading of data from an external file into tables of an Oracle database. 4. It provides a tape backup management for the Oracle ecosystem.  Which point describes the Oracle Data Pump utility()
A:1
B:2
C:3
D:4
E:1 and 3
F:1, 2, 3, and 4
While deploying a new application module,the software vendor ships the application software along with appropriate SQL plan baselines for the new SQLs being introduced.  Which two statements describe the consequences?()
A: The plan baselines can be evolved over time to produce better performance.
B: The newly generated plans are directly placed into the SQL plan baseline without being verified.
C: The new SQL statements initially run with the plans that are known to produce good performance under standard test configuration.
D: The optimizer does not generate new plans for the SQL statements for which the SQL plan baseline has been imported.
You can use Oracle Flashback to look at past activity in your database. What are two other characteristics of Oracle Flashback?()
A:Oracle Flashback uses undo information to construct consistent data. 
B:You can use a cursor opened while using an Oracle Flashback image to perform DML once you deactivate Oracle Flashback in your session. 
C:You can only use Oracle Flashback view of the data if the required records are still in the online redo log files. 
D:Oracle Flashback lists the DML that was executed during the period you identify when initiating your session.