0% found this document useful (0 votes)
296 views8 pages

Oracle: Question & Answers

The document contains a series of questions and answers related to Oracle Database 23ai Administration, specifically for the 1Z0-182 certification exam. It covers topics such as tablespace management, UNDO configuration, account management, PDB operations, row chaining, and Oracle Net Services. Each question includes multiple-choice options with explanations for the correct answers.

Uploaded by

Veerabathran Rd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
296 views8 pages

Oracle: Question & Answers

The document contains a series of questions and answers related to Oracle Database 23ai Administration, specifically for the 1Z0-182 certification exam. It covers topics such as tablespace management, UNDO configuration, account management, PDB operations, row chaining, and Oracle Net Services. Each question includes multiple-choice options with explanations for the correct answers.

Uploaded by

Veerabathran Rd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Oracle

1Z0-182
Oracle Database 23ai Administration Associate
QUESTION & ANSWERS

https://www.dumpscore.com/oracle/1Z0-182-braindumps
QUESTION: 1

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?

Option A : Free space is managed using freelists.


Option B : It uses the database default block size.
Option C : It must be smaller than the smallest BIGFILE tablespace.
Option D : It is a locally managed tablespace.
Option E : Any data files added to the tablespace must have a size of 5 gigabytes.

Correct Answer: B,D

Explanation/Reference:

A. Free space is managed using freelists.False. The SEGMENT SPACE MANAGEMENT AUTO

clause specifies Automatic Segment Space Management (ASSM), which uses bitmaps to track free

space, not freelists (used in Manual Segment Space Management).

B. It uses the database default block size.True. The BLOCKSIZE clause is not specified in the

command, so the tablespace inherits the database’s default block size (typically 8K unless altered via

DB_BLOCK_SIZE).

C. It must be smaller than the smallest BIGFILE tablespace.False. There’s no such restriction;

SMALLFILE and BIGFILE tablespaces differ in structure (multiple vs. single data file), not mandated

size relationships.

D. It is a locally managed tablespace.True. In Oracle 23ai, all tablespaces created without an explicit

EXTENT MANAGEMENT DICTIONARY clause are locally managed by default, using extent

allocation bitmaps in the data file headers.

E. Any data files added to the tablespace must have a size of 5 gigabytes.False. The initial data file is

5G, but additional data files can have different sizes when added using ALTER TABLESPACE ...

ADD DATAFILE.

https://www.dumpscore.com/oracle/1Z0-182-braindumps
QUESTION: 2

Which two statements are true about the configuration and use of UNDO?

Option A : Active UNDO is always retained.


Option B : Unexpired UNDO is always retained.
Option C : UNDO_RETENTION specifies for how long Oracle attempts to keep expired and unconsumed
UNDO.
Option D : UNDO_RETENTION specifies how long all types of UNDO are retained.
Option E : UNDO_RETENTION specifies for how long Oracle attempts to keep unexpired UNDO.

Correct Answer: A,E

Explanation/Reference:

A.True. Active (in-use) UNDO is never overwritten.

B.False. Unexpired UNDO can be reused if space is needed.

C.False. Applies to unexpired, not expired UNDO.

D.False. Only unexpired UNDO is targeted.

E.True. UNDO_RETENTION sets the retention goal for unexpired UNDO.

QUESTION: 3

Which two account management capabilities can be configured using Oracle profiles?

Option A : The maximum number of sessions permitted for a user before the password must be changed.
Option B : The maximum amount of CPU time allowed for a user’s sessions before their account is locked.
Option C : The number of days for which an account may be logged in to one or more sessions before it is
locked.
Option D : The ability to prevent a password from ever being reused.
Option E : The number of days for which an account may be inactive before it is locked.

Correct Answer: D,E

Explanation/Reference:

A.False. Session limits don’t tie to password changes.

https://www.dumpscore.com/oracle/1Z0-182-braindumps
B.False. CPU limits don’t lock accounts.

C.False. No direct “logged-in days” parameter.

D.True. PASSWORD_REUSE_MAX=UNLIMITED prevents reuse.

E.True. PASSWORD_LOCK_TIME sets inactivity lockout.

QUESTION: 4

In one of your databases, the user HR has the password HRMGR. You want to connect to a database instance
whose listener listens on port 1531 by using this statement: CONNECT HR/HRMGR@orcl. No name server is
used. Which statement is true about ORCL?

Option A : It must be the name of the database to whose instance HR wishes to connect.
Option B : It must resolve to a valid connect descriptor in the client's tnsnames.ora file.
Option C : It must be the name of the server running the database to whose instance HR wishes to
connect.
Option D : It must resolve to a valid connect descriptor in the server's tnsnames.ora file.
Option E : It must be the value of the SERVICE_NAMES parameter on the client side.

Correct Answer: B

Explanation/Reference:

A.False. ORCL is a TNS alias, not necessarily the DB name.

B.True. Must map to a connect descriptor (e.g., HOST=... PORT=1531) in tnsnames.ora.

