2,3,4,1,6,5
3,2,4,1,6,5
3,2,6,4,1,5
4,2,3,1,5,6
第1题:
Given classes defined in two different files: 1. package util; 2. public class BitUtils { 3. public static void process(byte[]) { /* more code here */ } 4. } 1. package app; 2. public class SomeApp { 3. public static void main(String[] args) { 4. byte[] bytes = new byte[256]; 5. // insert code here 6. } 7. } What is required at line 5 in class SomeApp to use the process method of BitUtils?()
第2题:
Online index rebuild functionality has been extended to include which four index structures?()
第3题:
Case 1: 1. Shut down the database and perform a backup. 2. Restore all the data files. 3. Mount the database. 4. Recover the database. 5. Without applying all the redo log files, open the database using the RESETLOGS option. 6. Back up the database. Case 2: 1. Shut down the database and perform a backup. 2. Restore only the data files of the tablespace where user error damaged the data. 3. Mount the database. 4. Recover the database. 5. Open the database with the RESETLOGS option. 6. Back up the database. Case 3: 1. Shut down the database. 2. Restore the data files. 3. Open the database. 4. Perform recovery to the current point in time. Which case has the correct steps for an incomplete recovery?()
第4题:
Which three descriptions are correct about the effects of the TRUNCATE command on a table()
第5题:
You need to perform an online table redefinition of an existing SALES table to partition it into two tablespaces TBS1 and TBS2. The SALES table has a materialized view, materialized log, indexes, referential integrity constraint, and triggers with the PRECEDES clause existing on it. What action is required for dependent objects when you perform online table redefinition?()
第6题:
A Windows Azure application retrieves data from SQL Azure. You need to recommend an approach for improving application query performance. What should you recommend?()
第7题:
Only case 1
Only case 2
Only case 3
Case 1 and 2
Case 2 and 3
Case 1 and 3
All cases, case 1, case 2, case 3
第8题:
Create a database view to retrieve the data.
Use a clustered index on the SQL Azure database tables.
Open a new database connection when an operation times out.
Create SQL Azure database table indexes basedon application queries
第9题:
Archiver Process (ARCn): 1, 2, 5
System Monitor Process (SMON): 1, 4, 5
Process Monitor Process (PMON): 4, 5, 6
Database Writer Process (DBWn): 1, 3, 4
第10题:
The corresponding indexes for the table are also truncated.
Delete triggers on the table are fired during the execution of the TRUNCATE command.
The child table is truncated when the TRUNCATE command is applied on the parent table.
The high-water mark (HWM) is set to point to the first usable data block in the table segment.
No undo or very little undo data is generated during the execution of the TRUNCATE command
第11题:
The dependent materialized view should have a complete refresh performed after the online table redefinition process.
Triggers with the PRECEDES clause should be disabled before the online table redefinition process.
Referential integrity constraints must be manually enabled after the online table redefinition process.
The materialized log should be dropped before the online table redefinition process.
第12题:
Drop the foreign key. Import the data by using the script. Re-create the foreign key.
Create a CHECK constraint.
Create a DML INSTEAD OF trigger that writes the failed records to a file or table.
Create a DML AFTER trigger that writes the failed records to a file or table.
第13题:
Your are the DBA supporting an Oracle 11g Release 2 database and wish to move a table containing several DATE, CHAR, VARCHAR2, and NUMBER data types, and the table’s indexes, to another tablespace. The table does not have a primary key and is used by an OLTP application. Which technique will move the table and indexes while maintaining the highest level of availability to the application?()
第14题:
You have table 'apps','userdata' on server that uses MyISAM storage engine. You want to transfer this data to server but use InnoDB engine instead. You execute the following commands: ServerB commands: Shell> mysqldump –u root –h server –no-data apps userdata | mysql –u root –p apps Shell> mysql –u root –p –h server –e 'ALTER TABLE 'apps','userdata' ENGINE=InnoDB;' Shell> mysqldump –u root –p –h server –no-create-info –order-by-primary apps userdata | mysql –u root –p apps What effect does the – order-by-primary argument have on the mysqldump command?()
第15题:
You lost the index tablespace in your database. You are not able to use tablespace point-in-time recovery on the index tablespace. What could be the reason for this?()
第16题:
On your Oracle Database, you issue the following commands to create indexes: SQL > CREATE INDEX oe.ord_customer_ix1 ON oe.orders (customer_id, sales_rep_id) INVISIBLE; SQL> CREATE BITMAP INDEX oe.ord_customer_ix2 ON oe.orders (customer_id, sales_rep_id); Which two statements are true?()
第17题:
A bitmap join index is defined as().
第18题:
Oracle Data Pump.
An ALTER TABLE MOVE to move the table and ALTER INDEX REBUILD to move the indexes.
An ALTER TABLE MOVE to move the table and ALTER INDEX REBUILD ONLINE to move the indexes.
Online Table Redefinition.
Edition-Based Table Redefinition.
第19题:
process(bytes);
BitUtils.process(bytes);
app.BitUtils.process(bytes);
util.BitUtils.process(bytes);
import util.BitUtils. *; process(bytes);
SomeApp cannot use the process method in BitUtils.
第20题:
The index tablespace contains bitmap indexes.
The index tablespace contains more than one data file.
The index tablespace supports only complete recovery.
The index tablespace is not a dictionary-managed tablespace.
There is a dependency relationship between a table and its indexes.
第21题:
An index used to join two bitmap indexes on a table.
A bitmap index created for the join of two or more tables.
A bitmap index created on the join of two or more indexes.
A bitmap index created on the join of two or more indexed-organized tables.
第22题:
It exports tables with the most indexes first to assist with import speeds
It ensures that unique indexes have no conflicts when the data is dumped
It orders by primary key to assist in speeding up importing to InnoDB tables
It must be specified so index data is dumped correctly when –on-create-info is used
第23题:
process(bytes);
BitUtils.process(bytes);
util.BitUtils.process(bytes);
SomeApp cannot use methods in BitUtils.
import util.BitUtils.*; process(bytes);