Question 146

Which two resources might be prioritized between competing pluggable databases (PDBs) when creating
a multitenant container database (CDB) plan using Oracle Database Resource Manager? (Choose two.)
  • Question 147

    Which two statements are true about Resource Manager plans for individual pluggable databases (PDB plans) in a multitenant container database (CDB)? (Choose two.)
  • Question 148

    Which three statements are true about Oracle Restart? (Choose three.)
  • Question 149

    You are administering a multitenant container database (CDB) cdb1.
    Examine the command and its output:
    SQL>show parameterfile
    NAME TYPE VALUE
    - ----------------------------------------------------------------------
    db_create_file_dest string
    db_file_name_convert string
    db_files integer 200
    You verify that sufficient disk space is available and that no file currently exists in the '/u0l/app/oracle/
    oradata/cdb1/salesdb' location.
    You plan to create a new pluggable database (PDB) by using the command:
    SQL>CREATEPLUGGABLEDATABASESALESPDB
    ADMINUSER salesadm IDENTIFIED BY password;
    ROLES=(dba)
    DEFAULTTABLESPACE sales
    DATAFILE' /u01/app/oracle/oradata/cdb1/salesdb/sales01.dbf'SIZE 250M
    AUTOEXTEND ON
    FILE_NAME_CONVERT=('/u01/app/oracle/oradata/cdb1/pdbseed/',
    ' /u01/app/oracle/oradata/cdb1/salesdb/')
    STORAGE(MAXSIZE2G)
    PATK_PREFIX='/u01/app/oracle/oradata/cdb1/SALESPDB';
    Which statement is true?
  • Question 150

    You create a table with the period for clause to enable the use of the Temporal Validity feature of Oracle Database 12c.
    Examine the table definition:
    create table employees
    ( empno number, salary number,
    deptid number, name varchar2(100),
    period for employee_time);
    Which three statements are true concerning the use of the Valid Time Temporal feature for the EMPLOYEES table?