live chatMcAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
Pass4Test 10%OFF Discount Code

Oracle Database 11g: New Features for Administrators - 1Z0-050 Exam Questions

QUESTION NO: 1
You are managing an Oracle Database 11 g instance with ASM storage. The ASM instance is down. To know the details of the disks in the DATA disk group , you issued the following ASMCMD command:
ASMCMD> lsdsk-l -d DATA
Which statement is true regarding the outcome of this command?
Correct Answer: A
QUESTION NO: 2
You plan to collect the Automatic Workload Repository (AWR) data every Monday morning for a month. You want Oracle Database to automatically create a baseline every Monday and remove the old baseline. What is the correct action to achieve this?
Correct Answer: A
QUESTION NO: 3
Which two statements about workload capture and replay operations are true? (Choose two.)
Correct Answer: C,D
QUESTION NO: 4
View the Exhibit to examine the Automatic SQL Tuning result details.

Which action would you suggest for the selected SQL statement in the Exhibit?
Correct Answer: B
QUESTION NO: 5
Which two activities are NOT supported by the Data Recovery Advisor? (Choose two.)
Correct Answer: C,D
QUESTION NO: 6
View the Exhibit to examine the error while executing the REPAIR FAILURE command in an RMAN session.

What is the reason for this error?
Correct Answer: B
QUESTION NO: 7
Following is the list of locations in random order where oranfstab can be placed.
1 ./etc/mtab 2 .$ORACLE_HOME/dbs/oranfstab 3 ./etc/oranfstab
What is the sequence in which Direct NFS will search the locations?
Correct Answer: D
QUESTION NO: 8
Examine the following values of the Initialization parameters In the database having the SID ORCL:
BACKGROUNDJDUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/bdump USER_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/udump CORE_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/cdump DIAGNOSTIC_DEST=
The environment variables have the following value:
ORACLE_BASE=/u01 /app/oracle ORACLE_HOME=/u01/app/oracle/product/11.1.0/db_1
What is the location of the Automatic Diagnostic Repository (ADR) home?
Correct Answer: C
QUESTION NO: 9
Evaluate the following code:
SQL>VARIABLE task_name VARCHAR2(255);
SQL>VARIABLE sql_stmt VARCHAR2(4000);
SQL>BEGIN
:sql_stmt := 'SELECT COUNTO FROM customers
WHERE cust_state_province ="CA"; :task_name := 'MY_QUICKTUNE_TASK';
DBMS_ADVISOR .QUICK_TUNE(DBMS_ADVISOR .SQLACCESS_ADVISOR,
:task_name, :sql_stmt);
END;
What is the outcome of this block of code?
Correct Answer: C