exam questions

Exam 1z0-083 All Questions

View all questions & answers for the 1z0-083 exam

Exam 1z0-083 topic 1 question 105 discussion

Actual exam question from Oracle's 1z0-083
Question #: 105
Topic #: 1
[All 1z0-083 Questions]

You plan to perform cross-platform PDB transport using XTTS.
Which two are true? (Choose two.)

  • A. A backup of the PDB must exist, taken using the BACKUP command with the TO PLATFORM clause.
  • B. The source PDB must be in MOUNT state.
  • C. The source PDB must not be an application root.
  • D. The source PDB can be in MOUNT or OPEN state.
  • E. The source and target platforms must have the same endianness.
  • F. Automatic conversion of endianness occurs.
Show Suggested Answer Hide Answer
Suggested Answer: BE 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
mporislav
Highly Voted 3 years, 1 month ago
D, E I will stick with one technique: Cross-Platform PDB Transport with Backup Sets – Same endian format, database mounted or opened. If we consider Cross-Platform Transport of Tablespaces in a PDB – we can have different endian formats, but the database has to be opened not mounted (not B, not D). BACKUP TO PLATFORM / BACKUP FOR TRANSPORT - both eligible for PDB or tablespace transport (Not A in every technique).
upvoted 10 times
...
ABAJ
Highly Voted 3 years, 1 month ago
B and E are correct answers . to platform or for transport any of the command can be used and the source DB needs to be in mounted mode. https://blog.enmotech.com/2018/01/10/oracle-12cr2-cross-platform-pdb-transport-using-xtts/
upvoted 10 times
saserdi
3 years, 1 month ago
BE correct
upvoted 3 times
antonica
3 months, 2 weeks ago
i agree with BE, RMAN Cross-Platform Transportable PDB This method can be used only if the on-premises platform is little endian, and the database character sets of your on-premises database and the Database service database are compatible.
upvoted 1 times
...
...
...
antonica
Most Recent 3 months, 3 weeks ago
Use one of the following techniques to transport PDBs across platforms: Connect to the root and use the BACKUP FOR TRANSPORT ... PLUGGABLE DATABASE or BACKUP TO PLATFORM ... PLUGGABLE DATABASE command to create a cross-platform backup of one or more PDBs. When you are connected to the root, the following command creates a cross-platform backup of the PDBs hr_pdb and sales_pdb. The PDBs must be read-only mode before the cross-platform backup is created. Copy BACKUP FOR TRANSPORT PLUGGABLE DATABASE hr_pdb, sales_pdb FORMAT '/tmp/backups/pdb_%U'; Connect to the PDB and use the BACKUP FOR TRANSPORT or BACKUP TO PLATFORM commands to create backup sets that can be used to transport the PDB data to another platform. Note:Performing cross-platform data transport of one or more PDBs by using the CONVERT command is not supported.
upvoted 1 times
...
dancymonkey
6 months ago
D, E For D >> Read-Only Tablespace = Database open state https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/rman-transporting-data-across-platforms.html#GUID-7E1B3B10-CDA2-4E79-9F4C-AC8E51BCDE54
upvoted 2 times
dancymonkey
6 months ago
SQL> startup mount; SQL> ALTER DATABASE OPEN READ ONLY;
upvoted 1 times
dancymonkey
5 months, 3 weeks ago
I change my mind to CD
upvoted 1 times
...
...
...
flaviogcmelo
10 months, 1 week ago
Selected Answer: BE
B and E are correct answers based on https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/rman-transporting-data-across-platforms.html#GUID-27F404E2-4D45-4C99-B111-CD618F740C2B. The two alternatives are the most corrects, but alternative A also seems correct to me, can anyone tell me what is wrong with this item?
upvoted 1 times
mamadu
4 months, 1 week ago
i think not A because you can also opt to use the FOR TRANSPORT clause with the BACKUP command to indicate that the backupset can be transported to any destination.
upvoted 1 times
...
...
julmis
10 months, 3 weeks ago
Selected Answer: BE
answer BE
upvoted 1 times
...
kaka321
11 months, 4 weeks ago
B is confirmed with this https://docs.oracle.com/en-us/iaas/Content/Database/Tasks/mig-rman-cross-plat-transp-pdb.htm E is correct if they do not have same endian the generated xml must be formated before or after being transported.
upvoted 1 times
...
_gio_
1 year ago
Selected Answer: CD
A: is wrong because you can use "as image" mode B: No, tablespace must be in read-only E: No, this requirement is for whole database transport not TTS(Trasportable tablespaces) F: Not automatic, you must convert or backup with TO PLATFORM clause
upvoted 1 times
...
Heat418
1 year, 1 month ago
I think DE. https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/rman-transporting-data-across-platforms.html#GUID-7523B82F-0DF6-4E1F-8FE6-DFDC049BA002
upvoted 2 times
...
vkra
1 year, 4 months ago
Selected Answer: BE
B, E is correct
upvoted 1 times
...
Bakeriiuc
1 year, 8 months ago
Selected Answer: AE
AE correct?
upvoted 1 times
...
G_C
1 year, 9 months ago
Selected Answer: BF
XTTS is a perl scripts set. Tool uses configuration file when we can define source platform and destination platform and it can have different endian, so In my opinion B and F is correct
upvoted 1 times
...
egore0496
2 years, 5 months ago
BE https://blog.enmotech.com/2018/01/10/oracle-12cr2-cross-platform-pdb-transport-using-xtts/ B Verify the prerequisites: The source PDB must be closed in MOUNTED mode and the COMPATIBLE parameter must be set to 12.2 or higher. E For performing cross-platform PDB transport, you may need the exact name of the destination platform to which you are transporting data and may need to verify that the destination platform is of the same endian format. SQL> SELECT PLATFORM_ID, PLATFORM_NAME, ENDIAN_FORMAT FROM V$TRANSPORTABLE_PLATFORM WHERE UPPER(PLATFORM_NAME) LIKE ‘%LINUX%’;
upvoted 1 times
egore0496
2 years, 5 months ago
DE run { allocate channel ch1 type disk; BACKUP to platform 'Microsoft Windows x86 64-bit' pluggable database PDB1; }
upvoted 3 times
egore0496
2 years, 5 months ago
run { allocate channel ch1 type disk; BACKUP FOR TRANSPORT PLUGGABLE DATABASE PDB2; }
upvoted 1 times
...
...
...
BrianG
2 years, 10 months ago
From this documentation I think Answer is A & B. https://docs.oracle.com/en/database/oracle/oracle-database/19/bradv/rman-transporting-data-across-platforms.html#GUID-A41CEF69-4D73-45F4-BDF8-DCCAEB20C08F Perform the following steps on the source CDB: Connect to the root as a common user with the SYSDBA or SYSBACKUP privilege. Close the PDB that needs to be transported. The following statement closes the PDB hr_pdb. Copy RMAN> ALTER PLUGGABLE DATABASE hr_pdb CLOSE IMMEDIATE; Create a cross-platform full backup of the PDB that must be transported by using the BACKUP PLUGGABLE DATABASE command. To create a cross-platform backup, include either the FOR TRANSPORT or TO PLATFORM clause. The following example creates a cross-platform backup of the PDB hr_pdb for the Linux x86 64-bit platform. The metadata required to plug this PDB into the destination CDB is specified using the UNPLUG INTO clause and stored in the XML file metadata_hrpdb.xml.
upvoted 2 times
Alain_t73
1 year, 2 months ago
Be aware that you can also backup the PDB in (OPEN) READ ONLY mode according to 12.2 doc section 28.12.1 (About Cross-Platform Transport of PDBs).
upvoted 1 times
...
freemun05
2 years, 3 months ago
Use the FOR TRANSPORT or TO PLATFORM clause in the BACKUP command to create cross-platform backups. A - wrong
upvoted 1 times
...
...
5rhribar
2 years, 11 months ago
28.12.1 About Cross-Platform Transport of PDBs To transport an entire PDB to a different platform, the source platform and destination platform must use the same endian format. The PDBs must be read-only mode before the cross-platform backup is created. DE
upvoted 3 times
...
mporislav
3 years ago
There is more recent and more complete link: https://docs.oracle.com/en/database/oracle/oracle-database/18/bradv/rman-transporting-data-across-platforms.html#GUID-7523B82F-0DF6-4E1F-8FE6-DFDC049BA002 Correct D, E if you choose: About Cross-Platform Transport of PDBs, same endian , open read only, syntax without unplug: BACKUP FOR TRANSPORT PLUGGABLE DATABASE hr_pdb, sales_pdb FORMAT '/tmp/backups/pdb_%U'; correct B, E if you choose: Performing Cross-Platform Transport of a Closed PDB, same endian, closed pdb, syntax with unplug: BACKUP TO PLATFORM= 'Linux x86 64-bit' UNPLUG INTO '/u01/oradata/backups/metadata_hrpdb.xml' PLUGGABLE DATABASE hr_pdb FORMAT '/u01/oradata/backups/transport_hrpdb.bck';
upvoted 6 times
...
ObserverPL
3 years, 1 month ago
I wrote rubbish in my previous comment, I'm sorry. Finally I took a look at book from official training, I suppose the same used by exam author and I found: B (source PDB must be in MOUNT state) is CORRECT: RMAN> RUN { allocate channel ch1 type disk; BACKUP to platform 'Microsoft Windows x86 64-bit' unplug into '/u01/oracle/BACKUPS/pdb1_manifest.xml' pluggable database PDB1 FORMAT '/u01/oracle/BACKUPS/%d_%T_%U.DB'; } ORA-65025: Pluggable database PDB1 is not closed on all instances. E (source and target must have the same endianess) is CORRECT- to cross-platform transport of WHOLE PDB using XTTS: RMAN> RUN { allocate channel ch1 type disk; BACKUP to platform 'AIX-Based Systems (64-bit)' pluggable database PDB1 FORMAT '/u01/oracle/BACKUPS/%d_%T_%U.DB'; } ORA-19940: cannot use cross-platform backups to convert whole database to different endianess
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago