Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70percent

Oracle 1z0-182 Oracle Database 23ai Administration Associate Exam Practice Test

Demo: 28 questions
Total 94 questions

Oracle Database 23ai Administration Associate Questions and Answers

Question 1

Which three tasks are performed by background processes in an Oracle database instance?

Options:

A.

Creating dedicated server connections.

B.

Registering services with Oracle Net listeners.

C.

Writing redo to log files.

D.

Writing dirty database block images from the buffer cache.

E.

Reading database blocks into the buffer cache.

Question 2

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?

Options:

A.

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

B.

Analysis of all privileges used by all users including administrative users in the database.

C.

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

D.

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

E.

Analysis of privileges granted indirectly to a role that are then used by a user who has beengranted that role.

F.

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

Question 3

Examine this command: ALTER DATABASE MOVE DATAFILE '\u01/sales1.dbf' TO '\u01/sales01.dbf' REUSE; Which two statements are true?

Options:

A.

DML may be performed on tables with one or more extents in this data file during the execution of this command.

B.

If Oracle Managed Files (OMF) is used, then the file is renamed but moved to DB_CREATE_FILE_DEST.

C.

The tablespace containing SALES1.DBF must be altered READ ONLY before executing the command.

D.

The file is renamed and stored in the same location.

E.

The tablespace containing SALES1.DBF must be altered OFFLINE before executing the command.

Question 4

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

Options:

A.

All required background processes are started.

B.

The consistency of the database is checked.

C.

The control files are opened.

D.

Memory is allocated for the SGA.

E.

SYS can access the database.

Question 5

One of your database instances was shut down normally and then started in NOMOUNT state. You then executed this command: ALTER DATABASE MOUNT; Which two of these actions are performed?

Options:

A.

Online data files are opened.

B.

Online redo logs are opened.

C.

The initialization parameter file is read.

D.

Oracle shared memory structures are allocated.

E.

The alert log has instance startup details written to it.

F.

Control files are read.

Question 6

Which two AWR-based tools listed below are part of Oracle Database self-tuning components?

Options:

A.

Automatic capture of statistical information from the SGA and storing it in the AWR using Automatic Database Diagnostic.

B.

ADDM, a server-based expert that reviews database performance statistics captured by Snapshots to identify potential problems before system performance degrades noticeably.

C.

Automatic Diagnostic Collector used to capture and store database errors and hung analysis.

D.

Automatic population of performance views (V$ views) from statistical data stored in AWR repository and using Automatic Database Diagnostic.

E.

Automatic Application Tracing used to collect High-Load SQL statements and statistics.

Question 7

Which two statements are true about trace files produced by the Oracle Database server?

Options:

A.

All trace files contain error information that requires contacting Oracle Support.

B.

They can be written by server processes to a file system.

C.

They can be written by background processes to a file system.

D.

Trace file names are based on the database name concatenated with a sequential number.

E.

They can be written by server processes to the Fast Recovery Area (FRA).

Question 8

Which three statements are true about Deferred Segment Creation in Oracle databases?

Options:

A.

It is supported for Index Organized Tables (IOTs) contained in locally managed tablespaces.

B.

It is supported for SYS-owned tables contained in locally managed tablespaces.

C.

It is the default behavior for tables and indexes.

D.

Indexes inherit the DEFERRED or IMMEDIATE segment creation attribute from their parent table.

E.

Sessions may dynamically switch back and forth from DEFERRED to IMMEDIATE segment creation.

Question 9

In which two ways would you disable timing information collected for wait events and much of the performance monitoring capability of the database?

Options:

A.

By setting the TIMED_STATISTICS system parameter to FALSE.

B.

By executing the PL/SQL procedure DBMS_TIME_STATISTIC.DISABLE(TRUE).

C.

By setting the TIMED_STATISTICS_LEVEL system parameter to FALSE.

D.

By setting the STATISTICS_LEVEL parameter to BASIC.

E.

By executing the PL/SQL procedure DBMS_TIME_STATISTIC.LEVEL(BASIC).

Question 10

