出自:Oracle认证

You want to monitor and control the resource usage by sessions. You want to be warned automatically when more than 100 sessions are opened with your database. What action would you take to achieve this?()
A:Use the Database Resource Manager.
B:Set the limits in the profiles used by users.
C:Modify the SESSIONS initialization parameter.
D:Set the warning threshold for the Current Logons Count metric.
The accounts receivable department requested an accounts status to allow users to enter either a customer name, customer number, customer phone number and then display the customer out standing balance. You want to restrict the data retrieved based on values entered by the users. Which where clause would you write in the query to select statement to accomplish this task?()
A:&p_where_clause 
B::p_where_clause 
C:WHERE CUST_ID=P_CUST_ID or cust_name=:p_cust_name or cust_phone=:p_cust_phone 
D:Where cust_ID=&p_custid cust_name=&p_cust_name or cust_phone=&p_cust_phone
In your test database, you have created the ORDERS table as an index/x7forganized table (IOT). To facilitate faster querying, you have created a mapping table and a bitmap index on the ORDER_FILLED column. You observe that the query performance degrades when users perform a large volume of transactions.  While investigating the reason, you find that the mapping table segment is fragmented, leading to poor performance. Which option would you use to defragment the mapping table without affecting the original table data?()
A:export and import the mapping table
B:drop and re­create the mapping table
C:truncate the mapping table and reinsert the values
D:use the ALTER TABLE .. REBUILD command to defragment the mapping table
Which two statements about workload capture and replay operations are true?()  
A: The clients must be created manually on the test machines to perform more realistic testing.
B: Restart the database in RESTRICTED mode before beginning workload replay to enable a clean state for workload replay.
C: Restart the database in RESTRICTED mode before beginning workload capture to enable a clean state for capturing the workload.
D: The application state of the capture system must be identical to the application state of the replay system when the workload replay begins.
Which two commands never trigger an implicit rebalancing within the disk group?() (Choose two.)
A:ALTER DISKGROUP misc MOUNT;
B:ALTER DISKGROUP misc DROP DISK misc2;
C:ALTER DISKGROUP misc CHECK ALL NOREPAIR;
D:ALTER DISKGROUP misc RESIZE ALL SIZE 1023m;
E:ALTER DISKGROUP dgroupA ADD DISK '/devices/A*';
You need to create a table named ORDERS that contains four columns: 1.an ORDER_ID column of number data type 2.a CUSTOMER_ID column of number data type 3.an ORDER_STATUS column that contains a character data type 4.a DATE_ORDERED column to contain the date the order was placed When a row is inserted into the table, if no value is provided for the status of the order, the value PENDING should be used instead. Which statement accomplishes this?()
A:CREATE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status NUMBER(10) DEFAULT 'PENDING', date_ordered DATE );
B:CREATE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status VARCHAR2(10) = 'PENDING', date_ordered DATE );
C:CREATE OR REPLACE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status VARCHAR2(10) DEFAULT 'PENDING', date_ordered DATE );
D:CREATE OR REPLACE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status VARCHAR2(10) = 'PENDING', date_ordered DATE );
E:CREATE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status VARCHAR2(10) DEFAULT 'PENDING', date_ordered DATE );
F:CREATE TABLE orders ( order_id NUMBER(10), customer_id NUMBER(8), order_status VARCHAR2(10) DEFAULT 'PENDING', date_ordered VARCHAR2 );
Click the Exhibit button. What two must the programmer do to correct the compilation errors?()
A:insert a call to this() in the Car constructor
B:insert a call to this() in the MeGo constructor
C:insert a call to super() in the MeGo constructor
D:insert a call to super(vin) in the MeGo constructor
E:change the wheelCount variable in Car to protected
Which tier in Oracle E-Business Suite is responsible for storing application data?()
A:database tier
B:application tier
C:client (desktop) tier
D:both database tier and application tier
Evaluate the set of SQL statements: CREATE TABLE dept (deptno NUMBER(2), dname VARCHAR2(14), loc VARCHAR2(13)); ROLLBACK; DESCRIBE DEPT What is true about the set?()
A:The DESCRIBE DEPT statement displays the structure of the DEPT table.
B:The ROLLBACK statement frees the storage space occupied by the DEPT table.
C:The DESCRIBE DEPT statement returns an error ORA-04043: object DEPT does not exist.
D:The DESCRIBE DEPT statement displays the structure of the DEPT table only if there is a COMMIT statement introduced before the ROLLBACK statement.
In Oracle 11g, which recommendations does the SQL Access Advisor generate? ()(Choose all that apply.)
A:partitioning recommendations
B:statistics collection recommendations
C:index creation recommendations
D:materialized view recommendations
E:materialized view log recommendations
What can you determine about the following linguistic sorts based only on their names?()   1. GERMAN  2. FRENCH_M  
A: 1 is a monolingual sort.
B: 2 is a monolingual sort.
C: 1 is case insensitive.
D: Both 1 and 2 are case insensitive.
E: Case sensitivity is unknown.
Which two features of RMAN would must likely influence your decision to incorporate RMAN into your backup and recover strategy, if your most important requirement is to reduce the time ofrecovery?()
A:RMAN’s powerful command language.
B:RMAN backups can be parallelized.
C:RMAN allows for incremental block-level backups.
D:RMAN backup, restore, and recovery scripts can be stored.
Examine the description of the MARKS table: STD_ID NUMBER(4) STUDENT_NAME VARCHAR2(30) SUBJ1 NUMBER(3) SUBJ2 NUMBER(3) SUBJ1 and SUBJ2 indicate the marks obtained by a student in two subjects. Examine this SELECT statement based on the MARKS table: SELECT subj1+subj2 total_marks, std_id FROM marks WHERE subj1 > AVG(subj1) AND subj2 > AVG(subj2) ORDER BY total_marks; What is the result of the SELECT statement?()
A:The statement executes successfully and returns the student ID and sum of all marks for each student who obtained more than the average mark in each subject.
B:The statement returns an error at the SELECT clause.
C:The statement returns an error at the WHERE clause.
D:The statement returns an error at the ORDER BY clause.
You completed your Java procedure for your external Java function activity, and you now want todeploy this to your server. What would you do to deploy the Java procedure?()
A:take the Java sources (.java) files and include them in your $APPL_TOP
B:take the Java sources (.java) files and include them in your CLASSPATH
C:take the Java classes (.class) files and include them in your $APPL_TOP
D:take the Java classes (.class) files and include them in your CLASSPATH
To perform a database point-in-time recovery using RMAN, after database restoration, you must ensure that the database is in which of the following states?()
A:OPEN
B:MOUNT
C:NOMOUNT
D:CLOSE
什么是事务?事务相关的三个命令是什么?
Click the Exhibit button to examine the structures of the EMPLOYEES, DEPARTMENTS, and TAX tables. For which situation would you use a nonequijoin query?()
A:to find the tax percentage for each of the employees
B:to list the name, job_id, and manager name for all the employees
C:to find the name, salary, and the department name of employees who are not working with Smith
D:to find the number of employees working for the Administrative department and earning less than 4000
E:to display name, salary, manager ID, and department name of all the employees, even if the employees do not have a department ID assigned
简单介绍ORACLE的物理结构?
Given that the elements of a PriorityQueue are ordered according to natural ordering,and: What is the result?()
A:apple pear
B:banana pear
C:apple apple
D:apple banana
E:banana banana
Your Supportcenter.cn database is in ARCHIVELOG mode. The data file that belongs to the SYSTEM tablespace has become corrupted. Up to what point can you recover the database?()
A:Until last commit
B:Until the time you perform recovery
C:Until the time the date file got corrupted
D:Until the point where the last transaction begun
E:You cannot recover the SYSTEMtablespaceand must re-create the database.
You executed the following command to drop a user:   DROP USER scott CASCADE;   Which two statements regarding the above command are correct?()
A: All the objects of scott are moved to the Recycle Bin.
B: Any objects in the Recycle Bin belonging to scott are purged.
C: All the objects owned by scott are permanently dropped from the database.
D: All the objects of scott in the Recycle Bin must be purged before executing the DROP command.
E: Any objects in the Recycle Bin belonging to scott will not be affected by the above DROP command.
Which two statements are true about the primary key constraint in a table? ()
A:It is not possible to disable the primary key constraint.
B:It is possible to have more than one primary key constraint in a single table.
C:The primary key constraint can be referred by only one foreign key constraint.
D:The primary key constraint can be imposed by combining more than one column.
E:The non-deferrable primary key constraint creates an unique index on the primary key column if it is not already indexed.
Given a complete loss of your database, in what order would you need to perform the following RMAN operations to restore it?()   a. restore controlfile  b. restore database  c. restore spfile  d. recover database  e. alter database open  f. alter database open resetlogs
A: b, a, c, d, e
B: a, c, b, d, f
C: c, a, b, d, e
D: c, a, b, d, f
E: e, a, b, d, c
当启动一个Oracle实例时,初始化参数()指出为数据文件信息保留的SGA空间的数量。
A:DB_FILES
B:DB_DATAFILES
C:DATABASE_FILES
D:LOG_FILES
Identify four features of WebLogic that provide value above and beyond a simple Java EE  container.()
A:Active GridLink for RAC
B:support for enterprise Web Services standards beyond Java EE specification
C:Integration with Enterprise Manager
D:market leading performance
E:Java EE6 Specification Support
F:Java SE 7 support
The WF_PARAMETER_LIST_T datatype can include up to a maximum of ()parameter name and value pairs.
A:99
B:100
C:101
D:999
E:1000
Which two are functions of Oracle Workflow Directory Service? ()(Choose two.)
A:manage workflow notifications
B:provide information about roles
C:store performer and roles relationships
D:manage workflow session connection
In RMAN, when the RESYNC CATALOG command is issued, in which two situations does the command file actually perform synchronization?()
A:After the COPY command.
B:After adding a data file in the target database.
C:After adding a tablespace in the target database.
D:After adding a tablespace in the catalog database.
E:After dropping a data file in the catalog database.
F:After running SQL Loader to load a large amount of data.
You run the SQL Tuning Advisor (STA) to tune a SQL statement that is part of a fixed SQL plan baseline. The STA generates a SQL profile for the SQL statement,which recommends that you accept the profile.  Which statement is true when you accept the suggested SQL profile?()  
A: The tuned plan is not added to the SQL plan baseline.
B: The tuned plan is added to the fixed SQL plan baseline as a fixed plan.
C: The tuned plan is added to the fixed SQL plan baseline as a nonfixed plan.
D: The tuned plan is added to a new nonfixed SQL plan baseline as a nonfixed plan.
You are managing an Oracle Database 11g database. You want to ensure the recovery of thedatabase to the point of failure.  Which configuration will you do to accomplish the task()
A:Multiplex all database files
B:Configure the Flash Recovery Area.
C:Configure the database instance for ARCHIVELOG mode.
D:Configure the FAST_START_MTTR_TARGET initialization parameter.