Home
76.
Which of the following initialization parameters specifies the location where the control file trace backup is sent?
  • A.
    DIAGNOSTIC_DEST
  • B.
    BACKGROUND_DUMP_DEST
  • C.
    LOG_ARCHIVE_DEST
  • D.
    CORE_DUMP_DEST
  • Answer & Explanation
  • Report
Answer : [A]
Explanation :
The trace backup is created in a subdirectory under the location specified by the DIAGNOSTIC_DEST parameter— $DIAGNOSTIC_DEST/diag/<dbname>/<instancename>/ trace directory .
Report
Name Email  
77.
Which of the following pieces of information is not available in the control file?
  • A.
    Instance name
  • B.
    Database name
  • C.
    Tablespace names
  • D.
    Log sequence number
  • Answer & Explanation
  • Report
Answer : [A]
Explanation :
The instance name is not in the control file. The control file has information about the physical database structure.
Report
Name Email  
78.
Which statement adds a member /logs/redo22.log to redo log-file group 2?
  • A.
    ALTER DATABASE ADD LOGFILE '/logs/redo22.log' TO GROUP 2;
  • B.
    ALTER DATABASE ADD LOGFILE MEMBER '/logs/redo22.log' TO GROUP 2;
  • C.
    ALTER DATABASE ADD MEMBER '/logs/redo22.log' TO GROUP 2;
  • D.
    ALTER DATABASE ADD LOGFILE '/logs/redo22.log';
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
When adding log-file members, specify the group number or specify all the existing group members.
Report
Name Email  
79.
To place the database into ARCHIVELOG mode, in which state must you start the database?
  • A.
    MOUNT
  • B.
    NOMOUNT
  • C.
    OPEN
  • D.
    SHUTDOWN
  • E.
    Any of the above
  • Answer & Explanation
  • Report
Answer : [A]
Explanation :
To put the database into ARCHIVELOG mode, the database must be in the MOUNT state; the control files and all data files that are not offline must be available to change the database to ARCHIVELOG mode.
Report
Name Email  
80.
Which of the following substitution-variable formats are always required for specifying the names of the archived redo log files? Choose all that apply.
  • A.
    %d
  • B.
    %s
  • C.
    %r
  • D.
    %t
  • Answer & Explanation
  • Report
Answer : [B, C, D]
Explanation :
The substitution variable %d , which represents the database ID, is required only if multiple databases share the same archive log destination.
Report
Name Email