Your data center uses Oracle Managed Files (OMF) for all databases. All tablespaces are smallfile tablespaces. SALES_Q1 is a permanent user-defined tablespace in the SALES database. The following command is about to be issued by a DBA logged in to the SALES database: ALTER TABLESPACE sales_q1 ADD DATAFILE; Which two actions independently ensure that the command executes successfully?

Options:

A.

Specify a path in the DATAFILE clause of the command specifying a location with at least 100 MB of available space.

B.

Add the AUTOEXTEND ON clause with NEXT set to 100M.

C.

Ensure that DB_RECOVERY_FILE_DEST and DB_CREATE_FILE_DEST each specify locations with at least 50 MB of available space.

D.

Ensure that DB_CREATE_FILE_DEST specifies a location with at least 100 MB of available space.

E.

Ensure that DB_RECOVERY_FILE_DEST and DB_CREATE_FILE_DEST each specify locations with at least 50 MB of available space.

Question 11

As the DBA, you execute this command: GRANT CREATE VIEW TO usr1 WITH ADMIN OPTION; USR1 then executes: GRANT CREATE VIEW TO usr2 WITH ADMIN OPTION; USR2 then executes: GRANT CREATE VIEW TO usr3; Which statement is true?

Options:

A.

When the DBA revokes the CREATE VIEW privilege from USR1, it is revoked from USR2 but not USR3.

B.

When the DBA revokes the CREATE VIEW privilege from USR2, it is revoked from USR3.

C.

The DBA can revoke only ADMIN OPTION from USR1.

D.

USR1 can revoke the CREATE VIEW privilege from USR3.

E.

When the DBA revokes the CREATE VIEW privilege from USR1, it is neither revoked from USR2 nor USR3.

Question 12

Which two statements are true about the tools used to configure Oracle Net Services?

Options:

A.

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

B.

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

C.

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

D.

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

E.

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

Question 13

You are going to perform a hot remote clone of PDB1 from CDB1 as TESTPDB in CDB2. Which of the following is a necessary prerequisite for the hot remote clone?

Options:

A.

PDB1 must be taken offline before the cloning process begins.

B.

Both CDBs need to be in local undo mode.

C.

PDB1 must be in read-only mode.

D.

TESTPDB must be in read-only mode after the cloning process is complete.

Question 14

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

Options:

A.

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

B.

It is only used for Oracle database diagnostic information.

C.

It is held inside an Oracle database schema.

D.

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

E.

The ADR base is specified in the DIAGNOSTIC_DEST database parameter.

Question 15

Which three statements are true about roles?

Options:

A.

Roles must be password protected.

B.

Roles may be granted to other roles.

C.

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

D.

Object privileges may not be granted to roles.

E.

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

F.

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

Question 16

Examine this command: SQL> ALTER TABLE ORDERS SHRINK SPACE COMPACT; Which two statements are true?

Options:

A.

Dependent indexes become UNUSABLE.

B.

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

C.

Only queries are allowed on ORDERS while SHRINK is executing.

D.

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

E.

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

F.

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

Question 17

Which three statements are true about UNDO and REDO?

Options:

A.

REDO is used for read consistency.

B.

UNDO is used for some flashback operations.

C.

UNDO is used for read consistency.

D.

Both REDO and UNDO can be multiplexed.

E.

REDO is used for ROLLBACK.

F.

REDO is used for instance recovery.

Question 18

What is the result of the following command? ALTER PLUGGABLE DATABASE PDB1 DISCARD STATE;

Options:

A.

It is unnecessary if the PDB is in the process of being upgraded.

B.

PDB1 is reverted to its default properties, which includes not to automatically open after a CDB restart.

C.

PDB1 is reverted to its default properties, which includes automatic opening after a CDB restart.

D.

It should be used whenever PDB1 open mode needs to be changed.

Question 19

Which two are benefits of external tables?

Options:

A.

They support DELETEs, which transparently deletes records in the file system as if they were table rows.

B.

They can be queried while the database is in the MOUNT state like dynamic performance views.

C.

They support UPDATEs, which transparently updates records in the file system as if they were table rows.

D.

