Summer Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

1z0-082 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

1z0-082 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: Oracle Database Administration I
  • Last Update: Sep 12, 2025
  • Questions and Answers: 142
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

1z0-082 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

1z0-082 Practice Exam Questions with Answers Oracle Database Administration I Certification

Question # 6

Examine the description of the product_details table:

1z0-082 question answer

Which two statements are true?

A.

PRODUCT _ic can be assigned the PRIMARY KEY constraint.

B.

PRODUCT _price contains the value zero by default if no value is assigned to it.

C.

PRODUCT _price can be used in an arithmetic expression even if it has no value stored in it.

D.

EXPIRY_ DATE contains the sysdate by default if no date is assigned to it.

E.

PRODUCT_NAKE cannot contain duplicate values.

F.

EXPIRY_ DATE cannot be used in arithmetic expressions.

Full Access
Question # 7

Which two statements are true about the WHERE and HAVING clauses in a SELECT statement? (Choose two.)

A.

Aggregating functions and columns used in HAVING clauses must be specified in the SELECT list of a query

B.

WHERE and HAVING clauses can be used in the same statement only if applied to different table columns

C.

The HAVING clause can be used with aggregating functions in subqueries

D.

The WHERE clause can be used to exclude rows before dividing them into groups

E.

The WHERE clause can be used to exclude rows after dividing them into groups

Full Access
Question # 8

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

Full Access
Question # 9

Examine these SQL statements which execute successfully:

1z0-082 question answer

Which two statements are true after execution?

A.

The primary key constraint will be enabled and deferred.

B.

The foreign key constraint will be enabled and deferred.

C.

The foreign key constraint will be disabled.

D.

The foreign key constraint will be enabled and immediate.

E.

The primary key constraint will be enabled and immediate.

Full Access
Question # 10

The customers table has a cust_last_name column of data type varchar2.

The table has two rows whose "jst_last_name values are Andersen and Ausson.

Which query produces output for cust_last_xame containing Oder for the first row and Aus for the second?

A.

SELECT REPLACE FROM customers;

B.

SELECT REPLACE(SUBSTR(cust_last_name, -3), 'An', 'O') FROM customers;

C.

