Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Oracle > Oracle Certifications > 1Z0-082 > 1Z0-082 Online Practice Questions and Answers

1Z0-082 Online Practice Questions and Answers

Questions 4

Which three statements are true regarding indexes? (Choose three.)

A. A UNIQUE index can be altered to be non-unique

B. A SELECT statement can access one or more indices without accessing any tables

C. A table belonging to one user can have an index that belongs to a different user

D. An update to a table can result in updates to any or all of the table's indexes

E. When a table is dropped and is moved to the RECYCLE BIN, all indexes built on that table are permanently dropped

F. An update to a table can result in no updates to any of the table's indexes

Buy Now

Correct Answer: BDF

https://docs.oracle.com/cd/A87860_01/doc/server.817/a76956/indexes.htm https://docs.oracle.com/cd/B10501_01/server.920/a96521/indexes.htm

Questions 5

Which two statements are true regarding the UNION and UNION ALL operators? (Choose two.)

A. Duplicates are eliminated automatically by the UNION ALL operator

B. The number of columns selected in each SELECT statement must be identical

C. The names of columns selected in each SELECT statement must be identical

D. The output is sorted by the UNION ALL operator

E. NULLS are not ignored during duplicate checking

Buy Now

Correct Answer: BE

Questions 6

Which compression method is recommended for Direct-Path Insert operations?

A. COLUMN STORE COMPRESS BASIC

B. COLUMN STORE COMPRESS ADVANCED

C. ROW STORE COMPRESS BASIC

D. ROW STORE COMPRESS ADVANCED

Buy Now

Correct Answer: C

Questions 7

Examine these commands:

Which two statements are true about the sqiidr execution?

A. It generates a sqi script that it uses to load data from EMP.DAT TO EMP.

B. It overwrites the data for Alan and adds data for Curl and Bob

C. It appends data from EMP.DAT TO EMP.

D. It overwrites all data in emp with data from emp.dat.

E. It generates a log that contains control file entries, which can be used with normal SQL'Loader operations.

Buy Now

Correct Answer: AC

Questions 8

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

Buy Now

Correct Answer: BC

select employee_id,last_name "Last Name" FROM employees where employee_id=101 union select employee_id EMP_NO, last_name from employees where employee_id=113; C is correct.

Questions 9

Examine the description of the SALES table: The SALES table has 55,000 rows. Examine this statement:

Which two statements are true? (Choose two.)

A. SALES1 has NOT NULL constraints on any selected columns which had those constraints in the SALES table.

B. SALES1 has primary KEY and UNIQUE constraints on any selected columns which had those constraints in the SALES table.

C. SALES1 is created with 55,000 rows.

D. SALES1 is created with no rows.

E. SALES1 is created with 1 row.

Buy Now

Correct Answer: AC

Questions 10

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?

A. in the undo tablespace

B. in the SYSAUX tablespace

C. in the SGA

D. in the PGA

E. in the temporary tablespace

Buy Now

Correct Answer: E

Oracle database 12c Release 1 (12.1) introduced the concept of temporary undo, allowing the undo segments for global temporary tables to be stored in the temporary tablespace. This allows global temporary tables to be used in physical standby databases and read-only databases, as well as removing the need to create redo.

16.7 Managing Temporary Undo By default, undo records for temporary tables are stored in the undo tablespace and are logged in the redo, which is the same way undo is managed for persistent tables. However, you can use the TEMP_UNDO_ENABLED initialization parameter to separate undo for temporary tables from undo for persistent tables. When this parameter is set to TRUE, the undo for temporary tables is called temporary undo.

16.7.1 About Managing Temporary Undo Temporary undo records are stored in the database's temporary tablespaces and thus are not logged in the redo log. When temporary undo is enabled, some of the segments used by the temporary tablespaces store the temporary undo, and these segments are called temporary undo segments.

Reference: http://www.dba-oracle.com/t_temp_undo_enabled.htm Reference: https://docs.oracle.com/database/121/ADMIN/undo.htm#ADMIN11479

Questions 11

Which two statements are true about the DUAL table? (Choose two.)

A. It can be accessed only by the SYS user

B. It consists of a single row and single column of VARCHAR2 data type

C. It can display multiple rows but only a single column

D. It can be used to display only constants or pseudo columns

E. It can be accessed by any user who has the SELECT privilege in any schema

F. It can display multiple rows and columns

Buy Now

Correct Answer: BF

SQL> SELECT level, sysdate 2 FROM dual 3 CONNECT BY 4 level <= 4;

LEVEL SYSDATE

1 06-AUG-20

2 06-AUG-20

3 06-AUG-20

4 06-AUG-20

It can return multple rows and columns.

D is wrong, you just create a brand new user and do not grant any privilege but still it can select dual table.

Reference: https://en.wikipedia.org/wiki/DUAL_table

Questions 12

Which three statements are true about connection strings and service names used to connect to an Oracle database instance?

A. A single database instance can support connections for multiple service names.

B. A service name is created by a listener.

C. A single connection string can refer to multiple database instances.

D. A connection string including a service name must be defined in the cnsnames.ora file.

E. A connection string must include the SID of a database Instance.

F. Different connection strings in the same tnsnames.ora file can contain the same service name, host and port parameters.

Buy Now

Correct Answer: ACF

Questions 13

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?

A. T1, an index segment for the primary key, a LOB segment, and a lobindex segment

B. no segments are created

C. T1 only

D. T1 and an index segment created for the primary key only

E. T1, an index segment for the primary key, and a LOB segment only

Buy Now

Correct Answer: B

DEFERRED_SEGMENT_CREATION specifies the semantics of deferred segment creation. If set to true, then segments for tables and their dependent objects (LOBs, indexes) will not be created until the first row is inserted into the table.

Before creating a set of tables, if it is known that a significant number of them will not be populated, then consider setting this parameter to true. This saves disk space and minimizes install time

SQL> alter session set deferred_segment_creation=TRUE;

Session altered.

SQL> CREATE TABLE T1(c1 INT PRIMARY KEY, c2 CLOB);

Table created.

SQL> select segment_name,segment_type,bytes from user_segments;

no rows selected

Exam Code: 1Z0-082
Exam Name: Oracle Database Administration I
Last Update: Jun 07, 2025
Questions: 162

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2025 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.