They can be queried, transformed, and joined with other tables without having to load the data first.

E.

The results of a complex join or aggregating function or both can be unloaded to a file for transportation to other systems.

Question 20

You execute this command: CREATE SMALLFILE TABLESPACE sales DATAFILE '/u01/app/oracle/sales01.dbf' SIZE 5G SEGMENT SPACE MANAGEMENT AUTO; Which two statements are true about the SALES tablespace?

Options:

A.

Free space is managed using freelists.

B.

It uses the database default block size.

C.

It must be smaller than the smallest BIGFILE tablespace.

D.

It is a locally managed tablespace.

E.

Any data files added to the tablespace must have a size of 5 gigabytes.

Question 21

Which three statements are true about using SQL*Plus?

Options:

A.

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

B.

It can run Recovery Manager (RMAN) commands.

C.

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

D.

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

E.

It can run scripts entered at the SQL prompt.

F.

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

Question 22

Which data dictionary view describes the data sources of external tables?

Options:

A.

DBA_ALL_USER_EXTERNAL_LOCATIONS

B.

DBA_ALL_USER_TAB_COLUMNS

C.

DBA_ALL_USER_EXTERNAL_TABLES

D.

DBA_ALL_USER_TABLES

Question 23

You must create a tablespace of nonstandard block size in a new file system and plan to use this command: CREATE TABLESPACE ns_tbs DATAFILE '/u02/oracle/data/nstbs_f01.dbf' SIZE 100G BLOCKSIZE 32K; The standard block size is 8K, but other nonstandard block sizes will also be used. Which two are requirements for this command to succeed?

Options:

A.

DB_32K_CACHE_SIZE must be less than DB_CACHE_SIZE.

B.

DB_32K_CACHE_SIZE must be set to a value that can be accommodated in the SGA.

C.

The operating system must use a 32K block size.

D.

DB_32K_CACHE_SIZE should be set to a value greater than DB_CACHE_SIZE.

E.

The /u02 file system must have at least 100G space for the datafile.

Question 24

What are the three components of Oracle Database Automatic Maintenance Tasks?

Options:

A.

A diagnostic system that collects database error logs and details about database failures that can be found to diagnose complete file.

B.

Oracle Database Resource Manager, which enables you to manage and configure system resources used by the Automatic Maintenance Tasks.

C.

The maintenance windows managed by Oracle Database Scheduler, which are predefined time intervals permitting scheduled tasks.

D.

A packaging system that allows you to combine all error and failure logs to share with Oracle Support.

E.

A database alert log that stores details about major database operations and errors, which is used to manage cluster performance.

F.

A set of tasks that are started automatically at regular intervals to perform maintenance operations on the database.

Question 25

Which two statements are true about database instances and Real Application Clusters (RAC)?

Options:

A.

A RAC database must have two or more instances.

B.

A RAC database can have one instance.

C.

A RAC database must have three or more instances.

D.

A RAC database can have instances on separate servers.

E.

Two RAC databases can share their instances.

Question 26

How do you validate that the database was migrated to Unified Auditing?

Options:

A.

By querying V$OPTION for parameter Unified Auditing.

B.

By using the LSINVENTORY Command to query the Oracle Database Software Library.

C.

By querying the DBA_UNIFIED_AUDIT_OPTION view.

D.

By executing DBMS_AUDIT_MGMT PL/SQL package in Verify mode.

Question 27

Which statement regarding PDBs (Pluggable Databases) is correct?

Options:

A.

You can drop a PDB as long as it is not the PDB seed.

B.

You cannot drop a source PDB of a refreshable PDB.

C.

You can drop an application root along with the associated PDBs.

D.

When the relocation of a PDB is finished, the source PDB must be dropped.

Question 28

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?

Options:

A.

Execute DML statements in the HR schema.

B.

Log in to the database instance.

C.

Revoke the CREATE SESSION privilege from other users.

D.

Grant the CREATE SESSION privilege with ADMIN OPTION to other users.

E.

Revoke the CREATE SESSION privilege from user HR.

F.

Execute DDL statements in the HR schema.

Demo: 28 questions
Total 94 questions