C.False. It’s not the server name but a network alias.

D.False. Client-side tnsnames.ora is used, not server-side.

E.False. SERVICE_NAMES is server-side, not client-side.

QUESTION: 5

You unplugged a PDB to plug it into another CDB with the following command: SQL> ALTER PLUGGABLE
DATABASE pdb1 UNPLUG INTO '/tmp/pdb1.pdb'; Which statement is true prior to plugging the PDB into the
other CDB?

https://www.dumpscore.com/oracle/1Z0-182-braindumps
Option A : The PDB archive file must be copied to the target CDB.
Option B : The PDB manifest and all the datafiles must be copied to the target CDB.
Option C : PDB archive file and only the user-defined tablespaces must be copied to the target CDB.
Option D : The PDB manifest, the data files, and the PDB archive file must be copied to the target CDB.

Correct Answer: D

Explanation/Reference:

D.True. The .pdb file (archive) contains the manifest and data files; all must be copied to the target

CDB for plugging.

A-C.False. The archive alone isn’t enough; all components are needed.

QUESTION: 6

Which three statements are true about row chaining and row migration done by Oracle database block space
management?

Option A :

A migrated row results in an update to any index on the table to point the row ID in the index to the row’s
new location.

Option B : Update statements can result in one or more migrated rows.


Option C : Update statements can result in one or more chained rows.
Option D : Row pieces of a chained row must always reside in different blocks.
Option E : Insert statements can result in a migrated row.

Correct Answer: A,B,C

Explanation/Reference:

A.True. Migration updates index ROWIDs.

B.True. Updates can migrate rows if space is insufficient.

C.True. Large updates can chain rows across blocks.

D.False. Chained rows may span blocks but aren’t required to.

E.False. Inserts don’t migrate; they chain if too large initially.

https://www.dumpscore.com/oracle/1Z0-182-braindumps
QUESTION: 7

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

Option A : Dependent indexes become UNUSABLE.


Option B :

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

Option C : Only queries are allowed on ORDERS while SHRINK is executing.


Option D : The high-water mark (HWM) of ORDERS is adjusted.
Option E : Queries and DML statements are allowed on ORDERS while the SHRINK is executing.
Option F :

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

Correct Answer: E,F

Explanation/Reference:

A. Dependent indexes become UNUSABLE.False. SHRINK SPACE COMPACT does not affect index

usability; only SHRINK SPACE without COMPACT may require index maintenance if CASCADE is

omitted.

B. ... starting toward the end of the ORDERS segment.False. Rows are compacted toward the beginning

of the segment, not the end.

C. Only queries are allowed ...False. Both queries and DML are allowed during SHRINK SPACE

COMPACT as it’s an online operation.

D. The high-water mark (HWM) of ORDERS is adjusted.False. COMPACT moves rows but doesn’t

adjust the HWM; the full SHRINK SPACE command is needed for HWM adjustment.

E. Queries and DML statements are allowed ...True. This is an online operation in 23ai, allowing

https://www.dumpscore.com/oracle/1Z0-182-braindumps
concurrent access.

F. ... starting from the beginning of the ORDERS segment.True. Rows are moved to fill free space from

the segment’s start.

QUESTION: 8

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

Option A : The lsnrctl utility requires a listener.ora file to exist before it is started.
Option B :

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

Option C : The Oracle Net Configuration Assistant is only used when running the Oracle installer.
Option D : Oracle Net Manager can be used to locally configure naming methods on a database server.
Option E : Oracle Net Manager can be used to centrally configure listeners on any database server target.

Correct Answer: B,D

Explanation/Reference:

A.False. lsnrctl can start a default listener without listener.ora.

B.True. EMCC provides centralized Net Services configuration.

C.False. NetCA can run standalone, not just during installation.

D.True. Net Manager configures local naming (e.g., TNSNAMES.ORA).

E.False. Net Manager is local, not centralized like EMCC.

QUESTION: 9

Which two statements are true about advanced connection options supported by Oracle Net for connection
to Oracle?

Option A : Connect Time Failover requires the use of Transparent Application Failover (TAF).

https://www.dumpscore.com/oracle/1Z0-182-braindumps
Option B : Source Routing requires the use of encrypted connections.
Option C : Connect Time Failover requires the connect string to have two or more listener addresses
configured.
Option D : Load Balancing requires the use of a name server.
Option E :

Load Balancing can balance the number of connections to dispatchers when using a Shared Server
configuration.

Correct Answer: C,E

Explanation/Reference:

A.False. Connect Time Failover doesn’t need TAF; TAF is for runtime failover.

B.False. Source Routing doesn’t mandate encryption.

C.True. Needs multiple addresses (e.g., (ADDRESS_LIST=...)) for failover.

D.False. Load balancing works with tnsnames.ora, no name server required.

E.True. Balances connections across shared server dispatchers.

https://www.dumpscore.com/oracle/1Z0-182-braindumps

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy