Oracle Database Administration I

Here you have the best Oracle 1z0-082 practice exam questions

  • You have 158 total questions to study from
  • Each page has 5 questions, making a total of 32 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 12, 2024
Question 1 of 158

You execute this command:

Sufficient storage is available in filesystem /u01.

Which two statements are true about the BIG_TBS tablespace? (Choose two.)

    Correct Answer: A, C

    The BIG_TBS tablespace, being a BIGFILE tablespace, allows the AUTOEXTEND option for the datafile, meaning the datafile can automatically grow as needed without manual intervention. Additionally, a BIGFILE tablespace can only contain a single, large datafile and does not allow adding additional datafiles. Therefore, options stating that AUTOEXTEND is possible and additional data files may not be added are correct.

Question 2 of 158

Which statement is true about the INTERSECT operator used in compound queries?

    Correct Answer: B

    The INTERSECT operator returns only the rows that appear in both result sets, including NULL values. NULLs are processed and can be part of the result if they are present in both result sets. The other statements are incorrect: you can have multiple INTERSECT operators in the same SQL statement, INTERSECT has the same precedence as UNION and UNION ALL, and it does not ignore NULLs.

Question 3 of 158

Which three statements are true about advanced connection options supported by Oracle Net for connection to Oracle Database instances? (Choose three.)

    Correct Answer: C, D, F

    Source Routing enables the use of Connection Manager (CMAN) which allows for routing network traffic through a firewall, enabling secure connections. Load Balancing can indeed distribute the number of connections among dispatchers within a Shared Server configuration, optimizing resource utilization. Connect Time Failover requires the connect string to have two or more listener addresses configured to provide an alternative in case the initial connection attempt fails.

Question 4 of 158

Which two statements are true about date/time functions in a session where NLS_DATE_FORMAT is set to DD-MON-YYYY HH24:MI:SS? (Choose two.)

    Correct Answer: C, F

    CURRENT_DATE returns the current date and time as per the session time zone. CURRENT_TIMESTAMP returns the same date as CURRENT_DATE, but it includes additional details such as fractional seconds and the time zone information associated with the session.

Question 5 of 158

A database is configured to use automatic undo management with temporary undo enabled.

An UPDATE is executed on a temporary table.

Where is the UNDO stored?

    Correct Answer: E

    When a database is configured to use automatic undo management with temporary undo enabled, the undo for temporary tables is stored in the temporary tablespace. This is to separate the handling of undo for temporary tables from that of persistent tables, which remains in the undo tablespace. The temporary undo records are thus managed within the temporary tablespace.