Oracle Database Administration
Comprehensive quiz covering Oracle Database administration topics including database startup, architecture, security, backup and recovery, memory management, and configuration.
Questions
Your database is in NOARCHIEVELOG mode. After which two operations you should take backup of control file? ( choose two)
- Adding a new user to database.
- Adding a new tablespace to database.
- Dropping a table from the database.
- Dropping a user from the database.
- Dropping a datafile from a tablespace.
Which is the memory area that is created when a dedicated server process is started, and contains data and information for that server process?
- SGA
- Streams Pool
- PGA
- Shared Pool
What four data protection components have been enhanced in Oracle database 10g release 2
- Flashback
- Data guard
- ASM
- Tivoli data protection
- Flash recovery.
Which is the correct description of the significance of the ORACLE_HOME environment variable?
- It specifies the directory containing the oracle managed files.
- It specifies the directory for database files, if not specified explicitly.
- It specifies the directory containing the oracle software
- It specifies the directory of Optimal Flexible Architecture.
Which two statements about recovery manager (RMAN) backup are true?
- Online redo log files can be backed up.
- RMAN backup can be taken only if the database is configured in ARCHIEVELOG mode.
- Only used data blocks can be backed up as backup sets.
- Archived redo log files are backed up.
- Only consistent database backed up can be performed.
You want the user APP_DBA to administer the oracle database from remote machine. APP_DBA is granted SYSDBA privilege to perform administrative task on the database. Which file is used by oracle database server to authenticate APP_DBA?
- Control file and password file
- Password file
- Control file
- Listener control file
The junior DBA of your organization has accidentally deleted the alert log file. What will you do to create new alert log file?
- Create the new text file as ALERT.log
- You have to recover the alert log file from the valid backup.
- No action required. The file will be created automatically by the instance.
- Change the value for the BACKGROUND_DUMP_DEST parameter.
By default, how much tablespace can any account use for a new table?
- None
- Up to the current free space in the tablespace
- Unlimited space, including autoextends
- Up to the default quota established at tablespace creation time
Which two statements are true about the role in Oracle Database?
- A role can contain both system and object privileges.
- A role cannot be assigned external authentication.
- A role can be granted to itself.
- Roles are owned by the SYS user.
- Roles can be granted to other roles
Which of the following SQL statements results in a disconnection after a session is idle for 30 minutes?
- alter session set idle_timeout=30;
- alter session set idle_timeout=1800;
- alter profile limit idle_time 30;
- alter profile set idle_timout 30;
Which three information are to be mandatorily provided while creating a new listener using Enterprise Manager Database Control?
- The database services to be registered with the listener
- The log file and trace file destination for the listener.
- The protocol used by the listener
- The server name where the listener runs.
- The port used by the listener.
Which of the following prevents a user from reusing a password when they change their password?
- Setting the initialization parameter NO_PASSWORD_REUSE to TRUE
- Altering that user’s profile to UNLIMITED for PASSWORD_REUSE_TIME and 1 for PASSWORD_REUSE_MAX
- Altering that user’s profile to UNLIMITED for both PASSWORD_REUSE_TIME and PASSWORD_REUSE_MAX
- Using a password verify function to record the new password and compare the new passwords to those recorded previously
How can you prevent someone from using an all-numeric password?
- Set the initialization parameter PASSWORD_COMPLEXITY to ALPHANUM.
- Alter that user’s profile setting PASSWORD_COMPLEXITY to ALPHNANUM.
- Alter the user’s profile to use a password verify function that performs REGEX comparisons to validate the password.
- There is no mechanism that lets you prevent an all-numeric password
You specified segment space management as automatic for a tablespace what effect would this have on space management?
- Extents would be managed by freelists.
- Free space would be managed by data dictionary.
- The segment would be managed by bitmaps.
- The segment would be managed by freelists.
Which of the following is not an object privilege on a table?
- SELECT
- DEBUG
- REFERENCES
- READ
A user wants to connect to the database instance from an application that is running on a remote machine. Which tool should the DBA use to establish the required configuration to ensure that the user is able to connect to the database instance? (Choose two).
- Oracle Net Manager.
- Data Pump.
- Oracle Universal Installer (OUI).
- Oracle Enterprise Manager.
- Database Configuration Assistant (DBCA).
Which two are valid locking levels that are used by transactions in oracle database? (Choose two)
- Object level.
- Row level.
- Block level.
- Schema level.
- Database level.
Your database is having two control files; three redo log file groups with two members in each group. Failure of which file would cause a instance to shut down?
- Loss of the initialization parameter file.
- One of the redo log members.
- Any data file belonging to the default permanent tablespace
- Any archive log file.
- Any control file.
Which statements are true regarding the logical structure of database? (Choose three)
- It is possible to have tablespaces of different block sizes in a database.
- A data block is the smallest unit of I/O for data files.
- Multiple tablespaces can share single data file.
- Each data block in the database always corresponds to one OS block.
- Each segment contains one or more extents.
Which three statements are true about the stages of database startup?
- Data files and redo log files can be renamed at the MOUNT stage.
- Control files are required to bring the database to the NOMOUNT stage.
- Data files and online redo log files are checked for consistency while opening the database.
- Data files and redo log files are made available to users at the OPEN stage.
- Control files are read at the OPEN stage for the location of data files.