Oracle 1Z0-082 Exam (page: 3)
Oracle Database Administration I
Updated on: 29-Aug-2025

Viewing Page 3 of 30

Which two statements are true about the SET VERIFY ON command? (Choose two.)

  1. It can be used only in SQL*Plus
  2. It displays values for variables used only in the WHERE clause of a query
  3. It can be used in SQL Developer and SQL*Plus
  4. It displays values for variables created by the DEFINE command
  5. It displays values for variables prefixed with &&

Answer(s): A,D



Which three statements are true about a self join? (Choose three.)

  1. The ON clause must be used
  2. The query must use two different aliases for the table
  3. It must be an equijoin
  4. It must be an inner join
  5. The ON clause can be used
  6. It can be an outer join

Answer(s): B,D,E



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?

  1. SELECT &&col1, &&col2
    FROM &table
    WHERE &&condition = &&cond;
  2. SELECT &col1, &col2
    FROM &&table
    WHERE &condition;
  3. SELECT &col1, &col2
    FROM “&table”
    WHERE &condition;
  4. SELECT ‘&&col1’, ‘&&col2’
    FROM &table
    WHERE ‘&&condition’ = ‘&cond’;
  5. SELECT &&col1, &&col2
    FROM &table
    WHERE &&condition;

Answer(s): B



Examine the description of the CUSTOMERS table:


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?

  1. SELECT * FROM customers WHERE city LIKE ‘D_%’;
  2. SELECT * FROM customers WHERE city = ‘%D_’;
  3. SELECT * FROM customers WHERE city LIKE ‘D_’;
  4. SELECT * FROM customers WHERE city = ‘D_%’;

Answer(s): A



Examine this command:

Which two statements are true? (Choose two.)

  1. DML may be performed on tables with one or more extents in this data file during the execution of this command.
  2. The tablespace containing SALES1.DBF must be altered READ ONLY before executing the command.
  3. The tablespace containing SALES1.DBF must be altered OFFLINE before executing the command.
  4. If Oracle Managed Files (OMF) is used, then the file is renamed but moved to DB_CREATE_FILE_DEST.
  5. The file is renamed and stored in the same location

Answer(s): A,B



Viewing Page 3 of 30



Share your comments for Oracle 1Z0-082 exam with other users:

Biswa 11/20/2023 8:50:00 AM

refresh db knowledge
Anonymous


Biswa 11/20/2023 9:07:00 AM

understanding about joins
Anonymous


Biswa 11/20/2023 9:28:00 AM

understand sql col.
Anonymous