Labour Day - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpm65

1z0-082 Oracle Database Administration I Questions and Answers

Questions 4

Examine the description of the employees table:

1z0-082 Question 4

Which query requires explicit data type conversion?

Options:

A.

SELECT join_date FROM employees WHERE join_date > '10-02-2018';

B.

SELECT join_date I I ' ' II salary FROM employees;

C.

SELECT SUBSTR

D.

SELECT join_date + '20' FROM employees; SELECT salary * '120.50' FROM employees;

Buy Now
Questions 5

What is true about non-equijoin statement performance? (Choose two.)

Options:

A.

Table aliases can improve performance

B.

The BETWEEN condition always performs better than using the >= and <= conditions

C.

The join syntax used makes no difference to performance

D.

The BETWEEN condition always performs less well than using the >= and <= conditions

E.

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

Buy Now
Questions 6

You currently have an active transaction in your session and have been granted select access to vstransaction.

1z0-082 Question 6

In which three situations will re-executing this query still return a row but with a different XID, indicating a new transaction has started?

Options:

A.

after successfully executing a commit or rollback followed by a select statement

B.

after successfully executing a create table as select statement followed by a select for update statement

C.

after successfully executing a commit or rollback followed by a DML statement

D.

after successfully executing a create table statement followed by a create index statement

E.

after successfully executing a DML statement following a failed DML statement

F.

after successfully executing a truncate statement followed by a DML statement

Buy Now
Questions 7

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

Options:

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

Buy Now
Questions 8

Your database instance was shut down normally and then started in NOMOUNT state. You then execute this command:

ALTER DATABASE MOUNT;

Which two actions are performed? (Choose two.)

Options:

A.

The online redo logs are opened

B.

The online data files are opened

C.

The alert log records the execution details

D.

The Oracle background processes are started

E.

The initialization parameter file is read

F.

The control file is read

Buy Now
Questions 9

Which three are types of segments in an Oracle Database? (Choose three.)

Options:

A.

undo

B.

index

C.

stored procedures

D.

sequences

E.

tables

F.

clusters

Buy Now
Questions 10

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

Options:

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

Buy Now
Questions 11

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

Options:

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

Buy Now
Questions 12

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?

Options:

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;

Buy Now
Questions 13

Which three statements are true about undo segments and the use of undo by transactions in an Oracle database instance? (Choose three.)

Options:

A.

An undo segment may be used by multiple transactions simultaneously

B.

Undo segments can wrap around to the first extent when a transaction fills the last extend of the undo segment

C.

Undo segments have a minimum of three extents

D.

Undo segments can extend when a transaction fills the last extent of the undo segment

E.

A single transaction may use multiple undo segments simultaneously

F.

Undo segments must be stored in a BIGFILE tablespace

G.

Undo segments must be stored in a SMALLFILE tablespace

Buy Now
Questions 14

Which three statements are true about using SQL*Plus?

Options:

A.

It has its own commands that are separate from any SQL statements.

B.

It must be downloaded from the Oracle Technology Network (OTN).

C.

It can run scripts entered at the SQL prompt.

D.

It can run Recovery Manager (RMAN) commands.

E.

It has both command-line and graphical user interfaces (GUI).

F.

It can run scripts passed to it by a shell script.

Buy Now
Questions 15

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

Options:

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.

Buy Now
Questions 16

View the Exhibit and examine the description of the tables.

You execute this SQL statement:

1z0-082 Question 16

Which three statements are true?

Options:

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.

Buy Now
Questions 17

Which two actions can you perform using DBCA for an existing database?

Options:

A.

Create a template that can be used to clone the database.

B.

Change the server mode from dedicated to shared, and vice versa.

C.

Change the character set.

D.

Create an additional listener.

E.

Create nonstandard block size tablespaces.

Buy Now
Questions 18

Which two statements are true about the Oracle Data Dictionary?

Options:

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.

Buy Now
Questions 19

Table ORDER_ITEMS contains columns ORDER_ID, UNIT_PRICE and QUANTITY, of data type NUMBER.

Examine these SQL statements:

Statement 1:

SELECT MAX(unit_price * quantity) “Maximum Order”

FROM order_items;

Statement 2:

SELECT MAX(unit_price * quantity) “Maximum Order”

FROM order_items

GROUP BY order_id;

Which two statements are true?

Options:

A.

Statement 1 returns only one row of output.

B.

Statement 2 returns only one row of output.

C.

Both statements will return NULL if either UNIT_PRICE or QUANTITY contains NULL.

D.

Both the statements give the same output.

E.

Statement 2 may return multiple rows of output.

Buy Now
Questions 20

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

Options:

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
Questions 21

Examine this description of the TRANSACTIONS table:

1z0-082 Question 21

Which two SQL statements execute successfully? (Choose two.)

Options:

A.

SELECT customer_id AS “CUSTOMER-ID”, transaction_date AS DATE, amount + 100 “DUES” FROM transactions;

B.

SELECT customer_id AS “CUSTOMER-ID”, transaction_date AS “DATE”, amount + 100 DUES FROM transactions;

C.

SELECT customer_id AS CUSTOMER-ID, transaction_date AS TRANS_DATE, amount + 100 “DUES AMOUNT” FROM transactions;

D.

SELECT customer_id CUSTID, transaction_date TRANS_DATE, amount + 100 DUES FROM transactions;

E.

SELECT customer_id AS ‘CUSTOMER-ID’, transaction_date AS DATE, amount + 100 ‘DUES AMOUNT’ FROM transactions;

Buy Now
Exam Code: 1z0-082
Exam Name: Oracle Database Administration I
Last Update: May 1, 2024
Questions: 142

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now 1z0-082 testing engine

PDF (Q&A)

$35  $99.99
buy now 1z0-082 pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 04 May 2024