Question 156

Examine these two statements:

Which three are true about the MRKT tablespace?
  • Question 157

    Which statement is true about unified auditing?
  • Question 158

    Which two statements describe the relationship between a scheduler window, a resource manager plan, and a job
    class?
  • Question 159

    Examine these statements:
    DESC emp

    INSERT INTO emp VALUES ( 101, 'John', 12000);
    1 row created.
    SAVEPOINT after_insert;
    Savepoint created.
    UPDATE emp SET salary=16000 WHERE empno=101;
    1 row updated.
    SAVEPOINT after_update;
    Savepoint created.
    DELETE FROM emp WHERE empno=101;
    1 row deleted.
    SAVEPOINT after_delete;
    Savepoint created.
    ROLLBACK TO SAVEPOINT after_update;
    Rollback complete.
    INSERT INTO emp VALUES ( 102, 'Emma', 12000);
    ROLLBACK TO SAVEPOINT after_delete;
    Which is the result and effect of this ROLLBACK?
  • Question 160

    Your multitenant container (CDB) containing three pluggable databases (PDBs) is running in ARCHIVELOG mode. You find that the SYSAUX tablespace is corrupted in the root container.
    The steps to recover the tablespace are as follows:
    1 . Mount the CDB.
    2 . Close all the PDBs.
    3 . Open the database.
    4 . Apply the archive redo logs.
    5 . Restore the data file.
    6 . Take the SYSAUX tablespace offline.
    7 . Place the SYSAUX tablespace online.
    8 . Open all the PDBs with RESETLOGS.
    9 . Open the database with RESETLOGS.
    1 0. Execute the command SHUTDOWN ABORT.
    Which option identifies the correct sequence to recover the SYSAUX tablespace?