1z0-050 | 10 Tips For Replace 1z0-050 examcollection


Q1. You are managing an Oracle Database 11g database with the ASM storage. The database is having big file tablespaces. You want files to open faster and less memory to be used in the shared pool to manage the extent maps. 

What configuration would you effect to achieve your objective? (Choose all that apply.)

A. Set the ASM compatibility attribute for the ASM disk group to 11.1.0.

B. Set the RDBMS compatibility attribute for the ASM disk group to 11.1.0.

C. Set the COMPATIBLE initialization parameter for the ASM instance to 11.1.0.

D. Set the COMPATIBLE initialization parameter for the database instance to 11.1.0.

Answer: AD

Q2. Which three are the valid statements in relation to SQL plan baselines? (Choose three.)

A. The plans can be manually loaded to the SQL plan baseline.

B. The plans in the SQL plan baseline are verified and accepted plans.

C. The plans generated for every SQL statement are stored in the SQL plan baseline by default.

D. The plan baselines are stored temporarily in the memory as long as the database instance is running.

E. For the SQL plan baselines to be accessible to the optimizer, the SYSAUX tablespace must be online.

Answer: ABE

Q3. What two statements are true regarding the recommendations received from the SQL Access Advisor? (Choose two.)

A. It can recommend partitioning only on tables that have at least 10,000 rows.

B. It cannot generate recommendations that support multiple workload queries.

C. It can recommend only B-tree indexes and not bitmap or function-based indexes.

D. It can recommend partitioning on tables provided that the workloads have some predicates and joins on the columns of the NUMBER or DATE type.

Answer: AD

Q4. Which statement about the enabling of table compression in Oracle Database 11g is true?

A. Compression can be enabled at the table, tablespace, or partition level for direct loads only.

B. Compression can be enabled only at the table level for both direct loads and conventional DML.

C. Compression can be enabled at the table, tablespace, or partition level for conventional DML only.

D. Compression can be enabled at the table, tablespace, or partition level for both direct loads and conventional DML.

Answer: D

Q5. Which two statements are true regarding the functionality of the remap command in ASMCMD? (Choose two.)

A. It repairs blocks that have read disk I/O errors.

B. It checks whether the alias metadata directory and the file directory are linked correctly.

C. It repairs blocks by always reading them from the mirror copy and writing them to the original location.

D. It reads the blocks from a good copy of an ASM mirror and rewrites them to an alternate location on disk if the blocks on the original location cannot be read properly.

Answer: AD

Q6. You executed the following commands:

SQL> ALTER SESSION SET OPTIMIZER_USE_PENDING_STATISTICS = false; SQL> EXECUTE DBMS_STATS.SET_TABLE_PREFS('SH', 'CUSTOMERS', 'PUBLISH','false'); SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS('SH', 'CUSTOMERS'); 

Which statement is correct regarding the above statistics collection on the SH.CUSTOMERS table in the above session?

A. The statistics are stored in the pending statistics table in the data dictionary.

B. The statistics are treated as the current statistics by the optimizer for all sessions.

C. The statistics are treated as the current statistics by the optimizer for the current sessions only.

D. The statistics are temporary and used by the optimizer for all sessions until this session terminates.

Answer: A

Q7. Which two statements are true with respect to the maintenance window? (Choose two.)

A. A DBA can enable or disable an individual task in all maintenance windows.

B. A DBA cannot change the duration of the maintenance window after it is created.

C. In case of a long maintenance window, all Automated Maintenance Tasks are restarted every four hours.

D. A DBA can control the percentage of the resource allocated to the Automated Maintenance Tasks in each window.

Answer: AD

Q8. Sales details are being stored on a daily basis in the SALES_2007 table. A large amount of data is added to the table daily. To save disk space, you issued the following command:

ALTER TABLE sales_2007 COMPRESS FOR ALL OPERATIONS;

What would be the outcome of this command?

A. It produces an error because data already exists in the table.

B. It produces an error because compression can be enabled at table creation only.

C. It compresses all data added or modified henceforth but the existing data in the table is not compressed immediately.

D. It immediately compresses all existing data as well as new data, resulting from either fresh additions or modifications to existing data.

Answer: C

Q9. Which steps are mandatory to enable Direct NFS?

1. Mount all required file systems using the kernel NFS driver.

2. Create an oranfstab file containing the attributes for each NFS server to be accessed using Direct NFS.

3. Replace the ODM library libodm11.so_stub with libodm11.so.

A. 2 and 3

B. 1 and 3

C. 1 and 2

D. 1, 2 and 3

Answer: B

Q10. An index called ORD_CUSTNAME_IX has been created on the CUSTNAME column in the ORDERS table using the following command:

SQL>CREATE INDEX ord_custname_ix ON orders(custname); The ORDERS table is frequently queried using the CUSTNAME column in the WHERE clause. You want to check the impact on the performance of the queries if the index is not available. You do not want the index to be dropped or rebuilt to perform this test. 

Which is the most efficient method of performing this task?

A. disabling the index

B. making the index invisible

C. making the index unusable

D. using the MONITORING USAGE clause for the index

Answer: B