1Z0-083 · Question #256
Examine the RMAN command: RMAN> RUN { ALLOCATE CHANNEL c1 DEVICE TYPE sbt; ALLOCATE CHANNEL c2 DEVICE TYPE sbt; ALLOCATE CHANNEL c3 DEVICE TYPE sbt; BACKUP INCREMENTAL LEVEL = 0 (DATAFILE 1,4,5…
The correct answer is B. It uses parallelization for the backup set. Option B is correct because three separate channels (c1, c2, c3) are explicitly allocated and assigned distinct sets of datafiles, meaning all three backup operations run simultaneously - that is the definition of parallelization in RMAN. Each channel produces its own backup…
Question
Examine the RMAN command:
RMAN> RUN { ALLOCATE CHANNEL c1 DEVICE TYPE sbt; ALLOCATE CHANNEL c2 DEVICE TYPE sbt; ALLOCATE CHANNEL c3 DEVICE TYPE sbt; BACKUP INCREMENTAL LEVEL = 0 (DATAFILE 1,4,5 CHANNEL c1) (DATAFILE 2,3,9 CHANNEL c2) (DATAFILE 6,7,8 CHANNEL c3); SQL 'ALTER SYSTEM ARCHIVE LOG CURRENT'; } Which statement is true about the command?
Options
- AIt uses multisection backup.
- BIt uses parallelization for the backup set.
- CIt uses asynchronousI/O for the backup.
- DIt creates compressed backup sets.
How the community answered
(29 responses)- A17% (5)
- B72% (21)
- C7% (2)
- D3% (1)
Explanation
Option B is correct because three separate channels (c1, c2, c3) are explicitly allocated and assigned distinct sets of datafiles, meaning all three backup operations run simultaneously - that is the definition of parallelization in RMAN. Each channel produces its own backup set concurrently, reducing overall backup time.
Why the distractors are wrong:
- A (multisection backup) - Multisection backup splits a single large datafile across multiple channels using the
SECTION SIZEclause. That clause is absent here; instead, different datafiles are assigned to each channel, which is channel parallelization, not multisection. - C (asynchronous I/O) - Async I/O is an OS/storage-level setting, not something controlled or declared in an RMAN
RUNblock. Nothing in this syntax enables or references it. - D (compressed backup sets) - Compression requires either the
AS COMPRESSED BACKUPSETclause in theBACKUPcommand or aCONFIGURE COMPRESSION ALGORITHMsetting. Neither is present here.
Memory tip: Think of it this way - channels = workers. Multiple channels doing work at the same time = parallelization. If you see SECTION SIZE instead, that's multisection. If you see AS COMPRESSED BACKUPSET, that's compression. No keyword = no feature.
Topics
Community Discussion
No community discussion yet for this question.