出自:Oracle认证

What is the name of the file that identifies the set of available locale definitions?()
A: locale.def
B: lxdef.ora
C: lx1boot.nlb
D: lx1boot.ora
E: lang.def
You create a new pluggable database, HR_PDB, from the seed database. Which three tablespaces arecreated by default in HR_PDB?()
A:SYSTEM
B:SYSAUX
C:EXAMPLE
D:UNDO
E:TEMP
F:USERS
Given the following six method names: add Listener add Mouse Listener set Mouse Listener delete Mouse Listener remove Mouse Listener register Mouse Listener How many of these method names follow JavaBean Listener naming rules?()
A:1
B:2
C:3
D:4
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER NOT NULL EMP_NAME VARCHAR2(30) JOB_ID VARCHAR2(20) DEFAULT 'SA_REP' SAL NUMBER COMM_PCT NUMBER MGR_ID NUMBER DEPARTMENT_ID NUMBER 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: JOB_ID: Default value specified for this column definition. SAL: Maximum salary earned for the job ID SA_REP. COMM_PCT: Default value specified for this commission percentage column, if any. If no default value is specified for the column, the value should be NULL. DEPARTMENT_ID: Supplied by the user during run time through substitution variable. Which UPDATE statement meets the requirements?()
A:UPDATE employees SET job_id = DEFAULT AND Sal = (SELECT MAX(sal) FROM employees WHERE job_id = 'SA_REP') AND comm_pct = DEFAULT AND department_id = &did WHERE employee _id IN (103,115);
B:UPDATE employees SET job_id = DEFAULT AND Sal = MAX(sal) AND comm_pct = DEFAULT OR NULL AND department_id = &did WHERE employee_id IN (103,115) AND job _ id = 'SA_ REP';
C:UPDATE employees SET job_id = DEFAULT, Sal = (SELECT MAX(sal) FROM employees WHERE job_id = 'SA_REP'), comm_pct = DEFAULT, department_id = &did WHERE employee_id IN (103,115);
D:UPDATE employees SET job_id = DEFAULT, Sal = MAX(sal), comm_pct = DEFAULT, department_id = &did WHERE employee_id IN (103,115) AND job _ id = 'SA_ REP';
E:UPDATE employees SET job_id = DEFAULT, Sal = (SELECT MAX(sal) FROM employees WHERE job_id = 'SA_REP') comm_pct = DEFAULT OR NULL, department_id = &did WHERE employee_id IN (103,115);
What is the implication of setting the initialization parameter FAST_START_MTTR_TARGET to 0 in your database?()
A:MTTR Advisor would be disabled.
B:Redo Log Advisor would be disabled.
C:Automatic tuning of checkpoint would be disabled.
D:Checkpoint information would not be written to the alert log file.
In which of the following scenarios is a tablespace recovery required?()
A: when recovering a lost read-only tablespace from a read-only tablespace backup
B: when recovering a lost read-only tablespace from a read-write tablespace backup when the database is running in  ARCHIVELOG mode
C: when recovering a lost read-only tablespace from a read-write tablespace backup when the database is running in  NOARCHIVELOG mode and the changes in the online redo log files have been overwritten
D: when recovering a lost read-only tablespace from a read-only tablespace backup using the backup of the control file, the control file was created using the ALTER DATABASE BACKUP CONTROLFILE TO TRACE statement, and this statement was issued when the tablespace was read-only
Every Sunday the Unix system administrator has a job that executes a full backup of the entire Unix system your database is on. Is this backup usable for backup and recovery of your database?()  
A: Yes, if the database is in ARCHIVELOG mode
B: Yes, if the database is in NOARCHIVELOG mode
C: No, the backup is not usable in any way
D: Only if the ENABLE_ONLINE_BACKUP parameter is set to TRUE
Which business flow is used for activities starting from customer registration, to setting up ofproduct catalogs and targeted storefronts, and finally to capturing of the order?()
A:Click to Order
B:Order to Cash
C:Campaign to Order
D:Contract to Renewal
You have created a locally managed tablespace by issuing the following command:        CREATE TABLESPACE data1   DATAFILE ’data1_file1.dbf’ SIZE 10M AUTOEXTEND ON MAXSIZE        UNLIMITED;   For the DATA1 tablespace, you have set the warning level alert limit to 70 percent.  In which situation will a warning level alert be generated?()  
A: when 700 KB is used
B: when 700 KB is left as free space
C: when 7MB is used
D: when 7MB is left as free space
E: no alert will be generated because an autoextensible datafile is included in the tablespace
Which is the correct description of the significance of the ORACLE_HOME environmental variable?()
A:It specifies the directory containing the Oracle software.
B:It specifies the directory containing the Oracle-Managed Files.
C:It specifies the directory for database files, if not specified explicitly.
D:It specifies the base directory of Optimal Flexible Architecture (OFA) .
What is the proper command to shut down the database in a consistent manner?()
A:shutdown abort 
B:shutdown kill 
C:Shutdown nowait 
D:shutdown immediate
E:shutdown halt
In which two cases would you use an outer join?()
A:The tables being joined have NOT NULL columns.
B:The tables being joined have only matched data.
C:The columns being joined have NULL values.
D:The tables being joined have only unmatched data.
E:The tables being joined have both matched and unmatched data.
F:Only when the tables have a primary key/foreign key relationship.
The database is running in the ARCHIVELOG mode. It has three redo log groups with one member each.One of the redo log groups has become corrupted. You have issued the following command during the recovery of a damaged redo log file: ALTER DATABASE CLEAR UNARCHIVED LOGFILE GROUP 3; Which action should you perform immediately after using this command?()
A:You should perform a log switch
B:You should make a backup of the database
C:You should switch the database to the NONARCHIVELOG mode
D:You should shut down the database instance and perform a complete database recovery
You are using Recovery Manager (RMAN) for backup and recovery operations with a recovery catalog. You have been taken database backups every evening. On November 15, 2007, at 11:30 AM, you were informed that the USER_DATA tablespace was accidentally dropped. On investigation, you found that the tablespace existed until 11:00 AM, and important transactions were done after that. So you decided to perform incomplete recovery until 11:00 AM. All the archive logs needed to perform recovery are intact. In NOMOUNT state you restored the control file that has information about the USER_DATA tablespace from the latest backup. Then you mounted the database. Identify the next set of commands that are required to accomplish the task? ()
A:A
B:B
C:C
D:D
Your database instance is currently configured to support 1,500 connections. The Web applicationthat uses the database allows a large number of users to work with the database simultaneously. Someusers of the Web application do not interact with the server all the time.  You want to increase the scalability by configuring the database instance to handle more connections. Asa DBA,  which configuration would you set to support more than 1,500 connections at a time()
A:You would configure more listeners for the database.
B:You would configure the database in shared server mode to use the connection pooling feature.
C:You would increase the value of the PGA_AGGREGATE_TARGET initialization parameter that assigns more session memory to users.
D:You would decrease the value of the PRIVATE_SGA resource limit in the profiles used by the users to accommodate more session information.
You create two resource plans, one for data warehouse loading jobs at night and the other for application jobs at day time. You want the resource plans to activate automatically so that the resource allocation is optimum as desired by the activity.How would you achieve this?()
A:Implement job classes
B:Implement Scheduler windows
C:Implement the mapping rule for the consumer groups
D:Set the SWITCH_TIME resource plan directive for both the resource plans
Click the Exhibit button and examine the data from the ORDERS and CUSTOMERS tables. Which SQL statement retrieves the order ID, customer ID, and order total for the orders that are placed on the same day that Martin placed his orders?()
A:SELECT ord_id, cust_id, ord_total FROM orders, customers WHERE cust_name='Martin' AND ord_date IN ('18-JUL-2000','21-JUL-2000');
B:SELECT ord_id, cust_id, ord_total FROM orders WHERE ord_date IN (SELECT ord_date FROM orders WHERE cust_id = (SELECT cust_id FROM customers WHERE cust_name = 'Martin'));
C:SELECT ord_id, cust_id, ord_total FROM orders WHERE ord_date IN (SELECT ord_date FROM orders, customers WHERE cust_name = 'Martin');
D:SELECT ord_id, cust_id, ord_total FROM orders WHERE cust_id IN (SELECT cust_id FROM customers WHERE cust_name = 'Martin');
You want to disable resumable space allocation for all sessions.Which value should be assigned to the RESUMABLE_TIMEOUT parameter to disable resumable space allocation for all sessions?()
A:0
B:10
C:100
D:NULL
In your Automatic Storage Management (ASM) instance, one of the nonempty disk groups, DGROUP1, is no longer required and you want this disk group to be removed. You execute the following command to achieve this objective:  DROP DISKGROUP dgroup1 EXCLUDING CONTENTS;  What would be the result of this command?()
A: This command would result in an error because the disk group is not empty.
B: The command would distribute the contents of the specified disk group among all other disk groups and then drop the specified disk group.
C: The command would result in the contents being moved to the parent disk group and dropping of the disk group.
D: The command would result in the disk group being marked as INVALID because it cannot be dropped.
E: The command would drop the disk group, ignoring the EXCLUDING CONTENTS option.
The TRANS_SUMMARY table contains product-wise transaction details that get updated with everytransaction in the system. Each row has cumulative transaction details of a single product and everyproduct is identified by a product code, which is the primary key.  As part of the archival process, the company wants to transfer the rows in the TRANS_SUMMARY tableto the TRANS_SUMMARY_DUP table at the end of every quarter of the year. Along with existing products,the company deals with many new products during every quarter.  Which method is best suited for this quarterly data transfer()
A:using the MERGE command
B:using the SQL*Loader utility
C:using the correlated UPDATE command
D:using the INSERT command to perform bulk operation
Examine the parameter setting in your database: Which statement is correct about the database?()
A:Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set
B:The instance is started but the database will not be opened until PGA_AGGREGATE_TARGET and SGA_TARGET are set
C:The database is opened but users cannot perform transactions until PGA_AGGREGATE_TARGET and SGA_TARGET are set
D:Automatic memory management is enabled and, as per policy, 60% of the memory for System Global Area (SGA) and 40% of the memory for Program Global Area (PGA) will be distributed at startup
Your company wants to upgrade the current production database to the RAC environment. To perform testing before migrating to the RAC environment, you performed the workload capture on the production database to record the peak workload. You set up the test RAC databaseand want to replay the recorded workload on the testmachine. Note the following steps that you may require to replay the database workload:   1) Preprocess the captured workload.  2) Restart the database in RESTRICTED mode. 3) Set up the Replay Clients.  4) Restore the test database to the point when the capture started.  5) Remap connections.   Arrange the steps required in the correct sequence to accomplish this task on the test machine.()
A: 1,4,5,3 (2 is not required.)
B: 1,4,3,5 (2 is not required.)
C: 1,2,4,5 (3 is not required.)
D: 2,1,5,3,4 
E: 1,2,4,5,3
Examine the following scenario: - Database is running in ARCHIVELOG mode. - Complete consistent backup is taken every Sunday. - On Tuesday the instance terminates abnormally because the disk on which control files are located gets corrupted - The disk having active online redo log files is also corrupted. - The hardware is repaired and the paths for online redo log files and control files are still valid. Which option would you use to perform the recovery of database till the point of failure?()
A:Restore the latest whole backup, perform complete recovery, and open the database normally
B:Restore the latest whole backup, perform incomplete recovery, and open the database with the RESETLOGS option.
C:Restore the latest backups control file, perform complete recovery, and open the database with the RESETLOGS option.
D:Restore the latest backup control file, perform incomplete recovery using backup control file, and open the database with the RESETLOG option.
You have enabled resumable space allocation in your database by setting the RESUMABLE_TIMEOUT parameter set to a nonzero value.Which three statements about resumable space allocation are true? ()
A:Even with resumable space allocation enabled for your database, you can disable resumable space allocation for a single session.
B:A resumable statement is suspended only if an out of space error occurs. (Out of space condition Maximum extents reached condition,Space quota exceeded condition)
C:When a resumable statement is suspended, the transaction that contains the statement is also suspended.
D:A resumable statement can only be suspended and resumed once during the execution of the statement.
E:You can query the V$SESSION_WAIT dynamic performance view to identify the statements that are suspended for a session.
将SQL*PLUS的显示结果输出到d:/data1.txt文件中的命令是()
A:write to d:/data1.txt
B:output to d:/data1.txt
C:spool to d:/data1.txt
D:spool on d:/data1.txt
E:spool d:/data1.txt
The following command is executed to create the baseline template: Which statement is true about the effect of the above command?()
A:It creates a baseline template that never expires. 
B:It produces an error because no snapshot information is provided to create the baseline.
C:It creates a baseline template that expires after the Automatic Workload Repository (AWR) retention period.
D:It creates a repeating baseline template that repeats after the Automatic Workload Repository (AWR) retention period.
By mistake, you ran the batch job (for updating the BILL_DETAILS table) twice. You are not sure which rows in the BILL_DETAILS table were affected. You need to identify:  a) a list of changes made along with the transaction identifier of each change  b) the necessary SQL statements to undo the erroneous changes  Which option would you choose?() 
A:RMAN only
B:Flashback Table only
C:Flashback Versions Query only
D:Flashback Database and Flashback Transaction Query
E:Flashback Versions Query and Flashback Transaction Query
You are creating a SQL Tuning Set to allow a group of SQL statements to be passed into the SQL Tuning Advisor. Which packages will you use to create the SQL Tuning Set?()
A: DBMS_WORKLOAD_REPOSITORY
B: DBMS_RESOURCE_MANAGER
C: DBMS_SQLTUNE
D: DBMS_ADVISOR
The EMPLOYEES table has these columns: Management wants to add a default value to the SALARY column. You plan to alter the table by using this SQL statement: What is true about your ALTER statement?()
A:Column definitions cannot be altered to add DEFAULT values.
B:A change to the DEFAULT value affects only subsequent insertions to the table.
C:Column definitions cannot be altered at add DEFAULT values for columns with a NUMBER data type.
D:All the rows that have a NULL value for the SALARY column will be updated with the value 5000.
After implementing full Oracle Data Redaction, you change the default value for the NUMBER data type as follows: After changing the value, you notice that FULL redaction continues to redact numeric data with zero. What must you do to activate the new default value for numeric full redaction?()
A:Re-enable redaction policies that use FULL data redaction.
B:Re-create redaction policies that use FULL data redaction.
C:Re-connect the sessions that access objects with redaction policies defined on them.
D:Flush the shared pool.
E:Restart the database instance