Which three actions are performed by Database Upgrade Assistant (DBUA)? (Choose three.) A. It recompiles all stored PL/SQL code by using utlrp.sql.
B. It empties the RECYCLE BIN.
C. It performs prerequisite checks to verify if the Oracle database is ready for upgrade.
D. It sets all user tablespaces to “read-only” before starting the upgrade.
E. It removes the AUDSYS schema and the AUDIT_ADMIN and AUDIT_VIEWER roles
F. It increases tablespace size, if required, to meet upgrade requirements.
Answer: ABC
(解析:这道题考的很细,居然考升级中的某个具体细节。Prerequisities
There are a lot of potential prerequisites, which will vary depending on the functionality you are
using in your source version. Please check them in the documentation, or you may fail to upgrade your database successfully.
In addition to other prerequisites, you will always be asked to do the following actions
Gather dictionary statistics. For a non-CDB database you will do the following from an SQL prompt. CONN / AS SYSDBA
EXEC DBMS_STATS.GATHER_DICTIONARY_STATS;
For a container database you will use the following command to perform the action in all containers.
$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl -l /tmp -b gather_dict_stats x"EXEC DBMS_STATS.gather_dictionary_stats"
Purge the recycle bin using the following from an SQL prompt. CONN / AS SYSDBA PURGE DBA_RECYCLEBIN
Compile all invalid objects. For a non-CDB database you will do the following from an SQL prompt. CONN / AS SYSDBA @?/rdbms/admin/utlrp.sql
For a container database you will use the following command to perform the action in all containers.
$ORACLE_HOME/perl/bin/perl $ORACLE_HOME/rdbms/admin/catcon.pl -l /tmp -b comp_invalid_objs x"@?/rdbms/admin/utlrp.sql"
Reference: https://oracle-base.com/articles/12c/upgrading-to-12c
78、
Which two are true about RMAN backups when using a media manager to write backups to tape when

本文详细介绍了Oracle Database Upgrade Assistant (DBUA)在升级过程中的三个主要步骤:预检查以验证数据库是否准备好升级、清空回收站以及重新编译存储的PL/SQL代码。此外,还讨论了RMAN备份在使用媒体管理器写入磁带时的注意事项,如并行备份和磁带驱动器的使用。最后,文章提到了Oracle Database Configuration Assistant (DBCA)模板的用途和选择适合数据库模板的重要性。

363

被折叠的 条评论
为什么被折叠?



