1Z0-082 Exam Question 36

Which two statements are true about the configuration and use of UNDO_RETENTION with GURANTEED ? (Choose two.) RETENTION
  • 1Z0-082 Exam Question 37

    Examine the description of the BOOKS table:

    The table has 100 rows.
    Examine this sequence of statements issued in a new session:
    INSERT INTO books VALUES ('ADV112', 'Adventures of Tom Sawyer', NULL, NULL); SAVEPOINT a; DELETE FROM books; ROLLBACK TO SAVEPOINT a; ROLLBACK; Which two statements are true? (Choose two.)
  • 1Z0-082 Exam Question 38

    Examine this description of the TRANSACTIONS table:

    Which two SQL statements execute successfully? (Choose two.)
  • 1Z0-082 Exam Question 39

    The ORCL database has RESUMABLE__TIMEOUT = 7200 and DEFERRED_SEGMENT_CREATION = FALSE User U1 has a 1 MB quota in tablespace DATA.
    U1 executes this command:
    SQL> CREATE TABLE t1 AS
    (SELECT object_name, sharing, created
    FROM dba_objects);
    U1 complains that the command is taking too long to execute.
    In the alert log, the database administrator (DBA) finds this:
    2017/3/6 14:45:17
    statement in resumable session 'User U1(136), Session 1, Instance 1' was suspended due to ORA-01536: space quota exceeded for tablespace 'DATA' Which are three actions any one of which the DBA could take to resume the session? (Choose three.)
  • 1Z0-082 Exam Question 40

    You have been tasked to create a table for a banking application.
    One of the columns must meet three requirements:
    1. Be stored in a format supporting date arithmetic without using
    conversion functions
    2. Store a loan period of up to 10 years
    3. Be used for calculating interest for the number of days the loan
    remains unpaid
    Which data type should you use?