Oracle Database Administration I - 1Z0-082 Exam Practice Test

Which three statements are true about Oracle synonyms? (Choose three.)
Correct Answer: A,C,D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which two statements are true about trace files produced by the Oracle Database server?
(Choose two.)
Correct Answer: B,C Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
You have been tasked to create a table for a banking application.
One of the columns must meet three requirements:
1. Be stored in a format supporting date arithmetic without using
conversion functions
2. Store a loan period of up to 10 years
3. Be used for calculating interest for the number of days the loan
remains unpaid
Which data type should you use?
Correct Answer: E Vote an answer
Which three instance situations are possible with the Oracle Database server without multi- tenant? (Choose three.)
Correct Answer: A,C,D Vote an answer
Which two types of files are opened by a database instance in the NOMOUNT state?
Correct Answer: B,E Vote an answer
Examine the description of the BOOKS table:

The table has 100 rows.
Examine this sequence of statements issued in a new session:
INSERT INTO books VALUES ('ADV112', 'Adventures of Tom Sawyer', NULL,
NULL);
SAVEPOINT a;
DELETE FROM books;
ROLLBACK TO SAVEPOINT a;
ROLLBACK;
Which two statements are true? (Choose two.)
Correct Answer: A,E Vote an answer
Examine these SQL statements which execute successfully:

Which two statements are true after execution?
Correct Answer: D Vote an answer
Which statement is true about the INTERSECT operator used in compound queries?
Correct Answer: C Vote an answer
In the SALES database, DEFERRED_SEGMENT_CREATION is TRUE.
Examine this command:
SQL> CREATE TABLE T1(c1 INT PRIMARY KEY, c2 CLOB);
Which segment or segments, if any, are created as a result of executing the command?
Correct Answer: C Vote an answer