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

Oracle Database Administration I Question and Answers

Oracle Database Administration I

Last Update Apr 18, 2024
Total Questions : 142

We are offering FREE 1z0-082 Oracle exam questions. All you do is to just go and sign up. Give your details, prepare 1z0-082 free exam questions and then go for complete pool of Oracle Database Administration I test questions that will help you more.

1z0-082 pdf

1z0-082 PDF

$40  $99.99
1z0-082 Engine

1z0-082 Testing Engine

$48  $119.99
1z0-082 PDF + Engine

1z0-082 PDF + Testing Engine

$64  $159.99
Questions 1

Which two are true about a SQL statement using SET operators such as UNION? (Choose two.)

Options:

A.  

The data type group of each column returned by the second query must match the data type of the corresponding column returned by the first query.

B.  

The number, but not names, of columns must be identical for all SELECT statements in the query.

C.  

The data type of each column returned by the second query must exactly match the data type of the corresponding column returned by the first query.

D.  

The names and number of columns must be identical for all SELECT statements in the query.

E.  

The data type of each column returned by the second query must be implicitly convertible to the data type of the corresponding column returned by the first query.

Discussion 0
Questions 2

In the spfile of a single instance database, LOCAL_LISTENER is set to LISTENER_1.

The TNSNAMES.ORA file in $ORACLE_HOME/network/admin in the database home contains:

Which statement is true?

Options:

A.  

Dynamic service registration cannot be used for this database instance

B.  

The LREG process registers services dynamically with the LISTENER_1 listener

C.  

LISTENER_1 must also be defined in the LISTENER.ORA file to enable dynamic service registration

D.  

There are two listeners named LISTENER and LISTENER_1 running simultaneously using port 1521 on the same host as the database instances

E.  

The definition for LISTENER_1 requires a CONNECT_DATA section to enable dynamic service registration

Discussion 0
Questions 3

Which two statements are true about space-saving features in an Oracle Database? (Choose two.)

Options:

A.  

Private Temporary Tables (PTTS) store metadata in memory only

B.  

An index created with the UNUSABLE attribute has no segment

C.  

If they exist for a session, Private Temporary Tables (PTTs) are always dropped at the next COMMIT OR ROLLBACK statement

D.  

An index that is altered to be UNUSABLE will retain its segment

E.  

A table that is truncated will always have its segment removed

Discussion 0
Questions 4

Examine this SQL statement:

SELECT cust_id, cust_last_name “Last Name”

FROM customers

WHERE country_id = 10

UNION

SELECT cust_id CUST_NO, cust_last_name

FROM customers

WHERE country_id = 30

Identify three ORDER BY clauses, any one of which can complete the query successfully. (Choose three.)

Options:

A.  

ORDER BY “Last Name”

B.  

ORDER BY 2, 1

C.  

ORDER BY 2, cust_id

D.  

ORDER BY CUST_NO

E.  

ORDER BY “CUST_NO”

Discussion 0
Questions 5

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

Options:

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

Discussion 0
Questions 6

Which two statements are true about the configuration and use of UNDO_RETENTION with GURANTEED RETENTION? (Choose two.)

Options:

A.  

UNDO_RETENTION specifies for how long Oracle attempts to keep expired and unexpired UNDO.

B.  

UNDO_RETENTION specifies how long all types of UNDO are retained.

C.  

Unexpired UNDO is always retained.

D.  

Active UNDO is always retained.

E.  

UNDO_RETENTION specifies for how long Oracle attempts to keep unexpired UNDO.

Discussion 0
Questions 7

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

Discussion 0
Questions 8

Examine these commands:

Which two statements are true about the sqlldr execution? (Choose two.)

Options:

A.  

It overwrites data in EMP with data in EMP.DAT

B.  

It uses the database buffer cache to load data

C.  

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

D.  

It generates a sql script that it uses to load data from EMP.DAT to EMP

E.  

It appends data from EMP.DAT to EMP

Discussion 0
Questions 9

You want to apply the principle of Least Privilege in all your live databases.

One of your requirements is to revoke unnecessary privileges from all users who have them using Privilege Analysis.

Which three types of analyses can be done using the DBMS_PRIVILEGE_CAPTURE package? (Choose three.)

Options:

A.  

analysis of all privileges used by all users including administrative users in the database

B.  

analysis of all privileges used by all users but excluding administrative users in the database

C.  

analysis of privileges that a user has on their own schema objects that they did not use

D.  

analysis of privileges that a user has on their own schema objects that they did use

E.  

analysis of privileges granted directly to a role that are then used by a user who has been granted that role

F.  

analysis of privileges granted indirectly to a role that are then used by a user who has been granted that role

Discussion 0
Questions 10

Which two statements are true about the PMON background process? (Choose two.)

Options:

A.  

It registers database services with all local and remote listeners known to the database instance

B.  

It frees resources held by abnormally terminated processes

C.  

It records checkpoint information in the control file

D.  

It frees unused temporary segments

E.  

It kills sessions that exceed idle time

Discussion 0
Questions 11

Which three files are used by conventional path SQL*Loader when the TABLE option is not specified? (Choose three.)

Options:

A.  

dump files

B.  

control files

C.  

password files

D.  

bad files

E.  

input files

Discussion 0
Questions 12

Which two statements are true about Enterprise Manager Database Express? (Choose two.)

Options:

A.  

It is available only when the database is open

B.  

It can be used to perform database recovery

C.  

The same port number can be used for Database Express configurations for databases on different hosts

D.  

It can be used to switch a database into ARCHIVELOGMODE

E.  

The same port number can be used for multiple Database Express configurations for multiple databases on the same host

Discussion 0
Questions 13

The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE.

NLS_DATE_FORMAT is set to DD-MON-RR.

Which two are true about data type conversions involving these columns in query expressions? (Choose two.)

Options:

A.  

CONCAT (qty_sold, invoice_date) : requires explicit conversion

B.  

invoice_date = ’15-march-2019’ : uses implicit conversion

C.  

invoie_date > ’01-02-2019’ : uses implicit conversion

D.  

qty_sold BETWEEN ‘101’ AND ’110’ : uses implicit conversion

E.  

qty_sold = ‘0554982’ uses implicit conversion

Discussion 0
Questions 14

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?

Options:

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_%’;

Discussion 0