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

1z0-082 Oracle Database Administration I Questions and Answers

Questions 4

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 5

Which two statements are true about segment types in an Oracle Database?

Options:

A.

Table segments always have two or more extents.

B.

Temporary segments are only stored in a temporary tablespace.

C.

Undo segments are only stored in an undo tablespace.

D.

Cluster segments may contain data from multiple tables.

E.

Index segments always have two or more extents.

Buy Now
Questions 6

Evaluate these commands which execute successfully:

Which two statements are true about the ORD_ITEMS table and the ORD_SEQ sequence? (Choose two.)

Options:

A.

If sequence ORD_SEQ is dropped then the default value for column ORD_NO will be NULL for rows inserted into ORD_ITEMS

B.

Any user inserting rows into table ORD_ITEMS must have been granted access to sequence ORD_SEQ

C.

Column ORD_NO gets the next number from sequence ORD_SEQ whenever a row is inserted into ORD_ITEMS and no explicit value is given for ORD_NO

D.

Sequence ORD_SEQ cycles back to 1 after every 5000 numbers and can cycle 20 times

E.

Sequence ORD_SEQ is guaranteed not to generate duplicate numbers

Buy Now
Questions 7

Which three statements are true about roles?

Options:

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.

Buy Now
Questions 8

The sales table has columns prod_id and quantity_sold of data type number

In two queries execute successfully? x

Options:

A.

SELECT prod_id FROM sales WHERE quantity_sold > 55000 GROUP BY prod_id HAVING COUNT(-) > 10;

B.

SELECT prod_id FROM sales WHERE quantity_sold > 5S000 AND COUNT(-) > 10 GROUP BY prod_id HAVING COUNT(-) > 10;

C.

SELECT COUNT|prod_id> FROM sales WHERE quantity_sold > 55000 GROUP BY prod_id;

D.

SELECT COUNTlprod_id> FROM sales GROUP BY prod_id WHERE quantity_Sold > 55000;

E.

SELECT prod_id FROM sales WHERE quantity_scld > 55000 AND COUNT(-) > 10 GROUP BY COUNT(-) > 10;

Buy Now
Questions 9

Which two statements are true about interval data types?

Options:

A.

INTERVAL year TO month columns support yearly intervals.

B.

The value in an interval day to SECOND column can be copied into an interval year to month column.

C.

INTERVAL day to second columns support fractions of seconds.

D.

INTERVAL year to month columns only support monthly Intervals within a single year.

E.

INTERVAL year to month columns only support monthly intervals within a range of years.

F.

The year field in an interval year to month column must be a positive value.

Buy Now
Questions 10

Which statement is true about database links?

Options:

A.

Private database link creation requires the same user to exist in both the local and the remote databases.

B.

A public database link can be created only by sys.

C.

A database link can be created only between two Oracle databases.

D.

A public database link can be used by a user connected to the local database instance to connect to any schema in the remote database instance.

E.

A database link created in a database allows a connection from that database's instance to the target database's Instance, but not vice versa.

Buy Now
Questions 11

While one of your databases was in mount state, the datafiles were renamed because they had been moved to a new file system. The database was then opened.

Which two statements are true?

Options:

A.

DBA_DATA_FILES displays the original name for the data files.

B.

V$DATAFILE displays the new names for the data files.

C.

DBA_DATA _FILES displays both the new name and the old name for the data files.

D.

DBA_DATA_FILES displays the new name for the data files.

E.

DBA_DATA_FILES must be resynchronized manually with the control file an order to have it display the new file names.

Buy Now
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

Buy Now
Questions 13

You start your database instance in NOMOUNT state. Which two actions are performed?

Options:

A.

The control files are opened.

B.

The consistency of the database is checked.

C.

All required background processes are started.

D.

SYS can access the database.

E.

Memory is allocated for the SG1

Buy Now
Questions 14

Which two queries execute successfully?

Options:

A.

SELECT NULLIF(NULL, 100) FROM DUAL;

B.

SELECT COALESCE (100, 'AM FROM DUAL;

C.

SELECT 2TOLLIF(100, 'A') FROM DUAL;

D.

SELECT NULLIF(100,100) FROM DUAL;

E.

SELECT COALESCE(100, NULL, 200) FROM DUAL;

Buy Now
Questions 15

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:

Which two statements are true? (Choose two.)

Options:

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

Buy Now
Questions 16

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 17

Which statement is true about aggregate functions?

Options:

A.

Aggregate functions can be nested to any number of levels

B.

The AVG function implicitly converts NULLS to zero

C.

Aggregate functions can be used in any clause of a SELECT statement

D.

The MAX and MIN functions can be used on columns with character data types

Buy Now
Questions 18

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 19

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

Buy Now
Questions 20

Which two statements are true about the rules of precedence for operators? (Choose two.)

Options:

A.

The concatenation operator | | is always evaluated before addition and subtraction in an expression

B.

NULLS influence the precedence of operators in an expression

C.

The + binary operator has the highest precedence in an expression in a SQL statement

D.

Arithmetic operators with equal precedence are evaluated from left to right within an expression

E.

Multiple parentheses can be used to override the default precedence of operators in an expression

Buy Now
Questions 21

Which two statements are true about substitution variables?

Options:

A.

A substitution variable prefixed with & always prompts only once for a value in a session.

B.

A substitution variable prefixed with to prompts only once for a value in a session unless it is set to undefined in the session

C.

A substitution variable can be used only in a select statement.

D.

A substitution variable used to prompt for a column name must be enclosed in single quotation marks.

E.

A substitution variable can be used with any clause in a select statement.

F.

A substitution variable used to prompt for a column name must be enclosed in double quotation marks.

Buy Now
Exam Code: 1z0-082
Exam Name: Oracle Database Administration I
Last Update: Jun 15, 2025
Questions: 142
1z0-082 pdf

1z0-082 PDF

$29.75  $84.99
1z0-082 Engine

1z0-082 Testing Engine

$35  $99.99
1z0-082 PDF + Engine

1z0-082 PDF + Testing Engine

$47.25  $134.99