Which two statements are true about the Oracle Direct Network File system (DNFS)? (Choose two.)
Correct Answer: C,E
E: Performance is improved by load balancing across multiple network interfaces (if available). Note: * To enable Direct NFS Client, you must replace the standard Oracle Disk Manager (ODM) library with one that supports Direct NFS Client. Incorrect: Not A: Direct NFS Client is capable of performing concurrent direct I/O, which bypasses any operating system level caches and eliminates any operating system write-ordering locks Not B: * To use Direct NFS Client, the NFS file systems must first be mounted and available over regular NFS mounts. * Oracle Direct NFS (dNFS) is an optimized NFS (Network File System) client that provides faster and more scalable access to NFS storage located on NAS storage devices (accessible over TCP/IP). Not D: Direct NFS is provided as part of the database kernel, and is thus available on all supported database platforms - even those that don't support NFS natively, like Windows. Note: * Oracle Direct NFS (dNFS) is an optimized NFS (Network File System) client that provides faster and more scalable access to NFS storage located on NAS storage devices (accessible over TCP/IP). Direct NFS is built directly into the database kernel - just like ASM which is mainly used when using DAS or SAN storage. * Oracle Direct NFS (dNFS) is an internal I/O layer that provides faster access to large NFS files than traditional NFS clients.
Question 217
Which three operations can be performed as multipartition operations in Oracle? (Choose three.)
Correct Answer: A,B,F
Explanation/Reference: Explanation: Multipartition maintenance enables adding, dropping, truncate, merge, split operations on multiple partitions. A: Merge Multiple Partitions: The new "ALTER TABLE ... MERGE PARTITIONS " help merge multiple partitions or subpartitions with a single statement. When merging multiple partitions, local and global index operations and semantics for inheritance of unspecified physical attributes are the same for merging two partitions. B: Drop Multiple Partitions: The new "ALTER TABLE ... DROP PARTITIONS " help drop multiple partitions or subpartitions with a single statement. Example: view plaincopy to clipboardprint? SQL> ALTER TABLE Tab_tst1 DROP PARTITIONS Tab_tst1_PART5, Tab_tst1_PART6, Tab_tst1_PART7; Table altered SQL> Restrictions : - You can't drop all partitions of the table. - If the table has a single partition, you will get the error: ORA-14083: cannot drop the only partition of a partitioned.
Question 218
Your database is configured for ARCHIVELOGmode, and a daily full database backup is taken. RMAN is configured to perform control file autobackup. In which three scenarios do you need media recovery? (Choose three.)
Correct Answer: A,B,C
Question 219
You upgraded your database from pre-12c to a multitenant container database (CDB) containing pluggable databases (PDBs). Examine the query and its output: Which two tasks must you perform to add users with SYSBACKUP, SYSDG, and SYSKM privilege to the password file? (Choose two.)
Correct Answer: B,D
Explanation/Reference: Explanation: * orapwd /You can create a database password file using the password file creation utility, ORAPWD. The syntax of the ORAPWD command is as follows: orapwd FILE=filename [ENTRIES=numusers] [FORCE={y|n}] [ASM={y|n}] [DBUNIQUENAME=dbname] [FORMAT={12|legacy}] [SYSBACKUP={y|n}] [SYSDG={y|n}] [SYSKM={y|n}] [DELETE={y|n}] [INPUT_FILE=input-fname] force - whether to overwrite existing file (optional), * v$PWFILE_users /12c: V$PWFILE_USERS lists all users in the password file, and indicates whether the user has been granted the SYSDBA, SYSOPER, SYSASM, SYSBACKUP, SYSDG, and SYSKM privileges. /10c: sts users who have been granted SYSDBA and SYSOPER privileges as derived from the password file. ColumnDatatypeDescription USERNAMEVARCHAR2(30)The name of the user that is contained in the password file SYSDBAVARCHAR2(5)If TRUE, the user can connect with SYSDBA privileges SYSOPERVARCHAR2(5)If TRUE, the user can connect with SYSOPER privileges Incorrect: not E: The format of the v$PWFILE_users file is already in 12c format.
Question 220
Examine these two statements: Which three are true about the MRKT tablespace?