|
Question 20. ITCertKeys.com has a single controller HSG80 subsystem. What command is used to create an area on a disk to save the configuration? A. save disk50000 configuration B. save configuration disk50000 C. initialize disk50000 configuration D. initialize disk50000 save configuration Answer: D Question 21. On an HSG80 subsystem, what is the correct syntax to add a unit assuming that the unit offset is 100? A. add unit mirr2 25 B. add unit mirr2 D105 C. add unit D105 mirr2 D. add unit D205 mirr2 Answer: C Question 22. On the HSG80 subsystem, what is the correct syntax to add a LUN disabling read ahead cache? A. add unit M2 D25 no read B. add unit D25 M2 no cache C. add unit D25 M2 no read ahead cache D. add unit M2 D25 no read ahead cache Answer: C Question 23. What is the function of the add unit command? A. It adds a new disk to a set. B. It assigns a unit number to a container. C. It allows the internal controller to recognize a disk. D. It allows the disk subsystem to recognize a new controller or power supply. Answer: B Question 24. Exhibit: Mirrored Cache: 256 megabyte write cache, version 0022 Cache is GOOD Un flushed data in cache How much physical cache is installed on the HSG80 cache module? A. 128 MB B. 256 MB C. 512 MB D. 1 GB Answer: C Question 25. ITCertKeys.com wants data to be written to the disk drive in the MA8000 before the application is notified of the I/O completion. Which type of caching should be used? A. Write-Back B. Read-Ahead C. Write-Through D. Mirrored Write-Back Answer: C Question 26. Which CLI command gives you a clean disk to work with (without controller metadata)? A. no reduced B. no destroy C. transportable D. non transportable Answer: C Question 27. A RAID set will NOT use a spare set if which switch is set? A. bestfit B. nopolicy C. no auto spare D. transportable Answer: B Question 28. Spare sets on the HSG80 are _____. A. local B. global C. set per RAIDset D. set per storage set type Answer: B Question 29. ITCertKeys.com has set up selective storage presentation on dual HSG80s in transparent failover mode. LUN D110 is visible through which ports? A. port 1 of top controller and port 2 of bottom controller B. port 1 of bottom controller and port 1 of top controller C. port 2 of top controller and port 2 of bottom controller D. port 2 of top controller and port 1 of bottom controller Answer: C Question 30. When dual HSG80s are in multibus failover mode, what is the largest unit number (LUN) that can be created and presented through port 1? A. 8 B. 64 C. 99 D. 199 Answer: D Question 31. What is the correct syntax for establishing HSG80 controller multibus failover mode? A. set failover copy=this B. set failover copy=other C. set failover copy=multibus D. set multibus_failover copy=this Answer: D Question 32. When dual HSG80s are in transparent failover, what is the Largest Unit Number (LUN) available through port 1? A. 8 B. 64 C. 99 D. 199 Answer: C Question 33. You have just installed some new disk drives in an existing MA8000. Which utility do you use to confirm read/write functionality on the new disks? A. DILX B. VTDPY C. FRUTIL D. CONFIG Answer: A Question 34. Which HSG80 CLI command lists all of the utilities available on the controller? A. ? B. dir C. help D. util Answer: B Question 35. The HSG80 controller's CLONE utility makes_____ . A. a concatset B. cache coherent C. copies of HSG configuration D. copies of existing mirror sets and stripe sets Answer: D
|
Question 1. Which single dynamic view is the most useful for determining buffer cache performance when using multiple buffer pools? A. V$SYSSTAT B. V$BUFFER_POOL C. V$SYSTEM_EVENT D. V$BUFFER_POOL_STATISTICS Answer: D Explanation: V$BUFFER_POOL_STATISTICS view give information about multiple buffer pools in detail. Question 2. What is the main reason for a row overflow area when creating index-organized tables? A. Avoid row chaining and migration. B. Keep the b-tree structure densely clustered. C. Speed up full table scans and fast full index scans. D. Improve performance when the index-organized table is clustered. Answer: B Explanation: Row overflow area is an area where you can store non key columns. For this you specify overflow tablespace and the column name where the row is split. The row over flow is preserve dense clustering of a B-Tree index. Question 3. Data dictionary information is held in memory longer than library cache data. Which is most likely to be true as a consequence of this? A. You do no not need to monitor library cache usage. B. You have to tune the database buffer cache regularly. C. You have to tune the library cache and dictionary cache independently. D. Good hit ratios in the library cache imply acceptable hit ratios in the dictionary cache. E. Good hit ratios in the dictionary cache imply acceptable hit ratios on the database buffer cache. Answer: D Explanation: Library cache contains SQL statements and PL/SQL blocks. It uses the LRU mechanism to manage the cache. Data Dictionary cache holds definitions of dictionary objects in memory. If hit ratio in the library cache is good it imply acceptable hit ratios on the database buffer cache. Question 4. Which three actions will cause queries to place a table’s blocks at the most-recently-used end of the LRU list? (Choose three) A. Creating a table with the CACHE option. B. Querying the table by using a CACHE hint. C. Ensuring the query performs a full table scan. D. Defining the table without the option for caching. E. Altering an existing table to set the CACHE option. F. Ensuring the query does not retrieve data through index lookup. G. Creating a separate database buffer cache to hold cached table. Answer: A, B & E Explanation: When a table is small and is used very frequently by many users then you can place this table in the LRU list to improve performance. Use CACHE clause with the table creation command. Also a table can be altered to set the CACHE option. When using SQL command to query the table then use the CACHE hint in the SQL statement to place the table in the LRU list Question 5. When performing a sort operation, you notice that there are a large number of sorts requiring I/O to the disk. Which parameter could be increased to allow more sorts to be performed in memory? A. SORT_AREA_SIZE B. LARGE_POOL_SIZE C. SORT_AREA_RETAINED_SIZE D. SORT_MULTIBLOCK_READ_COUNT Answer: A Explanation: When a large sort operations needs to be perform and the memory area become short then you need to increase the SORT_AREA_SIZE to allow more sort operations to be performed in the memory. SORT_AREA_SIZE parameter specifies an area in the memory for sort operation It can be changed dynamically and all large sort operations are done with in this memory area. Question 6. Which procedure of the DBMS_RESOURCE_MANAGER package would first need to be performed when creating a new resource object? A. CREATE_PLAN B. CREATE_PENDING_AREA C. CREATE_CONSUMER_GROUP D. CREATE_PLAN_DIRECTIVE Answer: B Explanation: CREATE_PENDING_AREA is use with the DBMS_RESOURCE_MANAGER package to create pending area. This area is used to store new resource manager plans, consumer groups and resource plan directives and changes before they are committed. This area is used to facilitate validations before the changes are accepted. Question 7. When a deadlock occurs, what should be used to diagnose the problem and determine how to prevent the deadlock from occurring again? A. Performance manager. B. ORA 00060 error message. C. The resulting trace file. Answer: C Explanation: A dead lock situation will occur when two or more users wait for data locked by each other. The oracle server automatically detect and resolve dead locks by rollbacking the transaction. Monitor trace file to detect dead lock error to determine if there are problems with the applications. Dead lock situation will be recorded in the trace file in the USER_DUMP_DEST directory with an ORA 00060 error message. Question 8. Which statement about the amount of undo generated is true? A. The amount is the same for any DML operation. B. Deletes are inexpensive, because only the ROWID must be stored. C. Inserts are inexpensive, because only the ROWID must be stored. D. Update are inexpensive, because only the new column value must be stored. Answer: C Explanation: Inserts are less expensive than update or delete because only the ROWID of the new inserted rows is stored in the rollback segment while for update the whole old data and the new data is stored and will remove when the transaction commit or rollback. Similarly for delete more space is required to stored undo generated than insert. Question 9. Sometimes the LGWR process must wait because DBWn has not compressed checkpointing a file. How do you identify this situation? A. Check the V$SESSION_WAIT view for the ‘log buffer space’ event. B. Check the alert.log file for the message “CHECKPOINT NOT COMPLETE” C. Check the ‘redo buffer allocation retries’ statistic in the V$SYSSTAT view D. Check the ‘log file switch (checkpoint complete)’ event in the V$SYSTEM_EVENT view Answer: B Explanation: Some time ‘CHECKPOINT NOT COMPLETE’ message will be found in the alert log file it occur by the non completion of checkpoints due to spinning the redo log files so rapidly. A redo file on which checkpoint is occurring is required by LGWR and therefore LGWR has to wait for the checkpoint to be completed on the redo log file. Question 10. Which two parameters could result in problems when starting more shared servers? (Choose two). A. PROCESSES B. MTS_MAX_SERVERS C. MTS_MAX_PROCESSES D. MTS_MAX_DISPATCHERS E. PARALLEL_MAX_SERVERS Answer: B & D Explanation: In multi threaded server environment a maximum number of shared servers cannot be more than the value set in the MTS_MAX_SERVERS parameter starting more server then this limit would cause a problem and similarly a maximum number of dispatchers cannot be more than MTS_MAX_DISPATCHERS parameter value. MTS_SERVERS and MTS_DISPATCHERS gives the initial number of servers and dispatchers started.
Copyright © 2004 CertsBraindumps.com Inc. All rights reserved.