Sybex OCA Oracle 10g Administration I Study Guide phần 9 ppsx

74 372 0
Sybex OCA Oracle 10g Administration I Study Guide phần 9 ppsx

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

478 Chapter 9  Proactive Database Maintenance and Performance Monitoring To begin the recompilation process, select the Reorganize option from the Actions drop- down list, as shown in Figure 9.56. Click Go to display the second screen of the Reorganize Objects Wizard, which is shown in Figure 9.57. Click the Set Attributes or Set Attributes By Type button to modify the index’s attributes—such as the tablespace that it will be stored in or its storage parameters—before rebuilding. Click Next to display the third screen of the Reorganize Objects Wizard, partially shown in Figure 9.58. Using this screen, you can control how the index is rebuilt. For example, you can select the rebuild method, either offline or online, that is best suited for your environment. Offline rebuilds are faster but impact application users who need to access the index. Online rebuilds have minimal impact on users but take longer to complete. You can also specify a “scratch” tablespace where Oracle stores the intermediate results during the rebuild process. Redirecting this activity to another tablespace helps minimize potential space issues in the index’s tablespace during the rebuild. You can also specify whether to gather new optimizer statistics when the index build is complete. Click Next on this screen to generate an impact report, as shown in Figure 9.59. FIGURE 9.56 The Indexes screen showing the Reorganize action FIGURE 9.57 The second Reorganize Objects screen 4367.book Page 478 Monday, October 4, 2004 2:19 PM Performance Monitoring 479 FIGURE 9.58 The third Reorganize Objects screen FIGURE 9.59 The Reorganize Objects: Impact Report screen The output indicates that there is adequate space in the EXAMPLE tablespace for the unusable JOBS_ID_PK index. Clicking Next displays the job scheduling screen shown in Figure 9.60. Like the earlier job-scheduling example in this chapter, you can use this screen to assign a job description and to specify the start time for the job. Clicking Next submits the job and rebuilds the unusable index according to the parameters you defined. 4367.book Page 479 Monday, October 4, 2004 2:19 PM 480 Chapter 9  Proactive Database Maintenance and Performance Monitoring FIGURE 9.60 The Reorganize Objects: Schedule screen Storing Database Statistics in the Data Dictionary Some columns in the DBA views are not populated with data until the table or index referenced by the view is analyzed. For example, the DBA_TABLES data dictionary view does not contain values for NUM_ROWS, AVG_ROW_LEN, BLOCKS, and EMPTY_BLOCKS, among others, until the table is analyzed. Likewise, the DBA_INDEXES view does not contain values for BLEVEL, LEAF_ BLOCKS, AVG_LEAF_BLOCKS_PER_KEY, and AVG_DATA_BLOCKS_PER_KEY, among others, until the index is analyzed. These statistics are useful not only to you, but also are critical for proper functioning of the cost-based optimizer. The cost-based optimizer (CBO) uses these statistics to formulate efficient execution plans for each SQL statement that is issued by application users. For example, the CBO may have to decide whether to use an available index when processing a query. The CBO can only make an effective guess at the proper execution plan when it knows the number of rows in the table, the size and type of indexes on that table, and how many the CBO expects to be returned by a query. Because of this, the statistics gathered and stored in the data dictionary views are sometimes called optimizer statistics. In Oracle 10g, there are several ways to analyze tables and indexes to gather statistics for the CBO. These techniques are described in the following sections. Automatic Collection of Statistics If you created your database using the Database Configuration Assistant GUI tool, your database is automatically configured to gather table and index statistics every day between 10:00 P.M. and 6:00 A.M. However, the frequency and hours of collection can be modified as needed using EM Database Control. Manual Collection of Statistics You can also configure automatic statistics collection for manually created databases using man- ual techniques. Collecting manual statistics is also useful for tables and indexes whose storage 4367.book Page 480 Monday, October 4, 2004 2:19 PM Performance Monitoring 481 characteristics change frequently or that need to be analyzed outside the normal analysis window of 10:00 P.M. and 6:00 A.M. You can collect manual statistics through EM Database Control or using the built-in DBMS_STATS PL/SQL package. Manually Gathering Statistics Using EM You can use the EM Gather Statistics Wizard to manually collect statistics for individual seg- ments, schemas, or the database as a whole. To start the wizard, click the Maintenance link on the EM Database Control screen. This wizard walks you through five steps, beginning with the Introduction screen. Click Next on the Introduction screen to open Step 2 in the wizard, and select the method to use when gathering the statistics shown in Figure 9.61. As you can see, three primary statistics options are available: Compute, Estimate, and Delete. The Compute option examines the entire table or index when determining the statistics. This option is the most accurate, but also the most costly in terms of time and resources if used on large tables and indexes. The Estimate option takes a representative sample of the rows in the table and then stores those statistics in the data dictionary. The default sample size is 10 percent of the total table or index rows. You can also manually specify your own sample size if desired. You can also specify the sample method, telling EM Database Control to sample based on a per- centage of the overall rows, or blocks, in the table or index. The Delete option removes statistics for a table or index from the data dictionary. If you specify a sample size of 50 percent or more, the table or index is analyzed using the Compute method. After choosing a collection and sampling method, click Next to display the Object Selection screen, as shown in Figure 9.62. FIGURE 9.61 The Default Method screen of the Gather Statistics Wizard 4367.book Page 481 Monday, October 4, 2004 2:19 PM 482 Chapter 9  Proactive Database Maintenance and Performance Monitoring This screen lets you focus your statistics collection by schema, table, index, partition, or the entire database. Figure 9.63 shows the COSTS and PRODUCTS tables being selected at the target for the analysis when the Table option is selected. Click OK to display the statistics summary screen shown in Figure 9.64. Click the Options button to specify the analysis method, sample method, and other options related to the gathering the table statistics, and then click Next to move to the fourth EM Gather Statistics Wizard screen, as shown in Figure 9.65. The output in Figure 9.65 shows the scheduling details of the job that will be used to launch the gathering of the statistics for the specified tables. Accepting the default values generates a system job ID and runs immediately for one time only. If desired, you can change the frequency and time for the statistics-gathering process. Click Next to display the final screen of the EM Gather Statistics Wizard, which is shown in Figure 9.66. FIGURE 9.62 The Object Selection screen of the Gather Statistics Wizard FIGURE 9.63 Selecting tables to be analyzed 4367.book Page 482 Monday, October 4, 2004 2:19 PM Performance Monitoring 483 FIGURE 9.64 The statistics summary screen FIGURE 9.65 The Schedule Analysis screen of the Gather Statistics Wizard Figure 9.66 summarizes all the specifics of the statistics-gathering job that the wizard built. Click Submit to submit the analysis to Oracle’s job-handling system, where it is executed according to the schedule specified previously. Its execution status is displayed on the Scheduler Jobs summary screen shown in Figure 9.67. Once the job is complete, it is moved to the Run History tab on the Scheduler Jobs screen where its output can be inspected for job success or failure and any associated runtime messages. 4367.book Page 483 Monday, October 4, 2004 2:19 PM 484 Chapter 9  Proactive Database Maintenance and Performance Monitoring FIGURE 9.66 The Review screen of the Gather Statistics Wizard FIGURE 9.67 The Scheduler Jobs summary screen Manually Gathering Statistics Using DBMS_STATS The output in Figure 9.66 shows that the EM Gather Statistics Wizard uses the DBMS_STATS PL/SQL package when it gathers statistics. You can also call the DBMS_STATS PL/SQL package directly from a SQL*Plus session. Some of the options for the DBMS_STATS package include the following:  Back up old statistics before new statistics are gathered. This feature allows you to restore some or all of the original statistics if the CBO performs poorly after updated statistics are gathered.  Gather table statistics much faster by performing the analysis in parallel.  Automatically gather statistics on highly volatile tables and bypass gathering statistics on static tables. The following example shows how the DBMS_STATS packages can be used to gather statistics on the PRODUCT_HISTORY table in SH’s schema: SQL> EXECUTE DBMS_STATS.GATHER_TABLE_STATS (‘SH’,’PRODUCT_HISTORY’); 4367.book Page 484 Monday, October 4, 2004 2:19 PM Performance Monitoring 485 You can use the DBMS_STATS package to analyze tables, indexes, an entire schema, or the whole database. A sample of some of the procedures available within the DBMS_STATS package are shown in Table 9.9. For complete details of the many options available in the DBMS_STATS package, see Chapter 93, “DBMS_STATS,” in PL/SQL Packages and Types Reference 10g Release 1 (10.1), Part Number B10802-01. The presence of accurate optimizer statistics has a big impact on two important measures of overall system performance: throughput and response time. Important Performance Metrics Throughput is another example of a statistical performance metric. Throughput is the amount of processing that a computer or system can perform in a given amount of time, for example, the number of customer deposits that can be posted to the appropriate accounts in four hours under regular workloads. Throughput is an important measure when considering the scalability of the system. Scalability refers to the degree to which additional users can be added to the system with- out system performance declining significantly. New features such as Oracle Database 10g’s Grid Computing capabilities make Oracle one of the most scalable database platforms on the market. Performance considerations for transactional systems usually revolve around throughput maximization. Another important metric related to performance is response time. Response time is the amount of time that it takes for a single user’s request to return the desired result when using an application, for example, the time it takes for the system to return a listing of all the custom- ers who purchased products that require service contracts. TABLE 9.9 Procedures within the DBMS_STATS Package Procedure Name Description GATHER_INDEX_STATS Gathers statistics on a specified index GATHER_TABLE_STATS Gathers statistics on a specified table GATHER_SCHEMA_STATS Gathers statistics on a specified schema GATHER_DATABASE_STATS Gathers statistics on an entire database 4367.book Page 485 Monday, October 4, 2004 2:19 PM 486 Chapter 9  Proactive Database Maintenance and Performance Monitoring Performance tuning considerations for decision-support systems usually revolve around response time minimization. EM Database Control can be used to both monitor and react to sudden changes in perfor- mance metrics like throughput and response time. Using EM Database Control to View Performance Metrics EM Database Control provides a graphical view of throughput, response time, I/O, and other important performance metrics. To view these metrics, click the All Metrics link at the bottom of the EM Database Control main screen to display the All Metrics screen, which is partially dis- played in Figure 9.68. Click the metric you want to examine to expand the available information. Figure 9.69 shows a partial listing of the expanded list for the Throughput metric. Click the Database Block Changes (Per Second) link to display details on the number of data- base blocks that were modified by application users, per second, for any period between the last 24 hours and the last 31 days. Figure 9.70 shows the Database Blocks Changes detail screen. Telling ADDM about Your Server I/O Capabilities Both throughput and response time are impacted by disk I/O activity. In order for ADDM to make meaningful recommendations about the I/O activity on your server, you need to give ADDM a reference point against which to compare the I/O statistics it has gathered. This refer- ence point is defined as the “expected I/O” of the server. By default, ADDM uses an expected I/O rate of 10,000 microseconds (10 milliseconds). This means that ADDM expects that, on aver- age, your server will need 10 milliseconds to read a single database block from disk. Using operating system utilities, we performed some I/O tests against our large storage area network disk array and found that the average time needed to read a single database block was about 7 milliseconds (7000 microseconds). To give ADDM a more accurate picture of our expected I/O speeds, we used the DBMS_ADVISOR package to tell ADDM that our disk sub- system was faster than the default 10 millisecond value: EXECUTE DBMS_ADVISOR.SET_DEFAULT_TASK_PARAMETER('ADDM', 'DBIO_EXPECTED', 7000); Without this adjustment, the ADDM might have thought that our I/O rates were better than average (7 milliseconds instead of 10 milliseconds) when in fact they were only average for our system. The effect of this inaccurate assumption regarding I/O would impact nearly every rec- ommendation that the ADDM made and would have almost certainly resulted in sub-par sys- tem performance. 4367.book Page 486 Monday, October 4, 2004 2:19 PM Performance Monitoring 487 FIGURE 9.68 The EM Database Control All Metrics screen FIGURE 9.69 An expanded list of Throughput metrics The output in Figure 9.70 shows that average block changes per second were 3,784, with a high value of 11,616. You can also see that the Warning threshold associated with this metric is 85 and that the Critical threshold is 95 block changes per second and that there were two occurrences of exceeding one or both of those thresholds. EM Database Control also provides a rich source of performance-tuning information on the Performance tab of the EM Database Control main screen. The Performance tab is divided into three sections of information (as shown in Figures 9.71, 9.72, and 9.73):  Host  Sessions  Instance Throughput 4367.book Page 487 Monday, October 4, 2004 2:19 PM [...]... Multiplexing Control Files Using init.ora Multiplexing means keeping a copy of the same control file or other file on different disk drives, ideally on different controllers too Copying the control file to multiple locations and changing the CONTROL_FILES parameter in the text-based initialization file init.ora to include all control file names specifies the multiplexing of the control file The following... Ensuring a high level of hardware redundancy Increasing availability by using Oracle options such as Real Application Clusters (RAC) and Oracle Streams (an advanced replication technology) Decreasing the mean time to recover (MTTR) by setting the appropriate Oracle initialization parameters and ensuring that backups are readily available in a recovery scenario Minimizing or eliminating loss of committed... putting things into perspective and realizing that the slight additional work involved in maintaining either additional or larger redo logs is small in relation to the time needed to fix a problem when the number of users and concurrent active transactions increase The space needed for additional log file groups is minimal and is well worth the effort up front to avoid the undesirable situation in which... screens 2 D Setting STATISTICS_LEVEL = BASIC disables the collection and analysis of AWR statistics TYPICAL is the default setting, and ALL gathers information for the execution plan and operating system timing OFF is not a valid value for this parameter 3 B The I/ O caused by user activity is the primary source of user waits because it is listed first in the graph’s legend Clicking the User I/ O link opens... Tuning Advisor B SGA Tuning Advisor C Memory Advisor D Pool Advisor 10 Which of the following advisors determines if the estimated instance recovery duration is within the expected service-level agreements? A Undo Management Advisor B SQL Access Advisor C SQL Tuning Advisor D MTTR Advisor 11 If no e-mail address is specified, where will alert information be displayed? A In the DBA_ALERTS data dictionary... control file can continue to grow due to new RMAN backup information recorded in the control file until it reaches CONTROL_FILE_RECORD_KEEP_TIME Multiplexing Control Files Because the control file is critical for database operation, at a minimum have two copies of the control file; Oracle recommends a minimum of three copies You duplicate the control file on different disks either by using the multiplexing... you to specify additional copies of the control file or change the location of the control files The next two sections discuss the two ways that you can implement the multiplexing feature: using a client or server-side init.ora (available before Oracle 9i) and using the server-side SPFILE (available with Oracle 9i and later) FIGURE 10.1 DBCA Storage control files 504 Chapter 10 Implementing Database... Certification website (http:// www .oracle. com/education/certification/) for the most current exam objectives listing Oracle Database 10g (Oracle 10g) makes it easy for you to configure your database to be highly available and reliable In other words, you want to configure your database to minimize the amount of downtime while at the same time being able to recover quickly and without losing any committed... interval produced the highest activity for this monitored event? A 9: 45 to 9: 50 B 10:00 to 10:45 C 9: 55 to 10:10 D 10:00 to 10:05 8 Which data dictionary view contains information explaining why ADDM made its recommendations? A DBA_ADVISOR_FINDINGS B DBA_ADVISOR_OBJECTS C DBA_ADVISOR_RECOMMENDATIONS D DBA_ADVISOR_RATIONALE 9 Which of the following advisors determines if the space allocated to the Shared... to disk during the previous one-hour period Figure 9. 71 shows a sample of performance graphs for run queue and paging activity In addition to other metrics, the Sessions: Waiting And Working section of the Performance tab always shows CPU and I/ O activity per session for the previous one-hour period Figure 9. 72 shows the Sessions: Waiting And Working section of the Performance main screen The final . statistics when the index build is complete. Click Next on this screen to generate an impact report, as shown in Figure 9. 59. FIGURE 9. 56 The Indexes screen showing the Reorganize action FIGURE 9. 57. to display the final screen of the EM Gather Statistics Wizard, which is shown in Figure 9. 66. FIGURE 9. 62 The Object Selection screen of the Gather Statistics Wizard FIGURE 9. 63 Selecting tables. Which data dictionary view contains information explaining why ADDM made its recom- mendations? A. DBA_ADVISOR_FINDINGS B. DBA_ADVISOR_OBJECTS C. DBA_ADVISOR_RECOMMENDATIONS D. DBA_ADVISOR_RATIONALE 9.

Ngày đăng: 07/08/2014, 11:22

Mục lục

  • Chapter 9 Proactive Database Maintenance and Performance Monitoring

    • Performance Monitoring

      • Storing Database Statistics in the Data Dictionary

      • Important Performance Metrics

      • Summary

      • Exam Essentials

      • Review Questions

      • Answers to Review Questions

      • Chapter 10 Implementing Database Backups

        • Understanding and Configuring Recovery Components

          • Control Files

          • Understanding Checkpoints

          • Redo Log Files

          • Archived Redo Log Files

          • The Flash Recovery Area

          • Performing Backups

            • Understanding Backup Terminology

            • Backing Up the Control File

            • Using RMAN to Create Backups

            • Managing Backups

              • Catalog Maintenance

              • Monitoring the Flash Recovery Area

              • Automating Backups

              • Summary

              • Exam Essentials

              • Review Questions

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan