QUESTION
QUESTION
QUESTION
Answer(s): A,B
QUESTION: 2
D. It ignores NULLs
Answer(s): B
QUESTION: 3
F. Connect Time Failover requires the connect string to have two or more listener
addresses configured
Answer(s): B,C,F
QUESTION: 4
D. SYSDATE can be used in expressions only if the default date format is DD-
MON-RR
E. SYSDATE and CURRENT_DATE return the current date and time set for the
operating system of the database server
Answer(s): B,C
QUESTION: 5
C. in the SGA
D. in the PGA
Answer(s): A
QUESTION: 6
D. TIMESTAMP
Answer(s): B
QUESTION: 7
Answer(s): C
QUESTION: 8
Answer(s): C,F,G
QUESTION: 9
Answer(s): D,E
QUESTION: 10
D. sending each connection input request to the appropriate shared server input
queue
Answer(s): A,C,D
QUESTION: 11
Which two statements are true about the SET VERIFY ON command?
(Choose two.)
A. It can be used only in SQL*Plus
B. It displays values for variables used only in the WHERE clause of a query
Answer(s): A,D
QUESTION: 12
Which three statements are true about a self join? (Choose three.)
A. The ON clause must be used
B. The query must use two different aliases for the table
C. It must be an equijoin
Answer(s): B,D,E
QUESTION: 13
You want to write a query that prompts for two column names and the
WHERE condition each time it is executed in a session but only prompts
for the table name the first time it is executed.
The variables used in your query are never undefined in your session.
Which query can be used?
A. SELECT &&col1, &&col2
FROM &table
WHERE &&condition = &&cond;
Answer(s): B
QUESTION: 14
You want to display details of all customers who reside in cities starting
with the letter D followed by at least two characters. Which query can be
used?
A. SELECT * FROM customers WHERE city LIKE ‘D_%’;
Answer(s): A
QUESTION: 15
D. If Oracle Managed Files (OMF) is used, then the file is renamed but moved to
DB_CREATE_FILE_DEST.
Answer(s): A,B
QUESTION: 16
Which three statements are true about dropping and unused columns in
an Oracle database? (Choose three.)
A. A primary key column referenced by another column as a foreign key can be
dropped if using the CASCADE option.
F. A column that is set to UNUSED still counts towards the limit of 1000 columns
per table
Answer(s): A,B,F
QUESTION: 17
C. Update operations always attempt to find blocks with free space appropriate to
the length of the row being updated
D. Insert operations always attempt to find blocks with free space appropriate to
the length of the row being inserted
E. A block will always be eligible for inserts if the row is short enough to fit into
the block
Answer(s): C,E
QUESTION: 18
Which two statements are true about the ORD_ITEMS table and the
ORD_SEQ sequence? (Choose two.)
A. If sequence ORD_SEQ is dropped then the default value for column ORD_NO
will be NULL for rows inserted into ORD_ITEMS
B. Any user inserting rows into table ORD_ITEMS must have been granted access
to sequence ORD_SEQ
C. Column ORD_NO gets the next number from sequence ORD_SEQ whenever a
row is inserted into ORD_ITEMS and no explicit value is given for ORD_NO
D. Sequence ORD_SEQ cycles back to 1 after every 5000 numbers and can cycle
20 times
Answer(s): B,E
QUESTION: 19
Which three instance situations are possible with the Oracle Database
server without multi-tenant? (Choose three.)
A. two or more instances on separate servers all associated with one database
C. one instance on one server associated with two or more databases on the same
server
E. one instance on one server associated with two or more databases on separate
servers
Answer(s): C,D,E
QUESTION: 20
Which two statements are true about the ORDER BY clause when used
with a SQL statement containing a SET operator such as UNION?
(Choose two.)
A. Column positions must be used in the ORDER BY clause
B. Only column names from the first SELECT statement in the compound query
are recognized
C. The first column in the first SELECT of the compound query with the UNION
operator is used by default to sort output in the absence of an ORDER BY
clause
D. Each SELECT statement in the compound query must have its own ORDER
BY clause
E. Each SELECT statement in the compound query can have its own ORDER BY
clause
Answer(s): B,E