MultipleChoice
An Oracle database server session has an uncommitted transaction in progress which updated 5000 rows in a table.
In which three situations does the transactions complete thereby committing the updates? (Choose three.)
OptionsMultipleChoice
The ORDERS table has a primary key constraint on the ORDER_ID column.
The ORDER_ITEMS table has a foreign key constraint on the ORDER_ID column, referencing the primary key of the ORDERS table.
The constraint is defined with ON DELETE CASCADE.
There are rows in the ORDERS table with an ORDER_TOTAL of less than 1000.
Which three DELETE statements execute successfully?
OptionsMultipleChoice
Which three are true about the CREATE TABLE command? (Choose three.)
OptionsMultipleChoice
Which three actions can you perform by using the ORACLE_DATAPUMP access driver? (Choose three.)
OptionsMultipleChoice
Which three privileges can be restricted to a subset of columns in a table? (Choose three.)
OptionsMultipleChoice
Examine these statements and the result:
CREATE SEQUENCE customer_seq CACHE 10;
SELECT customer_seq. NEXTVAL FROM DUAL; NEXTVAL
1
Now examine this command:
ALTER SEQUENCE customer_soq
What must replace missing clause for customer_seq. nfxtvai. to return 11?
OptionsMultipleChoice
Which two are true about queries using set operators (UNION, UNION ALL, INTERSECT and MINUS?
OptionsMultipleChoice
Examine this list of queries:
1. SELECT ROUND (TRUNC (15, 193, 1)) ''Results'' FROM DUAL;
2. SELECT ROUND (15, 193, 1)) ''Results'' FROM DUAL;
3. SELECT (TRUNC (15, 193, 1)) ''Results'' FROM DUAL;
4. SELECT ROUND (ROUND (15. 193, 1)) ''Results'' FROM DUAL;
Which two statements are true?
OptionsMultipleChoice
Examine these statements which execute successfully:
Both statements display departments ordered by their average salaries.
Which two are true?
OptionsMultipleChoice
Which two are true about multitable insert statements?
Options