出自:Oracle认证

You work as a database administrator for Certkiller .com. You enabled tracing while creating a listener to your database.  What additional information is available to you when you enable tracing?()
A:Information about each Oracle Net connection.
B:Information about each entry in theLinstener.orafile
C:Information about the changed done in the database
D:Information about the different listeners in your system
E:Information about all thenondatabasefiles required to operate the database
You included the following Automatic Storage Management (ASM) initialization parameter settings in the ASM initialization parameter file:   INSTANCE_TYPE = ASM  ASM_POWER_LIMIT = 11  LARGE_POOL_SIZE = 4M   ASM_DISKGROUPS = DG1, DG2  DB_UNIQUE_NAME = +ASM   You are unable to start the ASM instance. Which initialization parameter file setting(s) is not allowing the ASM instance to start?()
A: only the INSTANCE_TYPE initialization parameter is set to an invalid value
B: only the ASM_POWER_LIMIT initialization parameter is set to an invalid value
C: only the LARGE_POOL_SIZE initialization parameter is set to an invalid value
D: both the LARGE_POOL_SIZE and INSTANCE_TYPE initialization parameters are set to invalid values
Given: What is the result?()
A:Compilation fails because of an error in line 3.
B:Compilation fails because of an error in line 7.
C:Compilation fails because of an error in line 9.
D:If you define D e = new E(), then e.bMethod() invokes the version of bMethod() defined in Line 5.
E:If you define D e = (D)(new E()), then e.bMethod() invokes the version of bMethod() defined in Line 5.
F:If you define D e = (D)(new E()), then e.bMethod() invokes the version of bMethod() defined in Line 9.
Examine the description of the EMPLOYEES table: EMP_ID NUMBER(4) NOT NULL LAST_NAME VARCHAR2(30) NOT NULL FIRST_NAME VARCHAR2(30) DEPT_ID NUMBER(2) JOB_CAT VARCHAR2(30) SALARY NUMBER(8,2) Which statement shows the department ID, minimum salary, and maximum salary paid in that department, only of the minimum salary is less then 5000 and the maximum salary is more than 15000?()
A:SELECT dept_id, MIN(salary(, MAX(salary) FROM employees WHERE MIN(salary) <5000 AND MAX (salary) > 15000;
B:SELECT dept_id, MIN(salary), MAX(salary) FROM employees WHERE MIN(salary) < 5000 AND MAX(salary) > 15000 GROUP BY dept_id;
C:SELECT dept_id, MIN(salary), MAX(salary) FROM employees HAVING MIN(salary) <5000 AND MAX (salary) > 15000;
D:SELECT dept_id, MIN(salary), MAX(salary) FROM employees GROUP BY dept_id HAVING MIN (salary) < 5000 AND MAX(salary)
E:SELECT dept_id, MIN(salary), MAX(salary) FROM employees GROUP BY dept_id, salary HAVING MIN (salary) <5000 AND MAX (salary) > 15000;
The NLS_TERRITORY parameter specifies the default conventions to be used for which of the following globalization elements?() 
A: Date format
B: Decimal character
C: Group separator
D: First day of the month
E: None of the above
F: All of the above
Given: What is the result?()
A:three
B:other
C:An exception is thrown at runtime.
D:Compilation fails because of an error on line 12.
E:Compilation fails because of an error on line 13.
Evaluate this SQL statement: SELECT e.EMPLOYEE_ID,e.LAST_NAME,e.DEPARTMENT_ID, d.DEPARTMENT_NAME FROM EMPLOYEES e, DEPARTMENTS d WHERE e.DEPARTMENT_ID = d.DEPARTMENT_ID; In the statement, which capabilities of a SELECT statement are performed?()
A:selection, projection, join
B:difference, projection, join
C:selection, intersection, join
D:intersection, projection, join
E:difference, projection, product
Note the following functionalities of various background processes: 1. Record the checkpoint information in data file headers. 2. Perform recovery at instance startup. 3. Cleanup unused temporary segments. 4. Free the resources used by a user process when it fails. 5. Dynamically register database services with listeners. 6. Monitor sessions for idle session timeout. Which option has the correct functionalities listed for a background process()
A:Archiver Process (ARCn): 1, 2, 5
B:System Monitor Process (SMON): 1, 4, 5
C:Process Monitor Process (PMON): 4, 5, 6
D:Database Writer Process (DBWn): 1, 3, 4
You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()
A:Use the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. 
B:Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas.  
C:Alter the pop-up Menu Property value in the Property Palette of the canvas. 
D:Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.
Given: What is the result?()
A:TestA
B:TestB
C:Compilation fails.
D:An exception is thrown at runtime.
Exhibit, error You work as a database administrator for Supportcenter.cn. When you try to connect to the database, you get an error (See exhibit). What could be the possible reason for getting such an error?()
A:Database is not open
B:Listener is not running
C:Service name is not correct
D:Wrong port number used in URL
E:Usersysdoes have themediaprivilege
Which two statements describe good practices for an application developer to reduce lockingconflicts in Oracle database()
A:Avoid coding unnecessary long-running transactions.
B:Allow the database to handle locks in default locking mode.
C:Always explicitly code the locks as per the requirement of the application.
D:Allow escalation of row locks to block locks if too many row locks cause problem.
In which three cases would you use the USING clause?()
A:You want to create a nonequijoin.
B:The tables to be joined have multiple NULL columns.
C:The tables to be joined have columns of the same name and different data types.
D:The tables to be joined have columns with the same name and compatible data types.
E:You want to use a NATURAL join, but you want to restrict the number of columns in the join condition.
You are implementing a very simple TCP/IP network. It rarely changes and you would like to use Oracle Connection Manager to filter client requests.  Which naming method can you use?()
A:Only host
B:Only local
C:Either host or local
D:Both host and local
授予sa用户在SCOTT.EMP表中SAL列的更新权限的语句是()。
A:GRANT CHANGE ON SCOTT.EMP TO SA
B:GRANT UPDATE ON SCOTT.EMP(SAL) TO SA
C:GRANT UPDATE (SAL) ON SCOTT.EMP TO SA
D:GRANT MODIFY ON SCOTT.EMP(SAL) TO SA
Which constraint can be defined only at the column level?()
A:UNIQUE
B:NOT NULL
C:CHECK
D:PRIMARY KEY
E:FOREIGN KEY
怎样取出在集合A中,又在集合B中的数据()
A:A UNION B
B:A UNION ALL B
C:A INTERSECT B
D:A MIUS B
Given: Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line23 executes?()
A:None of these objects are eligible for garbage collection.
B:Only the object referenced by booch is eligible for garbage collection.
C:Only the object referenced by snoog is eligible for garbage collection.
D:Only the object referenced by snooch is eligible for garbage collection.
E:The objects referenced by snooch and booch are eligible for garbage collection.
Which of the following statements is true regarding the initialization parameter DIAGNOSTIC_DEST?()   The default value is the value of the environment variable $ORACLE_HOME; if $ORACLE_HOME isn’t set  
A: then the default is set to $ORACLE_BASE  The default value is the value of the environment variable $ORACLE_BASE; if $ORACLE_BASE isn’t set,
B: then it is set to $ORACLE_HOME
C: DIAGNOSTIC_DEST is always equal to $ORACLE_HOME
D: DIAGNOSTIC_DEST is always equal to $ORACLE_BASE
As a result of a media failure, the current online redo log group is corrupted. The database crashes, as the current online group is inaccessible. Which type of incomplete recovery are you most likely to perform? ()
A:Cancel-based
B:Recovery using a backup control file
C:Time-based
D:Change-based
You executed the following code:   BACKUP VALIDATE DATABASE;   BLOCKRECOVER CORRUPTION LIST;  What will be the result of executing the above code?()  
A: The code will run a backup validation to populate the V$BACKUP_CORRUPTION view and repair corrupt blocks, if any, recorded in the view.
B: The code will run a backup validate to populate the V$COPY_CORRUPTION view and then repair any corrupt blocks recorded in the view.
C: The code will runs a backup validate to populate the V$DATABASE_BLOCK_CORRUPTION view and then repair corrupt blocks, if any, recorded in the view.
D: The code will run a backup validate to populate the RC_BACKUP_CORRUPTION view and then repair corrupt blocks, if any, recorded in the view.
Examine the data from the EMP table: The COMMISSION column shows the monthly commission earned by the employee.Which three tasks would require subqueries or joins in order to perform in a single step?()
A:Deleting the records of employees who do not earn commission.
B:Increasing the commission of employee 3 by the average commission earned in department 20.
C:Finding the number of employees who do NOT earn commission and are working for department 20.
D:Inserting into the table a new employee 10 who works for department 20 and earns a commission that is equal to the commission earned by employee 3.
E:Creating a table called COMMISSION that has the same structure and data as the columns EMP_ID and COMMISSIONS of the EMP table.
F:Decreasing the commission by 150 for the employees who are working in department 30 and earning a commission of more then 800.
Which two statements are true about the WebLogic Server domains ? ()
A: Application Programmers need to refer to domains in their Oracle Web`logic Server programming Interface
B: domains can be used to separate development, test, and production application, administration and operational responsibility, and organizational or business division 
C: one can share a configured resource or subsystem between domains
D: the concept of multiple domains is supported 
View the Exhibit to examine the Automatic Database Diagnostic Monitor (ADDM) tasks. Which statement describes the consequence?()
A:The ADDM task is filtered to suppress the Segment Advisor suggestions for the SCOTT schema.
B:The ADDM task is filtered to produce the Segment Advisor suggestions for the SCOTT schema only.
C:The PL/SQL block produces an error because the my_instance_analysis_mode_task task has not been reset to its initial state.
D:All subsequent ADDM tasks including my_instance_analysis_mode_task are filtered to suppress the Segment Advisor suggestions for the SCOTT schema.
The RECYCLEBIN parameter is set to ON for your database. You drop a table,PRODUCTS,from the SCOTT schema.  Which two statements are true regarding the outcome of this action?()
A: All the related indexes and views are automatically dropped
B: The flashback drop feature can recover only the table structure
C: Only the related indexes are dropped whereas views are invalidated
D: The flashback drop feature can recover both the table structure and its data
在对RMAN用户进行授权时,不需要授予的权限是()。
A:CONNECT
B:RECOVERY_CATALOG_OWNER
C:DBA
D:RESOURCE
Identity two advantages of using a recovery catalog in-load of the control File of the target database Recovery Manager (RMAN).()
A: You can use RMAN stored scripts.
B: Recovery is faster if data is stored in catalog in addition to the control file.
C: You can store backup Information of all registered databases in one place.
D: Database backups are automatically deleted when they are older than the specified time period.
What will be the result of using the SQL> DROP USER SCOTT CASCADE; command?()
A: The user, Scott, is dropped, all the objects in Scott’s schema are placed in the Recycle Bin, and the objects that are  already in the Recycle Bin are dropped.
B: The user, Scott, is dropped, all the objects in Scott’s schema are placed in the Recycle Bin, and all the objects in the Recycle Bin, belonging to the user Scott, are not dropped.
C: The user, Scott, is dropped, all the objects in the Scott’s schema are not placed in the Recycle Bin, and the objects in the Recycle Bin, belonging to the user, Scott, are not dropped.
D: The user, Scott, is dropped, all the objects in Scott’s schema are not placed in the Recycle Bin, and the objects in the Recycle Bin are dropped.
Which two statements are true regarding ownership of shared entities? ()(Choose two.)
A:Customers is owned by Oracle Human Resources whereas Locations is owned by Oracle Receivables.
B:Items is owned by Oracle Purchasing whereas Locations is owned by Oracle Receivables.
C:Sales Force is owned by Oracle Order Management whereas Employees is owned by Oracle Human Resources.
D:Set of books is owned by Oracle General Ledger whereas Locations is owned by Oracle Human Resources.
E:Suppliers is owned by Oracle Purchasing whereas Units of Measure is owned by Oracle Inventory.
Identify architecturally where in an application, Coherence stack will be used ()
A: coherence resides locally on the machines of all remote application users
B: coherence resides between remote users and the Web tier
C: coherence resides between the Web tier and application tier
D: coherence resides between the application tier and data tier