SELECT REPLACE(REPLACE(cust_last_name, 'son', ''), 'An', 'O'> FROM customers;

D.

SELECT INITCAP (REPLACE(TRIM('son' FROM cust_last_name), 'An', 'O*)) FROM customers;

Full Access
Question # 11

View the Exhibit and examine the description of the tables.

You execute this SQL statement:

1z0-082 question answer

Which three statements are true?

A.

The statement will fall if a row already exists in the sales table for product 23.

B.

The sales table has five foreign keys.

C.

A product can have a different unit price at different times.

D.

A customer can exist in many countries.

E.

The statement will execute successfully and a new row will be inserted into the sales table.

F.

The statement will fail because a subquery may not be contained in a values clause.

Full Access
Question # 12

Which three functions are performed by dispatchers in a shared server configuration? (Choose three.)

A.

writing inbound request to the common request queue from all shared server connections

B.

checking for outbound shared server responses on the common outbound response queue

C.

receiving inbound requests from processes using shared server connections

D.

sending each connection input request to the appropriate shared server input queue

E.

broadcasting shared server session responses back to requesters on all connections

F.

sending shared server session responses back to requesters on the appropriate connection

Full Access
Question # 13

Which three statements are true about the Oracle Data Dictionary? (Choose three.)

A.

Data dictionary views are created by joins of dictionary base tables and DBA-defined tables

B.

The data dictionary is created and maintained by the database administrator

C.

Views with the same name but different prefixes, such as CDB, DBA, ALL and USER, reference the same base tables from the data dictionary

D.

Base tables can be queried directly

E.

It is owned by the SYSTEM user

F.

Usernames of all users including database administrators are stored in the data dictionary

Full Access
Question # 14

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

Full Access
Question # 15

In one of your databases, user KING is:

1. Not a DBA user

2. An operating system (OS) user

Examine this command and its output:

1z0-082 question answer

What must you do so that KING is authenticated by the OS when connecting to the database instance?

A.

Set OS_AUTHENT_PREFIX to OPS$

B.

Have the OS administrator add KING to the OSDBA group

C.

Grant DBA to KING

D.

Unset REMOTE_LOGIN_PASSWORDFILE

E.

Alter user KING to be IDENTIFIED EXTERNALLY

Full Access
Question # 16

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

Full Access
Question # 17

Examine this description of the books table containing 100 rows:

1z0-082 question answer

Now examine this sequence of statements Issued In a new session;

1z0-082 question answer

Examine this description of the books table containing 100 rows:

Which three statements are true?

A.

The second rollback command restores the row that was inserted.

B.

The first rollback command leaves the table's 100 original rows locked.

C.

The second rollback command rolls back the rollback to savepoint a command.

D.

The first rollback command leaves the inserted row locked.

E.

The first RollBack command restores the row that was inserted.

F.

The second rollback command restores the 100 rows that were in the table originally.

G.

The first rollback command restores the 100 rows that were in the table originally.

Full Access
Question # 18

The orders table has a column ORDER_DATE of data type date.

The default display format for a date Is DD-MON-RR.

Which two where conditions demonstrate the correct usage of conversion functions?

A.

WHERE order_date > TO_CHAR(ADD_MONTHS(SYSDATE, 6), 'MON DD YYYY')

B.

WHERE TO_CHAR(order_date, 'MON DD YYYY') = 'JAN 20 2019'

C.

WHERE order_date > TO_DATE

D.

WHERE order_date IN (TO_DATE ('Oct 21 2018', 'Mon DD YYYY'), TC_CHAR('Nov 21 2018', 'Mon DD YYYY'))

E.

WHERE order date > TO DATE('JUL 10 2018', *MON DD YYYY')

Full Access
Question # 19

You want to use table compression suitable for OLTP that will:

Compress rows for all DML statements on that table

Minimize the overheads associated with compression

Which compression option is best suited for this?

A.

COLUMN STORE COMPRESS FOR QUERY LOW

B.

ROW STORE COMPRESS BASIC

C.

COLUMN STORE COMPRESS FOR ARCHIVE LOW

D.

COLUMN STORE COMPRESS FOR ARCHIVE HIGH

E.

ROW STORE COMPRESS ADVANCED

Full Access
Question # 20

Which two are true about shrinking a segment online? (Choose two.)

A.

It is not possible to shrink either indexes or Index Organized Tables (IOTs)

B.

It always eliminates all migrated rows if any exist in the table

C.

To shrink a table it must have a PRIMARY KEY constraint

D.

To shrink a table it must have a UNIQUE KEY constraint

E.

To shrink a table it must have row movement enabled

F.

It must be in a tablespace that uses Automatic Segment Space Management (ASSM)

Full Access
Question # 21

Which is the default column or columns for sorting output from compound queries using SET operators such as intersect In a SQL statement?

A.

the first column in the first select of the compound query

B.

the first varchab2 column in the first select of the compound query

C.

the first number column in the first select of the compound query

D.

the first number or varchar2 column in the last select of the compound query

E.

the first column in the last select of the compound query

Full Access
Question # 22

Which three statements are true about external tables in Oracle 18c and later releases? (Choose three.)

A.

External table files can be used for other external tables in a different database

B.

The ORACLE_LOADER access driver can be used to unload data from a database into an external table

C.

The ORACLE_DATAPUMP access driver can be used to unload data from a database into an external table

D.

They cannot be partitioned

E.

The ORACLE_DATAPUMP access driver can be used to load data into a database from an external table

F.

They support UPDATEs but not INSERTs and DELETEs

Full Access
Question # 23

The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type DATE.

You want to display the date of the first Monday after the completion of six months since hiring.

The NLS_TERRITORY parameter is set to AMERICA in the session and, therefore, Sunday is the first day on the week.

Which query can be used?

A.

SELECT emp_id, ADD_MONTHS(hire_date, 6), NEXT_DAY(‘MONDAY’) FROM employees;

B.

SELECT emp_id, NEXT_DAY(ADD_MONTHS(hire_date, 6), ‘MONDAY’) FROM employees;

C.

SELECT emp_id, NEXT_DAY(MONTHS_BETWEEN(hire_date, SYSDATE), 6) FROM employees;

D.

SELECT emp_id, NEXT_DAY(ADD_MONTHS(hire_date, 6), 1) FROM employees;

Full Access
Question # 24

Examine these commands:

1z0-082 question answer

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.

Full Access
Question # 25

Examine this command:

SQL> ALTER TABLE ORDERS SHRINK SPACE COMPACT

Which two statements are true?

A.

The high-water mark (HWM) of orders is adjusted.

B.

Only queries are allowed on ORDERS while the shrink is executing.

C.

Queries and DML statements are allowed on ORDERS while the shrink is executing.

D.

The shrink operation causes rows to be moved to empty space starting from the beginning of the orders segment.

E.

Dependent indexes become UNUSABLE.

F.

The shrink operation causes rows to be moved to empty space starting toward the end of the orders segment.

Full Access
Question # 26

Which three statements are true about Oracle synonyms? (Choose three.)

A.

A synonym cannot be created for a PL/SQL package

B.

A synonym can be available to all users

C.

A SEQUENCE can have a synonym

D.

A synonym created by one user can refer to an object belonging to another user

E.

Any user can drop a PUBLIC synonym

Full Access
Question # 27

Which four account management capabilities can be configured using Oracle profiles? (Choose four.)

A.

the number of hours for which an account is locked after the configured number of login attempts has been reached

B.

the number of days for which an account may be inactive before it is locked

C.

the maximum amount of CPU time allowed for a user’s sessions before their account is locked

D.

the ability to prevent a password from ever being reused

E.

the number of password changes required within a period of time before a password can be reused

F.

the number of days for which an account is locked after the configured number of login attempts has been reached

G.

the maximum number of sessions permitted for a user before the account is locked

Full Access
Question # 28

You need to calculate the number of days from 1st January 2019 until today.

Dates are stored in the default format of DD-MON-RR.

Which two queries give the required output? (Choose two.)

A.

SELECT TO_CHAR(SYSDATE,‘DD-MON-YYYY’) – ’01-JAN-2019’ FROM DUAL;

B.

SELECT ROUND(SYSDATE – ’01-JAN-2019’) FROM DUAL;

C.

SELECT ROUND(SYSDATE – TO_DATE(‘01/JANUARY/2019’)) FROM DUAL;

D.

SELECT TO_DATE(SYSDATE, ‘DD/MONTH/YYYY’) – ‘01/JANUARY/2019’ FROM DUAL;

E.

SELECT SYSDATE – TO_DATE(’01-JANUARY-2019’) FROM DUAL;

Full Access
Question # 29

Which three statements are true about the Oracle join and ANSI join syntax? (Choose three.)

A.

The Oracle join syntax supports creation of a Cartesian product of two tables

B.

The Oracle join syntax performs better than the SQL:1999 compliant ANSI join syntax

C.

The SQL:1999 compliant ANSI join syntax supports natural joins

D.

The SQL:1999 compliant ANSI join syntax supports creation of a Cartesian product of two tables

E.

The Oracle join syntax only supports right outer joins

F.

The Oracle join syntax supports natural joins

G.

The Oracle join syntax performs less well than the SQL:1999 compliant ANSI join syntax

Full Access
Question # 30

Table EMPLOYEES contains columns including EMPLOYEE_ID, JOB_ID and SALARY.

Only the EMPLOYEE_ID column is indexed.

Rows exist for employees 100 and 200.

Examine this statement:

1z0-082 question answer

Which two statements are true? (Choose two.)

A.

Employee 100 will have SALARY set to the same value as the SALARY of employee 200

B.

Employee 200 will have JOB_ID set to the same value as the JOB_ID of employee 100

C.

Employee 200 will have SALARY set to the same value as the SALARY of employee 100

D.

Employee 100 will have JOB_ID set to the same value as the JOB_ID of employee 200

E.

Employees 100 and 200 will have the same JOB_ID as before the update command

F.

Employees 100 and 200 will have the same SALARY as before the update command

Full Access
Question # 31

Which three statements are true about time zones, date data types, and timestamp data types in an Oracle database? (Choose three.)

A.

The CURRENT_TIMESTAMP function returns data without time zone information

B.

A TIMESTAMP WITH LOCAL TIMEZONE data type column is stored in the database using the time zone of the session that inserted the row

C.

A TIMESTAMP data type column contains information about year, month, and day

D.

The DBTIMEZONE function can return an offset from Universal Coordinated Time (UTC)

E.

The SESSIONTIMEZONE function can return an offset from Universal Coordinated Time (UTC)

Full Access
Question # 32

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

A.

The ON clause must be used

B.

The query must use two different aliases for the table

C.

It must be an equijoin

D.

It must be an inner join

E.

The ON clause can be used

F.

It can be an outer join

Full Access
Question # 33

Your database instance is started with a PFILE.

Examine these parameters:

1z0-082 question answer

You want to increase the size of the buffer cache.

Free memory is available to increase the size of the buffer cache.

You execute the command:

SQL> ALTER SYSTEM SET DB_CACHE_SIZE=1024M;

What is the outcome?

A.

The value is changed only in the PFILE and takes effect at the next instance startup

B.

The value is changed for the current instance and in the PFILE

C.

It fails because the SCOPE clause is missing

D.

Change is applied to the current instance, but does not persist after instance restart

Full Access
Question # 34

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

A.

Multiple INTERSECT operators are not possible in the same SQL statement

B.

It processes NULLs in the selected columns

C.

INTERSECT is of lower precedence than UNION or UNION ALL

D.

It ignores NULLs

Full Access
Question # 35

Which two statements are true about the Oracle Data Dictionary?

A.

It is owned by the sys user.

B.

Data dictionary base tables can be queried directly.

C.

It is owned by the system user.

D.

Data dictionary views are always created with queries that join two or more base tables.

E.

All data dictionary view joins base tables to dynamic performance views.

Full Access
Question # 36

Which three statements are true about the tools used to configure Oracle Net Services? (Choose three.)

A.

The Oracle Net Configuration Assistant is only used when running the Oracle installer

B.

Oracle Net Manager can be used to centrally configure listeners on any database server target

C.

The lsnrctl utility requires a listener.ora file to exist before it is started

D.

Oracle Net Manager can be used to locally configure naming methods on a database server

E.

Enterprise Manager Cloud Control can be used to centrally configure listeners on any managed database server

F.

Enterprise Manager Cloud Control can be used to centrally configure net service names for any database server target

Full Access
Question # 37

In one of your databases, you create a user, HR, and then execute this command:

GRANT CREATE SESSION TO hr WITH ADMIN OPTION;

Which three actions can HR perform? (Choose three.)

A.

Revoke the CREATE SESSION privilege from other users

B.

Revoke the CREATE SESSION privilege from user HR

C.

Log in to the database instance

D.

Grant the CREATE SESSION privilege with ADMIN OPTION to other users

E.

Execute DDL statements in the HR schema

F.

Execute DML statements in the HR schema

Full Access
Question # 38

Which three statements are true about the Automatic Diagnostic Repository (ADR)?

A.

It Is held Inside an Oracle database schema.

B.

The ADR base is specified In the diagnostic_dest database parameter.

C.

It is only used for Oracle Database diagnostic information.

D.

It is a file-based repository held outside any database.

E.

It can be used for problem diagnosis of a database when that database's instance is down.

Full Access
Question # 39

Examine the description of the CUSTOMERS table:

1z0-082 question answer

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?

A.

SELECT * FROM customers WHERE city LIKE ‘D_%’;

B.

SELECT * FROM customers WHERE city = ‘%D_’;

C.

SELECT * FROM customers WHERE city LIKE ‘D_’;

D.

SELECT * FROM customers WHERE city = ‘D_%’;

Full Access
Question # 40

The ORCL database has RESUMABLE__TIMEOUT = 7200 and DEFERRED_SEGMENT_CREATION = FALSE

User U1 has a 1 MB quota in tablespace DATA.

U1 executes this command:

SQL> CREATE TABLE t1 AS

(SELECT object_name, sharing, created

FROM dba_objects);

U1 complains that the command is taking too long to execute.

In the alert log, the database administrator (DBA) finds this:

2017-03-06T12:15:17.183438+05:30

statement in resumable session ‘User U1(136), Session 1, Instance 1’ was suspended due to ORA-01536: space quota exceeded for tablespace ‘DATA’

Which are three actions any one of which the DBA could take to resume the session? (Choose three.)

A.

Add a data file to DATA

B.

Drop other U1 objects in DATA

C.

Increase U1’s quota sufficiently in DATA

D.

Set DEFERRED_SEGMENT_CREATION to TRUE

E.

Grant UNLIMITED TABLESPACE to U1

F.

Set AUTOEXTEND ON for data files in DATA

Full Access
Question # 41

Which three statements are true about roles?

A.

All roles granted to a user are set on by default when the user logs in,

B.

Object privileges may not be granted to roles.

C.

The SET ROLE statement can disable one or more roles for a session.

D.

Roles must be password protected.

E.

Roles may be granted to roles.

F.

The SET ROLE statement can enable one or more roles for a session.

Full Access
Question # 42

Which two statements are true regarding a SAVEPOINT? (Choose two.)

A.

Rolling back to a SAVEPOINT can undo a CREATE INDEX statement

B.

Rolling back to a SAVEPOINT can undo a TRUNCATE statement

C.

Only one SAVEPOINT may be issued in a transaction

D.

A SAVEPOINT does not issue a COMMIT

E.

Rolling back to a SAVEPOINT can undo a DELETE statement

Full Access