READ Free Dumps For Oracle- 1z0-067
Question ID 22076 | You created a database with DBCA by using one of the Oracle supplied templates.
Which is the default permanent tablespace for all users except DBSNMP and OUTLN?
|
Option A | USERS
|
Option B | SYSTEM
|
Option C | SYSAUX
|
Option D | EXAMPLE
|
Correct Answer | A |
Explanation Explanation: This table space is used to store permanent user objects and data. Like the TEMP table space, every database should have a table space for permanent user data that is assigned to users. Otherwise, user objects will be created in the SYSTEM table space, which is not good practice. In the preconfigured database, USERS is assigned the default table space, and space for all objects created by non-system users comes from this table space. For system users, the default permanent table space remains SYSTEM.
Question ID 22077 | Your database is running in archivelog mode. Examine the parameters for your database instance:
LOG_ARCHIVE_DEST_l ='LOCATION=/disk1/arch MANDATORY'
LOG_ARCHIVE_DEST_2 ='LOCATION=/disk2/arch'
LOG_ARCHIVE_DEST_3 ='LOCATIO=/disk3/arch'
LOG_ARCHIVE_DEST _4 ='LOCATIONs/disk4/arch'
LOG_ARCHIVE _MIN_SUCCEED_DEST = 2
While the database is open, you notice that the destination set by the log_archive_dest_1 parameter is not available. All redo log groups have been used.
What happens at the next log switch?
|
Option A | The database instance hangs and the redo log files are not overwritten.
|
Option B | The archived redo log files are written to the fast recovery area until the mandatory destination is made available.
|
Option C | The database instance is shutdown immediately.
|
Option D | The destination set by the log_archive_dest parameter is ignored and the archived redo log files are created in the next two available locations to guarantee archive log success.
|
Correct Answer | D |
Explanation