| 1. In which case would you use a
FULL OUTER JOIN? |
|
|
|
| 2. Which are DML statements? (Choose
all that apply) |
|
|
|
| 3. In which scenario would index be
most useful? |
|
|
|
| 4. Which two statements about
sequences are true? (Choose two) |
|
|
|
| 5. Which three statements correctly
describe the functions and use of constraints? (Choose three.) |
|
|
|
| 6. What is true about joining tables
through an equijoin? |
|
|
|
7. The credit controller for your
organization has complained that the report she runs to show customers with bad
credit ratings takes too long to run. You look at the query that the report
runs and determine that the report would run faster if there were an index on
the CREDIT_RATING column of the CUSTOMERS table.
The CUSTOMERS table has about 5 million rows and around 100 new rows are added
every month. Old records are not deleted from the table.
The CREDIT_RATING column is defined as a VARCHAR2(5) field. There are only 10
possible credit ratings and a customer's credit rating changes infrequently.
Customers with bad credit ratings have a value in the CREDIT_RATINGS column of
'BAD' or 'F'.
Which type of index would be best for this column? |
|
|
|
| 8. In which scenario would TOP N
analysis be the best solution? |
|
|
|
| 9. Which two statements about
creating constraints are true? (Choose two) |
|
|
|
10. Your developers asked you to
create an index on the PROD_ID column of the SALES_HISTORY table, which has 100
million rows.
The table has approximately 2 million rows of new data loaded on the first day
of every month. For the remainder of the month, the table is only queried. Most
reports are generated according to the PROD_ID, which has 96 distinct values.
Which type of index would be appropriate? |
|
|
|
| 11. For which two constraints are
indexes created when the constraint is added? (Choose two.) |
|
|
|
| 12. Which constraint state prevents
new data that violates the constraint from being entered, but allows invalid
data to exist in the table? |
|
|
|
| 13. Which two are true regarding
external tables? (Choose two) |
|
|
|
| 14. The EMPLOYEES table has six
indexes and DML operations are slow. Which command begins monitoring the
EMPLOYEE_IDX_FK index to determine whether it has been used by an execution
plan? |
|
|
|
| 15. Which RMAN command do you use to
verify that the RMAN repository information is synchronized with the actual
files that exist on disk? |
|
|
|
| 16. What is true regarding
direct-load insert? |
|
|
|
| 17. Which of the following
SQL*Loader parameters enables you to load a specified number of records stored
in the data file? |
|
|
|
18. You have a database with the
DB_NAME set to PROD and ORACLE_SID set to PROD.
These files are in the default location for the initialization files:
• init.ora
• initPROD.ora
• spfile.ora
• spfilePROD.ora
The database is started with this command:
SQL> startup
Which initialization files does the Oracle Server attempt to read, and in which
order? |
|
|
|
| 19. Which is a complete list of the
logical components of the Oracle database? |
|
|
tablespaces, segments, extents, and data files |
|
tablespaces, segments, extents, and Oracle blocks |
|
tablespaces, database, segments, extents, and data files |
|
tablespaces, database, segments, extents, and Oracle blocks |
|
tablespaces, segments, extents, data files, and Oracle blocks |
|
|
| 20. For which two constraints are
indexes created when the constraint is added? (Choose two) |
|
|
|
21. Which type of index does this
syntax create?
CREATE INDEX hr.employees_last_name_idx
ON hr.employees(last_name)
PCTFREE 30
STORAGE(INITIAL 200K NEXT 200K
PCTINCREASE 0 MAXEXTENTS 50)
TABLESPACE indx; |
|
|
|
| 22. Which type of file is part of
the Oracle database? |
|
|
|
|
|
|