<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Oracle DBA Discussion Forum - Basic Database Administration]]></title>
		<link>http://naturebios.com/natureboard/</link>
		<description><![CDATA[Oracle DBA Discussion Forum - http://naturebios.com/natureboard]]></description>
		<pubDate>Mon, 06 Sep 2010 15:50:30 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[CURRENT_TIMESTAMP IN ORACLE]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2920</link>
			<pubDate>Thu, 19 Nov 2009 07:37:38 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2920</guid>
			<description><![CDATA[Current Timestamp 	CURRENT_TIMESTAMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT CURRENT_TIMESTAMP FROM dual;</code></div></div>
<span style="font-weight: bold;"><br />
Loading current timestamps</span><br />
<br />
The Loader can insert values into columns with a timestamp data type based on a reading of the time-of-day clock. For example, the STARTDATE and ENDDATE of an offer in WebSphere Commerce can have values based on the time at which the offer is inserted into the table. To support this functionality, the Loader package uses the MLTIME table to keep the timestamp instances. The schema for this table is as follows:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>table MLTIME<br />
&nbsp;&nbsp;&nbsp;&nbsp;( <br />
&nbsp;&nbsp;&nbsp;&nbsp;INSTANCEID BIGINT not null,<br />
&nbsp;&nbsp;&nbsp;&nbsp;MLTIMESTAMP TIMESTAMP<br />
&nbsp;&nbsp;&nbsp;&nbsp;)</code></div></div>
<span style="font-weight: bold;"><br />
   1. Modify the values of the properties specified in the new Loader customizer property file.</span><br />
<br />
      The name of the table and its columns can be customized by changing the following properties in the Loader customizer property file:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>TimestampTableName = MLTIME<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TimestampIdColumn = INSTANCEID<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TimestampValueColumn = MLTIMESTAMP</code></div></div>
<br />
      The input data for specifying current-timestamp values are based on timestamp string patterns. The following masks are used for specifying the durations for the timestamp:<br />
<br />
        %D for days<br />
        %M for months<br />
        %Y for years<br />
        %H for hours<br />
        %m for minutes<br />
        %s for seconds<br />
<br />
      You can customize current-timestamp formats by modifying or adding masks in the Loader customizer property file. The following input masks are provided:<br />
<br />
      <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>InputCurrentTimestampFormat.1 = CURRENT TIMESTAMP<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.2 = CURRENT TIMESTAMP %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.3 = CURRENT TIMESTAMP %D DAYS %M MONTHS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.4 = CURRENT TIMESTAMP %D DAYS %M MONTHS %Y YEARS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.5 = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.6 = SYSDATE<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.7 = ADDDAYS(SYSDATE,%D)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.8 = ADDDAYS(ADDMONTHS(SYSDATE,%M),%D) <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.9 = ADDDAYS(ADDMONTHS(ADDYEARS(SYSDATE,%Y),%M),%D)</code></div></div>
<br />
      Input data for the current timestamp is matched with the specified patterns. If the data matches a specified input pattern, that pattern is used to parse the input data and the Loader converts the data into the appropriate output format before inserting it into the database. New patterns can be added to the above list provided the subscript numbers are ordered sequentially.<br />
<br />
<span style="font-weight: bold;">   2. Set the target output formats for specifying current timestamps:</span><br />
         1. CurrentTimestampFormat.Load is used when the Loader is operating in load or import mode.<br />
         2. CurrentTimestampFormat.JDBC is used when the Loader uses JDBC to insert, update, or delete values in the database.<br />
<br />
      The default target patterns in the Loader are as follows:<br />
<br />
        <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>CurrentTimestampFormat.Load = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%h HOURS %m MINUTES %s SECONDS <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CurrentTimestampFormat.JDBC = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%h HOURS %m MINUTES %s SECONDS</code></div></div>
<br />
      When you customize the CurrentTimestampFormat.Load and CurrentTimestampFormat.JDBC properties, you should make sure that the syntax of the resulting statement is valid for the given database management system.<br />
<br />
      The CurrentTimestampLiteral property is used by the Loader to make an early determination of whether the value for the timestamp column is in a current-timestamp format, thus avoiding expensive computations to determine that the value is not a string representation of timestamp.<br />
<span style="font-weight: bold;"><br />
        CurrentTimestampLiteral = CURRENT TIMESTAMP</span>]]></description>
			<content:encoded><![CDATA[Current Timestamp 	CURRENT_TIMESTAMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT CURRENT_TIMESTAMP FROM dual;</code></div></div>
<span style="font-weight: bold;"><br />
Loading current timestamps</span><br />
<br />
The Loader can insert values into columns with a timestamp data type based on a reading of the time-of-day clock. For example, the STARTDATE and ENDDATE of an offer in WebSphere Commerce can have values based on the time at which the offer is inserted into the table. To support this functionality, the Loader package uses the MLTIME table to keep the timestamp instances. The schema for this table is as follows:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>table MLTIME<br />
&nbsp;&nbsp;&nbsp;&nbsp;( <br />
&nbsp;&nbsp;&nbsp;&nbsp;INSTANCEID BIGINT not null,<br />
&nbsp;&nbsp;&nbsp;&nbsp;MLTIMESTAMP TIMESTAMP<br />
&nbsp;&nbsp;&nbsp;&nbsp;)</code></div></div>
<span style="font-weight: bold;"><br />
   1. Modify the values of the properties specified in the new Loader customizer property file.</span><br />
<br />
      The name of the table and its columns can be customized by changing the following properties in the Loader customizer property file:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>TimestampTableName = MLTIME<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TimestampIdColumn = INSTANCEID<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TimestampValueColumn = MLTIMESTAMP</code></div></div>
<br />
      The input data for specifying current-timestamp values are based on timestamp string patterns. The following masks are used for specifying the durations for the timestamp:<br />
<br />
        %D for days<br />
        %M for months<br />
        %Y for years<br />
        %H for hours<br />
        %m for minutes<br />
        %s for seconds<br />
<br />
      You can customize current-timestamp formats by modifying or adding masks in the Loader customizer property file. The following input masks are provided:<br />
<br />
      <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>InputCurrentTimestampFormat.1 = CURRENT TIMESTAMP<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.2 = CURRENT TIMESTAMP %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.3 = CURRENT TIMESTAMP %D DAYS %M MONTHS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.4 = CURRENT TIMESTAMP %D DAYS %M MONTHS %Y YEARS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.5 = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.6 = SYSDATE<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.7 = ADDDAYS(SYSDATE,%D)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.8 = ADDDAYS(ADDMONTHS(SYSDATE,%M),%D) <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;InputCurrentTimestampFormat.9 = ADDDAYS(ADDMONTHS(ADDYEARS(SYSDATE,%Y),%M),%D)</code></div></div>
<br />
      Input data for the current timestamp is matched with the specified patterns. If the data matches a specified input pattern, that pattern is used to parse the input data and the Loader converts the data into the appropriate output format before inserting it into the database. New patterns can be added to the above list provided the subscript numbers are ordered sequentially.<br />
<br />
<span style="font-weight: bold;">   2. Set the target output formats for specifying current timestamps:</span><br />
         1. CurrentTimestampFormat.Load is used when the Loader is operating in load or import mode.<br />
         2. CurrentTimestampFormat.JDBC is used when the Loader uses JDBC to insert, update, or delete values in the database.<br />
<br />
      The default target patterns in the Loader are as follows:<br />
<br />
        <div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>CurrentTimestampFormat.Load = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%h HOURS %m MINUTES %s SECONDS <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CurrentTimestampFormat.JDBC = CURRENT TIMESTAMP %Y YEARS %M MONTHS %D DAYS<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;%h HOURS %m MINUTES %s SECONDS</code></div></div>
<br />
      When you customize the CurrentTimestampFormat.Load and CurrentTimestampFormat.JDBC properties, you should make sure that the syntax of the resulting statement is valid for the given database management system.<br />
<br />
      The CurrentTimestampLiteral property is used by the Loader to make an early determination of whether the value for the timestamp column is in a current-timestamp format, thus avoiding expensive computations to determine that the value is not a string representation of timestamp.<br />
<span style="font-weight: bold;"><br />
        CurrentTimestampLiteral = CURRENT TIMESTAMP</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Viewing and Updating the Incident Package Activity Log]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2177</link>
			<pubDate>Thu, 05 Nov 2009 15:45:34 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2177</guid>
			<description><![CDATA[Viewing and Updating the Incident Package Activity Log<br />
<br />
The Support Workbench maintains an activity log for each incident package. Most activities that you perform on a package, such as adding or removing files or creating a package zip file, are recorded in the log. You can also add your own notes to the log. This is especially useful if more than one database administrator is working with packages.<br />
<br />
<span style="font-weight: bold;">To view and update the incident package activity log:</span><br />
<br />
   1.      Access the Package Details page for the desired incident package.<br />
<br />
   <br />
   2.      Click the Activity Log link to view the Activity Log subpage.<br />
<br />
      The activity log is displayed.<br />
<br />
   3.      To add your own note to the activity log, enter text into the Note field, and then click Add Note.<br />
<br />
      Your note is timestamped and appended to the list.]]></description>
			<content:encoded><![CDATA[Viewing and Updating the Incident Package Activity Log<br />
<br />
The Support Workbench maintains an activity log for each incident package. Most activities that you perform on a package, such as adding or removing files or creating a package zip file, are recorded in the log. You can also add your own notes to the log. This is especially useful if more than one database administrator is working with packages.<br />
<br />
<span style="font-weight: bold;">To view and update the incident package activity log:</span><br />
<br />
   1.      Access the Package Details page for the desired incident package.<br />
<br />
   <br />
   2.      Click the Activity Log link to view the Activity Log subpage.<br />
<br />
      The activity log is displayed.<br />
<br />
   3.      To add your own note to the activity log, enter text into the Note field, and then click Add Note.<br />
<br />
      Your note is timestamped and appended to the list.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Removing Incident Package Files]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2176</link>
			<pubDate>Thu, 05 Nov 2009 15:44:56 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2176</guid>
			<description><![CDATA[Removing Incident Package Files<br />
<br />
You can remove one or more files of any type from the incident package.<br />
<br />
<span style="font-weight: bold;">To remove incident package files:</span><br />
<br />
   1.      Access the Customize Package page for the desired incident package.<br />
<br />
   2.      Click the Files link to view the Files subpage.<br />
<br />
      A list of files in the package is displayed.<br />
<br />
      If you have not yet generated a physical file for this package, all package files are displayed in the list. If you have already generated a physical file, a View list appears above the files list. It enables you to choose between viewing only incremental package contents or the full package contents. The default selection is incremental package contents. This default selection displays only those package files that were created or modified since the last time that a physical file was generated for the package. Select Full package contents from the View list to view all package files.<br />
   3.      Select the files to remove, and then click Exclude.<br />
<span style="font-weight: bold;"><br />
      Note:</span><br />
      If you do not see the desired files, they may be on another page. Click the Next link to view the next page. Continue clicking Next, or select from the list of file numbers (to the left of the Next link) until you see the desired files. You can then select the files and click Remove.]]></description>
			<content:encoded><![CDATA[Removing Incident Package Files<br />
<br />
You can remove one or more files of any type from the incident package.<br />
<br />
<span style="font-weight: bold;">To remove incident package files:</span><br />
<br />
   1.      Access the Customize Package page for the desired incident package.<br />
<br />
   2.      Click the Files link to view the Files subpage.<br />
<br />
      A list of files in the package is displayed.<br />
<br />
      If you have not yet generated a physical file for this package, all package files are displayed in the list. If you have already generated a physical file, a View list appears above the files list. It enables you to choose between viewing only incremental package contents or the full package contents. The default selection is incremental package contents. This default selection displays only those package files that were created or modified since the last time that a physical file was generated for the package. Select Full package contents from the View list to view all package files.<br />
   3.      Select the files to remove, and then click Exclude.<br />
<span style="font-weight: bold;"><br />
      Note:</span><br />
      If you do not see the desired files, they may be on another page. Click the Next link to view the next page. Continue clicking Next, or select from the list of file numbers (to the left of the Next link) until you see the desired files. You can then select the files and click Remove.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Setting Incident Packaging Preferences]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2175</link>
			<pubDate>Thu, 05 Nov 2009 15:44:05 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2175</guid>
			<description><![CDATA[Setting Incident Packaging Preferences<br />
<br />
This section provides instructions for setting incident packaging preferences. Examples of incident packaging preferences include the number of days to retain incident information, and the number of leading and trailing incidents to include in a package for each problem. (By default, if a problem has many incidents, only the first three and last three incidents are packaged.) You can change these and other incident packaging preferences with Enterprise Manager or with the ADRCI utility.<br />
<br />
<span style="font-weight: bold;">To set incident packaging preferences with Enterprise Manager:</span><br />
<br />
   1.      Access the Support Workbench home page.<br />
<br />
     <br />
   2.      In the Related Links section at the bottom of the page, click Incident Packaging Configuration.<br />
<br />
      The View Incident Packaging Configuration page appears. Click Help to view descriptions of the settings on this page.<br />
   3.      Click Edit.<br />
<br />
      The Edit Incident Packaging Configuration page appears.<br />
   4.      Edit settings, and then click OK to apply changes.]]></description>
			<content:encoded><![CDATA[Setting Incident Packaging Preferences<br />
<br />
This section provides instructions for setting incident packaging preferences. Examples of incident packaging preferences include the number of days to retain incident information, and the number of leading and trailing incidents to include in a package for each problem. (By default, if a problem has many incidents, only the first three and last three incidents are packaged.) You can change these and other incident packaging preferences with Enterprise Manager or with the ADRCI utility.<br />
<br />
<span style="font-weight: bold;">To set incident packaging preferences with Enterprise Manager:</span><br />
<br />
   1.      Access the Support Workbench home page.<br />
<br />
     <br />
   2.      In the Related Links section at the bottom of the page, click Incident Packaging Configuration.<br />
<br />
      The View Incident Packaging Configuration page appears. Click Help to view descriptions of the settings on this page.<br />
   3.      Click Edit.<br />
<br />
      The Edit Incident Packaging Configuration page appears.<br />
   4.      Edit settings, and then click OK to apply changes.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Custom Packaging]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2174</link>
			<pubDate>Thu, 05 Nov 2009 15:42:42 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2174</guid>
			<description><![CDATA[Custom Packaging<br />
<br />
This is the more manual method, with more steps. It is intended for expert Support Workbench users who want more control over the packaging process. With custom packaging, you can create a new package with one or more problems, or you can add one or more problems to an existing package. You can then perform a variety of operations on the new or updated package, including:<br />
<br />
    *      Adding or removing problems or incidents<br />
    *      Adding, editing, or removing trace files in the package<br />
    *      Adding or removing external files of any type<br />
    *      Adding other diagnostic data such as SQL test cases<br />
    *      Manually finalizing the package and then viewing package contents to determine if you must edit or remove sensitive data or remove files to reduce package size.<br />
<br />
You might conduct these operations over a number of days, before deciding that you have enough diagnostic information to send to Oracle Support.<br />
<br />
With custom packaging, you create the zip file and request upload to Oracle Support as two separate steps. Each of these steps can be performed immediately or scheduled for a future date and time.]]></description>
			<content:encoded><![CDATA[Custom Packaging<br />
<br />
This is the more manual method, with more steps. It is intended for expert Support Workbench users who want more control over the packaging process. With custom packaging, you can create a new package with one or more problems, or you can add one or more problems to an existing package. You can then perform a variety of operations on the new or updated package, including:<br />
<br />
    *      Adding or removing problems or incidents<br />
    *      Adding, editing, or removing trace files in the package<br />
    *      Adding or removing external files of any type<br />
    *      Adding other diagnostic data such as SQL test cases<br />
    *      Manually finalizing the package and then viewing package contents to determine if you must edit or remove sensitive data or remove files to reduce package size.<br />
<br />
You might conduct these operations over a number of days, before deciding that you have enough diagnostic information to send to Oracle Support.<br />
<br />
With custom packaging, you create the zip file and request upload to Oracle Support as two separate steps. Each of these steps can be performed immediately or scheduled for a future date and time.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quick Packaging]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2173</link>
			<pubDate>Thu, 05 Nov 2009 15:42:01 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2173</guid>
			<description><![CDATA[<span style="font-weight: bold;">Quick Packaging</span><br />
<br />
This is the more automated method with a minimum of steps, organized in a guided workflow (a wizard). You select a single problem, provide a package name and description, and then schedule upload of the package contents, either immediately or at a specified date and time. The Support Workbench automatically places diagnostic data related to the problem into the package, finalizes the package, creates the zip file, and then uploads the file. With this method, you do not have the opportunity to add, edit, or remove package files or add other diagnostic data such as SQL test cases. However, it is the simplest and quickest way to get first-failure diagnostic data to Oracle Support.<br />
<br />
Note that when quick packaging is complete, the package that was created by the wizard remains. You can then modify the package with custom packaging operations at a later time and manually reupload.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Quick Packaging</span><br />
<br />
This is the more automated method with a minimum of steps, organized in a guided workflow (a wizard). You select a single problem, provide a package name and description, and then schedule upload of the package contents, either immediately or at a specified date and time. The Support Workbench automatically places diagnostic data related to the problem into the package, finalizes the package, creates the zip file, and then uploads the file. With this method, you do not have the opportunity to add, edit, or remove package files or add other diagnostic data such as SQL test cases. However, it is the simplest and quickest way to get first-failure diagnostic data to Oracle Support.<br />
<br />
Note that when quick packaging is complete, the package that was created by the wizard remains. You can then modify the package with custom packaging operations at a later time and manually reupload.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Correlated Diagnostic Data in Incident Packages]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2172</link>
			<pubDate>Thu, 05 Nov 2009 15:39:24 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2172</guid>
			<description><![CDATA[Correlated Diagnostic Data in Incident Packages<br />
<br />
To improve the diagnosability of a problem, it is sometimes necessary to examine not only diagnostic data that is directly related to the problem, but also diagnostic data that is correlated with the directly related data. Diagnostic data can be correlated by time, by process ID, or by other criteria. For example, when examining an incident, it may be helpful to also examine an incident that occurred five minutes after the original incident. Similarly, while it is clear that the diagnostic data for an incident should include the trace file for the Oracle Database process that was running when the incident occurred, it might be helpful to also include trace files for other processes that are related to the original process.<br />
<br />
Thus, when problems and their associated incidents are added to a package, any correlated incidents are added at the same time, with their associated trace files.<br />
<br />
During the process of creating the physical file for a package, the Support Workbench calls upon the Incident Packaging Service to finalize the package. Finalizing means adding to the package any additional trace files that are correlated by time to incidents in the package, and adding other diagnostic information such as the alert log, health checker reports, SQL test cases, configuration information, and so on. This means that the number of files in the zip file may be greater than the number of files that the Support Workbench had previously displayed as the package contents.<br />
<br />
The Incident Packaging Service follows a set of rules to determine the trace files in the ADR that are correlated to existing package data. You can modify some of those rules in the Incident Packaging Configuration page in Enterprise Manager.<br />
<br />
Because both initial package data and added correlated data may contain sensitive information, it is important to have an opportunity to remove or edit files that contain this information before uploading to Oracle Support. For this reason, the Support Workbench enables you to run a command that finalizes the package as a separate operation. After manually finalizing a package, you can examine the package contents, remove or edit files, and then generate and upload a zip file.<br />
<br />
<span style="font-weight: bold;">Note:</span><br />
Finalizing a package does not mean closing it to further modifications. You can continue to add diagnostic data to a finalized package. You can also finalize the same package multiple times. Each time that you finalize, any new correlated data is added.]]></description>
			<content:encoded><![CDATA[Correlated Diagnostic Data in Incident Packages<br />
<br />
To improve the diagnosability of a problem, it is sometimes necessary to examine not only diagnostic data that is directly related to the problem, but also diagnostic data that is correlated with the directly related data. Diagnostic data can be correlated by time, by process ID, or by other criteria. For example, when examining an incident, it may be helpful to also examine an incident that occurred five minutes after the original incident. Similarly, while it is clear that the diagnostic data for an incident should include the trace file for the Oracle Database process that was running when the incident occurred, it might be helpful to also include trace files for other processes that are related to the original process.<br />
<br />
Thus, when problems and their associated incidents are added to a package, any correlated incidents are added at the same time, with their associated trace files.<br />
<br />
During the process of creating the physical file for a package, the Support Workbench calls upon the Incident Packaging Service to finalize the package. Finalizing means adding to the package any additional trace files that are correlated by time to incidents in the package, and adding other diagnostic information such as the alert log, health checker reports, SQL test cases, configuration information, and so on. This means that the number of files in the zip file may be greater than the number of files that the Support Workbench had previously displayed as the package contents.<br />
<br />
The Incident Packaging Service follows a set of rules to determine the trace files in the ADR that are correlated to existing package data. You can modify some of those rules in the Incident Packaging Configuration page in Enterprise Manager.<br />
<br />
Because both initial package data and added correlated data may contain sensitive information, it is important to have an opportunity to remove or edit files that contain this information before uploading to Oracle Support. For this reason, the Support Workbench enables you to run a command that finalizes the package as a separate operation. After manually finalizing a package, you can examine the package contents, remove or edit files, and then generate and upload a zip file.<br />
<br />
<span style="font-weight: bold;">Note:</span><br />
Finalizing a package does not mean closing it to further modifications. You can continue to add diagnostic data to a finalized package. You can also finalize the same package multiple times. Each time that you finalize, any new correlated data is added.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Incident Packages]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2171</link>
			<pubDate>Thu, 05 Nov 2009 15:38:44 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2171</guid>
			<description><![CDATA[Incident Packages<br />
<br />
For the customized approach to uploading diagnostic data to Oracle Support, you first collect the data into an intermediate logical structure called an incident package (package). A package is a collection of metadata that is stored in the Automatic Diagnostic Repository (ADR) and that points to diagnostic data files and other files both in and out of the ADR. When you create a package, you select one or more problems to add to the package. The Support Workbench then automatically adds to the package the problem information, incident information, and diagnostic data (such as trace files and dumps) associated with the selected problems. Because a problem can have many incidents (many occurrences of the same problem), by default only the first three and last three incidents for each problem are added to the package, excluding any incidents that are over 90 days old. You can change these default numbers on the Incident Packaging Configuration page of the Support Workbench.<br />
<br />
After the package is created, you can add any type of external file to the package, remove selected files from the package, or edit selected files in the package to remove sensitive data. As you add and remove package contents, only the package metadata is modified.<br />
<br />
When you are ready to upload the diagnostic data to Oracle Support, you first create a zip file that contains all the files referenced by the package metadata. You then upload the zip file through Oracle Configuration Manager.<br />
<span style="font-weight: bold;"><br />
Note:</span><br />
If you do not have Oracle Configuration Manager installed and properly configured, you must upload the zip file manually through OracleMetaLink.]]></description>
			<content:encoded><![CDATA[Incident Packages<br />
<br />
For the customized approach to uploading diagnostic data to Oracle Support, you first collect the data into an intermediate logical structure called an incident package (package). A package is a collection of metadata that is stored in the Automatic Diagnostic Repository (ADR) and that points to diagnostic data files and other files both in and out of the ADR. When you create a package, you select one or more problems to add to the package. The Support Workbench then automatically adds to the package the problem information, incident information, and diagnostic data (such as trace files and dumps) associated with the selected problems. Because a problem can have many incidents (many occurrences of the same problem), by default only the first three and last three incidents for each problem are added to the package, excluding any incidents that are over 90 days old. You can change these default numbers on the Incident Packaging Configuration page of the Support Workbench.<br />
<br />
After the package is created, you can add any type of external file to the package, remove selected files from the package, or edit selected files in the package to remove sensitive data. As you add and remove package contents, only the package metadata is modified.<br />
<br />
When you are ready to upload the diagnostic data to Oracle Support, you first create a zip file that contains all the files referenced by the package metadata. You then upload the zip file through Oracle Configuration Manager.<br />
<span style="font-weight: bold;"><br />
Note:</span><br />
If you do not have Oracle Configuration Manager installed and properly configured, you must upload the zip file manually through OracleMetaLink.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Repairing Data Corruptions with the Data Recovery Advisor]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2170</link>
			<pubDate>Thu, 05 Nov 2009 15:35:04 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2170</guid>
			<description><![CDATA[Repairing Data Corruptions with the Data Recovery Advisor<br />
<br />
You use the Data Recovery Advisor to repair data block corruptions, undo corruptions, data dictionary corruptions, and more. The Data Recovery Advisor integrates with the Enterprise Manager Support Workbench (Support Workbench), with the Health Monitor, and with the RMAN utility to display data corruption problems, assess the extent of each problem (critical, high priority, low priority), describe the impact of a problem, recommend repair options, conduct a feasibility check of the customer-chosen option, and automate the repair process.<br />
<br />
The Data Recovery Advisor is automatically recommended by and accessible from the Support Workbench when you are viewing:<br />
<br />
    *      Problem details for a problem that is related to a data corruption or other data failure.<br />
    *      Health checker findings that are related to a data corruption or other data failure.<br />
<br />
The Data Recovery Advisor is also available from the Advisor Central page. A link to this page can be found in the Related Links section of the Database Home page and of the Performance page.<br />
<br />
<span style="font-weight: bold;">Note:</span><br />
The Data Recovery Advisor is available only when you are connected as SYSDBA.<br />
<br />
You access the Data Recovery Advisor from the Support Workbench in the following ways:<br />
<br />
    *      From the Problem Details page<br />
<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/dra_access_1.gif" border="0" alt="[Image: dra_access_1.gif&#93;" /><br />
<br />
Click the Data Recovery Advisor link in the Investigate and Resolve section.<br />
<br />
From the Checker Findings subpage of the Support Workbench home page<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/dra_access_2.gif" border="0" alt="[Image: dra_access_2.gif&#93;" /><br />
Select one or more data corruption findings and then click Launch Recovery Advisor.]]></description>
			<content:encoded><![CDATA[Repairing Data Corruptions with the Data Recovery Advisor<br />
<br />
You use the Data Recovery Advisor to repair data block corruptions, undo corruptions, data dictionary corruptions, and more. The Data Recovery Advisor integrates with the Enterprise Manager Support Workbench (Support Workbench), with the Health Monitor, and with the RMAN utility to display data corruption problems, assess the extent of each problem (critical, high priority, low priority), describe the impact of a problem, recommend repair options, conduct a feasibility check of the customer-chosen option, and automate the repair process.<br />
<br />
The Data Recovery Advisor is automatically recommended by and accessible from the Support Workbench when you are viewing:<br />
<br />
    *      Problem details for a problem that is related to a data corruption or other data failure.<br />
    *      Health checker findings that are related to a data corruption or other data failure.<br />
<br />
The Data Recovery Advisor is also available from the Advisor Central page. A link to this page can be found in the Related Links section of the Database Home page and of the Performance page.<br />
<br />
<span style="font-weight: bold;">Note:</span><br />
The Data Recovery Advisor is available only when you are connected as SYSDBA.<br />
<br />
You access the Data Recovery Advisor from the Support Workbench in the following ways:<br />
<br />
    *      From the Problem Details page<br />
<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/dra_access_1.gif" border="0" alt="[Image: dra_access_1.gif]" /><br />
<br />
Click the Data Recovery Advisor link in the Investigate and Resolve section.<br />
<br />
From the Checker Findings subpage of the Support Workbench home page<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/dra_access_2.gif" border="0" alt="[Image: dra_access_2.gif]" /><br />
Select one or more data corruption findings and then click Launch Recovery Advisor.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Viewing, Disabling, or Removing a SQL Patch]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2169</link>
			<pubDate>Thu, 05 Nov 2009 15:32:09 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2169</guid>
			<description><![CDATA[Viewing, Disabling, or Removing a SQL Patch<br />
<br />
After you apply a SQL patch with the SQL Repair Advisor, you may want to view it to confirm its presence, disable it, or remove it. One reason to remove a patch is if you install a later release of Oracle Database that fixes the bug that caused the failure in the patched SQL statement.<br />
<span style="font-weight: bold;"><br />
To view, disable, or remove a SQL patch:</span><br />
<br />
   1.      Access the Database Home page in Enterprise Manager.<br />
<br />
      For Oracle Enterprise Manager Database Control, see Oracle Database 2 Day DBA for instructions. For Oracle Enterprise Manager Grid Control, go to the desired database target.<br />
<br />
   2.      At the top of the page, click Server to display the Server page.<br />
<br />
   3.      In the Query Optimizer section, click SQL Plan Control.<br />
<br />
      The SQL Plan Control page appears. See the online help for information about this page.<br />
<br />
   4.      At the top of the page, click SQL Patch to display the SQL Patch subpage.<br />
<br />
      The SQL Patch subpage displays all SQL patches in the database.<br />
<br />
   5.      Locate the desired patch by examining the associated SQL text.<br />
<br />
      Click the SQL text to view the complete text of the statement.<br />
<br />
   6.      To disable the patch, select it, and then click Disable.<br />
<br />
      A confirmation message appears, and the patch status changes to DISABLED. You can later reenable the patch by selecting it and clicking Enable.<br />
<br />
   7.      To remove the patch, select it, and then click Drop.<br />
<br />
      A confirmation message appears.]]></description>
			<content:encoded><![CDATA[Viewing, Disabling, or Removing a SQL Patch<br />
<br />
After you apply a SQL patch with the SQL Repair Advisor, you may want to view it to confirm its presence, disable it, or remove it. One reason to remove a patch is if you install a later release of Oracle Database that fixes the bug that caused the failure in the patched SQL statement.<br />
<span style="font-weight: bold;"><br />
To view, disable, or remove a SQL patch:</span><br />
<br />
   1.      Access the Database Home page in Enterprise Manager.<br />
<br />
      For Oracle Enterprise Manager Database Control, see Oracle Database 2 Day DBA for instructions. For Oracle Enterprise Manager Grid Control, go to the desired database target.<br />
<br />
   2.      At the top of the page, click Server to display the Server page.<br />
<br />
   3.      In the Query Optimizer section, click SQL Plan Control.<br />
<br />
      The SQL Plan Control page appears. See the online help for information about this page.<br />
<br />
   4.      At the top of the page, click SQL Patch to display the SQL Patch subpage.<br />
<br />
      The SQL Patch subpage displays all SQL patches in the database.<br />
<br />
   5.      Locate the desired patch by examining the associated SQL text.<br />
<br />
      Click the SQL text to view the complete text of the statement.<br />
<br />
   6.      To disable the patch, select it, and then click Disable.<br />
<br />
      A confirmation message appears, and the patch status changes to DISABLED. You can later reenable the patch by selecting it and clicking Enable.<br />
<br />
   7.      To remove the patch, select it, and then click Drop.<br />
<br />
      A confirmation message appears.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Running the SQL Repair Advisor]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2168</link>
			<pubDate>Thu, 05 Nov 2009 15:31:00 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2168</guid>
			<description><![CDATA[Running the SQL Repair Advisor<br />
<br />
You run the SQL Repair Advisor from the Problem Details page of the Support Workbench. The instructions in this section assume that you were already notified of a critical error caused by your SQL statement and that you followed the workflow described in "Investigating, Reporting, and Resolving a Problem".<br />
<br />
<span style="font-weight: bold;">To run the SQL Repair Advisor:</span><br />
<br />
   1.      Access the Problem Details page for the problem that pertains to the failed SQL statement.<br />
<br />
      See "Viewing Problems with the Enterprise Manager Support Workbench" for instructions.<br />
   2.      In the Investigate and Resolve section, under the Self Service tab, under the Resolve heading, click SQL Repair Advisor.<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/sql_repair_advisor_results.gif" border="0" alt="[Image: sql_repair_advisor_results.gif&#93;" /><br />
<br />
      The SQL Repair Advisor page appears.<br />
   3.      Enter an optional task name, set an optional time limit for the advisor task, and adjust settings to schedule the advisor to run either immediately or at a future date and time.<br />
   4.      Click Submit.<br />
<br />
      A "processing" page appears. After a short delay, the SQL Repair Results page appears.<br />
      Description of sql_repair_advisor_results.gif follows<br />
      Description of the illustration sql_repair_advisor_results.gif<br />
<br />
      A check mark in the SQL Patch column indicates that a recommendation is present. The absence of a check mark in this column means that the SQL Repair Advisor was unable to devise a patch for the SQL statement.<br />
   5.      If a recommendation is present, click View to view the recommendation.<br />
<br />
      The Repair Recommendations page appears, showing the recommended patch for the statement.<br />
   6.      Click Implement.<br />
<br />
      The SQL Repair Results page returns, showing a confirmation message.<br />
   7.      (Optional) Click Verify using SQL Worksheet to run the statement in the SQL worksheet and verify that the patch successfully repaired the statement.]]></description>
			<content:encoded><![CDATA[Running the SQL Repair Advisor<br />
<br />
You run the SQL Repair Advisor from the Problem Details page of the Support Workbench. The instructions in this section assume that you were already notified of a critical error caused by your SQL statement and that you followed the workflow described in "Investigating, Reporting, and Resolving a Problem".<br />
<br />
<span style="font-weight: bold;">To run the SQL Repair Advisor:</span><br />
<br />
   1.      Access the Problem Details page for the problem that pertains to the failed SQL statement.<br />
<br />
      See "Viewing Problems with the Enterprise Manager Support Workbench" for instructions.<br />
   2.      In the Investigate and Resolve section, under the Self Service tab, under the Resolve heading, click SQL Repair Advisor.<br />
<img src="http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/img/sql_repair_advisor_results.gif" border="0" alt="[Image: sql_repair_advisor_results.gif]" /><br />
<br />
      The SQL Repair Advisor page appears.<br />
   3.      Enter an optional task name, set an optional time limit for the advisor task, and adjust settings to schedule the advisor to run either immediately or at a future date and time.<br />
   4.      Click Submit.<br />
<br />
      A "processing" page appears. After a short delay, the SQL Repair Results page appears.<br />
      Description of sql_repair_advisor_results.gif follows<br />
      Description of the illustration sql_repair_advisor_results.gif<br />
<br />
      A check mark in the SQL Patch column indicates that a recommendation is present. The absence of a check mark in this column means that the SQL Repair Advisor was unable to devise a patch for the SQL statement.<br />
   5.      If a recommendation is present, click View to view the recommendation.<br />
<br />
      The Repair Recommendations page appears, showing the recommended patch for the statement.<br />
   6.      Click Implement.<br />
<br />
      The SQL Repair Results page returns, showing a confirmation message.<br />
   7.      (Optional) Click Verify using SQL Worksheet to run the statement in the SQL worksheet and verify that the patch successfully repaired the statement.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[SQL Repair Advisor]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2167</link>
			<pubDate>Thu, 05 Nov 2009 15:29:45 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2167</guid>
			<description><![CDATA[SQL Repair Advisor<br />
<br />
You run the SQL Repair Advisor after a SQL statement fails with a critical error. The advisor analyzes the statement and in many cases recommends a patch to repair the statement. If you implement the recommendation, the applied SQL patch circumvents the failure by causing the query optimizer to choose an alternate execution plan for future executions.]]></description>
			<content:encoded><![CDATA[SQL Repair Advisor<br />
<br />
You run the SQL Repair Advisor after a SQL statement fails with a critical error. The advisor analyzes the statement and in many cases recommends a patch to repair the statement. If you implement the recommendation, the applied SQL patch circumvents the failure by causing the query optimizer to choose an alternate execution plan for future executions.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Repairing SQL Failures with the SQL Repair Advisor]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2166</link>
			<pubDate>Thu, 05 Nov 2009 15:29:26 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2166</guid>
			<description><![CDATA[Repairing SQL Failures with the SQL Repair Advisor<br />
<br />
In the rare case that a SQL statement fails with a critical error, you can run the SQL Repair Advisor to try to repair the failed statement.<br />
<br />
This section covers the following topics:<br />
<br />
   <span style="font-weight: bold;"> *      SQL Repair Advisor<br />
    *      Running the SQL Repair Advisor<br />
    *      Viewing, Disabling, or Removing a SQL Patch<br />
</span>]]></description>
			<content:encoded><![CDATA[Repairing SQL Failures with the SQL Repair Advisor<br />
<br />
In the rare case that a SQL statement fails with a critical error, you can run the SQL Repair Advisor to try to repair the failed statement.<br />
<br />
This section covers the following topics:<br />
<br />
   <span style="font-weight: bold;"> *      SQL Repair Advisor<br />
    *      Running the SQL Repair Advisor<br />
    *      Viewing, Disabling, or Removing a SQL Patch<br />
</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Health Check Parameters]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2165</link>
			<pubDate>Thu, 05 Nov 2009 15:28:04 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2165</guid>
			<description><![CDATA[<html>
<body>
<h2 id="insertedID5" class="sect2">Health Check Parameters Reference</h2><br />
<p>The following tables describe the parameters for those health checks that require them. Parameters with a default value of <code>(none)</code> are mandatory.</p>
<div class="tblformal"><a id="sthref750" name="sthref750"></a><a id="sthref751" name="sthref751"></a><br />
<p class="titleintable">Table 8-5 Parameters for Data Block Integrity Check</p>
<table class="Formal" title="Parameters for Data Block Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t32" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t32" align="left" valign="bottom">Type</th>
<th id="r1c3-t32" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t32" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t32" headers="r1c1-t32" align="left">
<p><code>BLC_DF_NUM</code></p>
<br />
</td>
<td headers="r2c1-t32 r1c2-t32" align="left">
<p>Number</p>
</td>
<td headers="r2c1-t32 r1c3-t32" align="left">
<p>(none)</p>
</td>
<td headers="r2c1-t32 r1c4-t32" align="left">
<p>Block data file number</p>
</td>
</tr>
<tr align="left" valign="top">
<td id="r3c1-t32" headers="r1c1-t32" align="left">
<p><code>BLC_BL_NUM</code></p>
<br />
</td>
<td headers="r3c1-t32 r1c2-t32" align="left">
<p>Number</p>
</td>
<td headers="r3c1-t32 r1c3-t32" align="left">
<p>(none)</p>
</td>
<td headers="r3c1-t32 r1c4-t32" align="left">
<p>Data block number</p>
</td>
</tr>
</tbody>
</table>
<br></div>
<br />
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref752" name="sthref752"></a><a id="sthref753" name="sthref753"></a><br />
<p class="titleintable">Table 8-6 Parameters for Redo Integrity Check</p>
<table class="Formal" title="Parameters for Redo Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t33" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t33" align="left" valign="bottom">Type</th>
<th id="r1c3-t33" align="left" valign="bottom">Default Value</th>
<br />
<th id="r1c4-t33" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t33" headers="r1c1-t33" align="left">
<p><code>SCN_TEXT</code></p>
</td>
<td headers="r2c1-t33 r1c2-t33" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t33 r1c3-t33" align="left">
<p>0</p>
<br />
</td>
<td headers="r2c1-t33 r1c4-t33" align="left">
<p>SCN of the latest good redo (if known)</p>
</td>
</tr>
</tbody>
</table>
<br></div>
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref754" name="sthref754"></a><a id="sthref755" name="sthref755"></a><br />
<p class="titleintable">Table 8-7 Parameters for Undo Segment Integrity Check</p>
<table class="Formal" title="Parameters for Undo Segment Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t34" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t34" align="left" valign="bottom">Type</th>
<th id="r1c3-t34" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t34" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t34" headers="r1c1-t34" align="left">
<p><code>USN_NUMBER</code></p>
<br />
</td>
<td headers="r2c1-t34 r1c2-t34" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t34 r1c3-t34" align="left">
<p>(none)</p>
</td>
<td headers="r2c1-t34 r1c4-t34" align="left">
<p>Undo segment number</p>
</td>
</tr>
</tbody>
</table>
<br></div>
<br />
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref756" name="sthref756"></a><a id="sthref757" name="sthref757"></a><br />
<p class="titleintable">Table 8-8 Parameters for Transaction Integrity Check</p>
<table class="Formal" title="Parameters for Transaction Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t35" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t35" align="left" valign="bottom">Type</th>
<th id="r1c3-t35" align="left" valign="bottom">Default Value</th>
<br />
<th id="r1c4-t35" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t35" headers="r1c1-t35" align="left">
<p><code>TXN_ID</code></p>
</td>
<td headers="r2c1-t35 r1c2-t35" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t35 r1c3-t35" align="left">
<p>(none)</p>
<br />
</td>
<td headers="r2c1-t35 r1c4-t35" align="left">
<p>Transaction ID</p>
</td>
</tr>
</tbody>
</table>
<br></div>
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref758" name="sthref758"></a><a id="sthref759" name="sthref759"></a><br />
<p class="titleintable">Table 8-9 Parameters for Dictionary Integrity Check</p>
<table class="Formal" title="Parameters for Dictionary Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t36" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t36" align="left" valign="bottom">Type</th>
<th id="r1c3-t36" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t36" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t36" headers="r1c1-t36" align="left">
<p><code>CHECK_MASK</code></p>
<br />
</td>
<td headers="r2c1-t36 r1c2-t36" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t36 r1c3-t36" align="left">
<p><code>ALL</code></p>
</td>
<td headers="r2c1-t36 r1c4-t36" align="left">
<p>Possible values are:</p>
<ul>
<li>
<p><code>COLUMN_CHECKS</code>—Run column checks only. Verify column-level constraints in the core tables.</p>
<br />
</li>
<li>
<p><code>ROW_CHECKS</code>—Run row checks only. Verify row-level constraints in the core tables.</p>
</li>
<li>
<p><code>REFERENTIAL_CHECKS</code>—Run referential checks only. Verify referential constraints in the core tables.</p>
</li>
<li>
<p><code>ALL</code>—Run all checks.</p>
</li>
</ul>
<br />
</td>
</tr>
<tr align="left" valign="top">
<td id="r3c1-t36" headers="r1c1-t36" align="left">
<p><code>TABLE_NAME</code></p>
</td>
<td headers="r3c1-t36 r1c2-t36" align="left">
<p>Text</p>
</td>
<td headers="r3c1-t36 r1c3-t36" align="left">
<p><code>ALL_CORE_TABLES</code></p>
</td>
<td headers="r3c1-t36 r1c4-t36" align="left">
<p>Name of a single core table to check. If omitted, all core tables are checked.</p>
<br />
</td>
</tr>
</tbody>
</table>
<br />
<br />
</body>
</html>]]></description>
			<content:encoded><![CDATA[<html>
<body>
<h2 id="insertedID5" class="sect2">Health Check Parameters Reference</h2><br />
<p>The following tables describe the parameters for those health checks that require them. Parameters with a default value of <code>(none)</code> are mandatory.</p>
<div class="tblformal"><a id="sthref750" name="sthref750"></a><a id="sthref751" name="sthref751"></a><br />
<p class="titleintable">Table 8-5 Parameters for Data Block Integrity Check</p>
<table class="Formal" title="Parameters for Data Block Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t32" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t32" align="left" valign="bottom">Type</th>
<th id="r1c3-t32" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t32" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t32" headers="r1c1-t32" align="left">
<p><code>BLC_DF_NUM</code></p>
<br />
</td>
<td headers="r2c1-t32 r1c2-t32" align="left">
<p>Number</p>
</td>
<td headers="r2c1-t32 r1c3-t32" align="left">
<p>(none)</p>
</td>
<td headers="r2c1-t32 r1c4-t32" align="left">
<p>Block data file number</p>
</td>
</tr>
<tr align="left" valign="top">
<td id="r3c1-t32" headers="r1c1-t32" align="left">
<p><code>BLC_BL_NUM</code></p>
<br />
</td>
<td headers="r3c1-t32 r1c2-t32" align="left">
<p>Number</p>
</td>
<td headers="r3c1-t32 r1c3-t32" align="left">
<p>(none)</p>
</td>
<td headers="r3c1-t32 r1c4-t32" align="left">
<p>Data block number</p>
</td>
</tr>
</tbody>
</table>
<br></div>
<br />
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref752" name="sthref752"></a><a id="sthref753" name="sthref753"></a><br />
<p class="titleintable">Table 8-6 Parameters for Redo Integrity Check</p>
<table class="Formal" title="Parameters for Redo Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t33" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t33" align="left" valign="bottom">Type</th>
<th id="r1c3-t33" align="left" valign="bottom">Default Value</th>
<br />
<th id="r1c4-t33" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t33" headers="r1c1-t33" align="left">
<p><code>SCN_TEXT</code></p>
</td>
<td headers="r2c1-t33 r1c2-t33" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t33 r1c3-t33" align="left">
<p>0</p>
<br />
</td>
<td headers="r2c1-t33 r1c4-t33" align="left">
<p>SCN of the latest good redo (if known)</p>
</td>
</tr>
</tbody>
</table>
<br></div>
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref754" name="sthref754"></a><a id="sthref755" name="sthref755"></a><br />
<p class="titleintable">Table 8-7 Parameters for Undo Segment Integrity Check</p>
<table class="Formal" title="Parameters for Undo Segment Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t34" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t34" align="left" valign="bottom">Type</th>
<th id="r1c3-t34" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t34" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t34" headers="r1c1-t34" align="left">
<p><code>USN_NUMBER</code></p>
<br />
</td>
<td headers="r2c1-t34 r1c2-t34" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t34 r1c3-t34" align="left">
<p>(none)</p>
</td>
<td headers="r2c1-t34 r1c4-t34" align="left">
<p>Undo segment number</p>
</td>
</tr>
</tbody>
</table>
<br></div>
<br />
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref756" name="sthref756"></a><a id="sthref757" name="sthref757"></a><br />
<p class="titleintable">Table 8-8 Parameters for Transaction Integrity Check</p>
<table class="Formal" title="Parameters for Transaction Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t35" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t35" align="left" valign="bottom">Type</th>
<th id="r1c3-t35" align="left" valign="bottom">Default Value</th>
<br />
<th id="r1c4-t35" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t35" headers="r1c1-t35" align="left">
<p><code>TXN_ID</code></p>
</td>
<td headers="r2c1-t35 r1c2-t35" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t35 r1c3-t35" align="left">
<p>(none)</p>
<br />
</td>
<td headers="r2c1-t35 r1c4-t35" align="left">
<p>Transaction ID</p>
</td>
</tr>
</tbody>
</table>
<br></div>
&lt;!-- class="tblformal" --&gt;<br />
<div class="tblformal"><a id="sthref758" name="sthref758"></a><a id="sthref759" name="sthref759"></a><br />
<p class="titleintable">Table 8-9 Parameters for Dictionary Integrity Check</p>
<table class="Formal" title="Parameters for Dictionary Integrity Check" summary="This table contains 4 columns: parameter name, type, default value, description." dir="ltr" frame="hsides" border="1" rules="groups" cellpadding="3" cellspacing="0" width="100%">
<col width="21%"><br />
<col width="12%"><br />
<col width="23%"><br />
<br />
<col width="*"><br />
<thead>
<tr align="left" valign="top">
<th id="r1c1-t36" align="left" valign="bottom">Parameter Name</th>
<th id="r1c2-t36" align="left" valign="bottom">Type</th>
<th id="r1c3-t36" align="left" valign="bottom">Default Value</th>
<th id="r1c4-t36" align="left" valign="bottom">Description</th>
</tr>
</thead>
<tbody>
<tr align="left" valign="top">
<td id="r2c1-t36" headers="r1c1-t36" align="left">
<p><code>CHECK_MASK</code></p>
<br />
</td>
<td headers="r2c1-t36 r1c2-t36" align="left">
<p>Text</p>
</td>
<td headers="r2c1-t36 r1c3-t36" align="left">
<p><code>ALL</code></p>
</td>
<td headers="r2c1-t36 r1c4-t36" align="left">
<p>Possible values are:</p>
<ul>
<li>
<p><code>COLUMN_CHECKS</code>—Run column checks only. Verify column-level constraints in the core tables.</p>
<br />
</li>
<li>
<p><code>ROW_CHECKS</code>—Run row checks only. Verify row-level constraints in the core tables.</p>
</li>
<li>
<p><code>REFERENTIAL_CHECKS</code>—Run referential checks only. Verify referential constraints in the core tables.</p>
</li>
<li>
<p><code>ALL</code>—Run all checks.</p>
</li>
</ul>
<br />
</td>
</tr>
<tr align="left" valign="top">
<td id="r3c1-t36" headers="r1c1-t36" align="left">
<p><code>TABLE_NAME</code></p>
</td>
<td headers="r3c1-t36 r1c2-t36" align="left">
<p>Text</p>
</td>
<td headers="r3c1-t36 r1c3-t36" align="left">
<p><code>ALL_CORE_TABLES</code></p>
</td>
<td headers="r3c1-t36 r1c4-t36" align="left">
<p>Name of a single core table to check. If omitted, all core tables are checked.</p>
<br />
</td>
</tr>
</tbody>
</table>
<br />
<br />
</body>
</html>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Health Monitor Views]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2164</link>
			<pubDate>Thu, 05 Nov 2009 15:26:40 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2164</guid>
			<description><![CDATA[Health Monitor Views<br />
<br />
Instead of requesting a checker report, you can view the results of a specific checker run by directly querying the ADR data from which reports are created. This data is available through the views V&#36;HM_RUN, V&#36;HM_FINDING, and V&#36;HM_RECOMMENDATION.<br />
<br />
The following example queries the V&#36;HM_RUN view to determine a history of checker runs:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT run_id, name, check_name, run_mode, src_incident FROM v&#36;hm_run;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;RUN_ID NAME&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHECK_NAME&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RUN_MODE SRC_INCIDENT<br />
---------- ------------ ---------------------------------- -------- ------------<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 HM_RUN_1&nbsp;&nbsp;&nbsp;&nbsp; DB Structure Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 101 HM_RUN_101&nbsp;&nbsp; Transaction Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6073<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 121 TXNCHK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Transaction Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 181 HMR_tab&#36;&nbsp;&nbsp;&nbsp;&nbsp; Dictionary Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 981 Proct_ts&#36;&nbsp;&nbsp;&nbsp;&nbsp;Dictionary Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1041 HM_RUN_1041&nbsp;&nbsp;DB Structure Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1061 HM_RUN_1061&nbsp;&nbsp;Data Block Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7418</code></div></div>
The next example queries the V&#36;HM_FINDING view to obtain finding details for the reactive data block check with RUN_ID 1061:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT type, description FROM v&#36;hm_finding WHERE run_id = 1061;<br />
<br />
TYPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DESCRIPTION<br />
------------- -----------------------------------------<br />
FAILURE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Block 64349 in datafile 1: '/ade/sfogel_e<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mdb/oracle/dbs/t_db1.f' is media corrupt<br />
 <br />
FAILURE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Block 64351 in datafile 1: '/ade/sfogel_e<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mdb/oracle/dbs/t_db1.f' is media corrupt</code></div></div>
]]></description>
			<content:encoded><![CDATA[Health Monitor Views<br />
<br />
Instead of requesting a checker report, you can view the results of a specific checker run by directly querying the ADR data from which reports are created. This data is available through the views V&#36;HM_RUN, V&#36;HM_FINDING, and V&#36;HM_RECOMMENDATION.<br />
<br />
The following example queries the V&#36;HM_RUN view to determine a history of checker runs:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT run_id, name, check_name, run_mode, src_incident FROM v&#36;hm_run;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;RUN_ID NAME&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHECK_NAME&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RUN_MODE SRC_INCIDENT<br />
---------- ------------ ---------------------------------- -------- ------------<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 HM_RUN_1&nbsp;&nbsp;&nbsp;&nbsp; DB Structure Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 101 HM_RUN_101&nbsp;&nbsp; Transaction Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6073<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 121 TXNCHK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Transaction Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 181 HMR_tab&#36;&nbsp;&nbsp;&nbsp;&nbsp; Dictionary Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 981 Proct_ts&#36;&nbsp;&nbsp;&nbsp;&nbsp;Dictionary Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MANUAL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1041 HM_RUN_1041&nbsp;&nbsp;DB Structure Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1061 HM_RUN_1061&nbsp;&nbsp;Data Block Integrity Check&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REACTIVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7418</code></div></div>
The next example queries the V&#36;HM_FINDING view to obtain finding details for the reactive data block check with RUN_ID 1061:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SELECT type, description FROM v&#36;hm_finding WHERE run_id = 1061;<br />
<br />
TYPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DESCRIPTION<br />
------------- -----------------------------------------<br />
FAILURE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Block 64349 in datafile 1: '/ade/sfogel_e<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mdb/oracle/dbs/t_db1.f' is media corrupt<br />
 <br />
FAILURE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Block 64351 in datafile 1: '/ade/sfogel_e<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mdb/oracle/dbs/t_db1.f' is media corrupt</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Viewing Reports Using the ADRCI Utility]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2163</link>
			<pubDate>Thu, 05 Nov 2009 15:25:52 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2163</guid>
			<description><![CDATA[Viewing Reports Using the ADRCI Utility<br />
<br />
You can create and view Health Monitor checker reports using the ADRCI utility.<br />
<br />
<span style="font-weight: bold;">To create and view a checker report using ADRCI</span><br />
<br />
   1.      Ensure that operating system environment variables (such as ORACLE_HOME) are set properly, and then enter the following command at the operating system command prompt:<br />
<br />
  <blockquote><cite>Quote:</cite>    ADRCI<br />
<br />
      The utility starts and displays the following prompt:<br />
<br />
      adrci>></blockquote>
<br />
      Optionally, you can change the current ADR home. Use the SHOW HOMES command to list all ADR homes, and the SET HOMEPATH command to change the current ADR home. See Oracle Database Utilities for more information.<br />
<br />
   2.      Enter the following command:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>show hm_run</code></div></div>
<br />
      This command lists all the checker runs (stored in V&#36;HM_RUN) registered in the ADR repository.<br />
<br />
   3.      Locate the checker run for which you want to create a report and note the checker run name. The REPORT_FILE field contains a filename if a report already exists for this checker run. Otherwise, generate the report with the following command:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>create report hm_run run_name</code></div></div>
<br />
   4.      To view the report, enter the following command:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>show report hm_run run_name</code></div></div>
]]></description>
			<content:encoded><![CDATA[Viewing Reports Using the ADRCI Utility<br />
<br />
You can create and view Health Monitor checker reports using the ADRCI utility.<br />
<br />
<span style="font-weight: bold;">To create and view a checker report using ADRCI</span><br />
<br />
   1.      Ensure that operating system environment variables (such as ORACLE_HOME) are set properly, and then enter the following command at the operating system command prompt:<br />
<br />
  <blockquote><cite>Quote:</cite>    ADRCI<br />
<br />
      The utility starts and displays the following prompt:<br />
<br />
      adrci>></blockquote>
<br />
      Optionally, you can change the current ADR home. Use the SHOW HOMES command to list all ADR homes, and the SET HOMEPATH command to change the current ADR home. See Oracle Database Utilities for more information.<br />
<br />
   2.      Enter the following command:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>show hm_run</code></div></div>
<br />
      This command lists all the checker runs (stored in V&#36;HM_RUN) registered in the ADR repository.<br />
<br />
   3.      Locate the checker run for which you want to create a report and note the checker run name. The REPORT_FILE field contains a filename if a report already exists for this checker run. Otherwise, generate the report with the following command:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>create report hm_run run_name</code></div></div>
<br />
   4.      To view the report, enter the following command:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>show report hm_run run_name</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Viewing Reports Using DBMS_HM]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2162</link>
			<pubDate>Thu, 05 Nov 2009 15:24:35 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2162</guid>
			<description><![CDATA[Viewing Reports Using DBMS_HM<br />
<br />
You can view Health Monitor checker reports with the DBMS_HM package function GET_RUN_REPORT. This function enables you to request HTML, XML, or text formatting. The default format is text, as shown in the following SQL*Plus example:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SET LONG 100000<br />
SET LONGCHUNKSIZE 1000<br />
SET PAGESIZE 1000<br />
SET LINESIZE 512<br />
SELECT DBMS_HM.GET_RUN_REPORT('HM_RUN_1061') FROM DUAL;<br />
<br />
DBMS_HM.GET_RUN_REPORT('HM_RUN_1061')<br />
-----------------------------------------------------------------------<br />
 <br />
 Run Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : HM_RUN_1061<br />
 Run Id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 1061<br />
 Check Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Data Block Integrity Check<br />
 Mode&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : REACTIVE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : COMPLETED<br />
 Start Time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2007-05-12 22:11:02.032292 -07:00<br />
 End Time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2007-05-12 22:11:20.835135 -07:00<br />
 Error Encountered&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 0<br />
 Source Incident Id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 7418<br />
 Number of Incidents Created&nbsp;&nbsp;: 0<br />
 <br />
Input Paramters for the Run<br />
 BLC_DF_NUM=1<br />
 BLC_BL_NUM=64349<br />
 <br />
Run Findings And Recommendations<br />
 Finding<br />
 Finding Name&nbsp;&nbsp;: Media Block Corruption<br />
 Finding ID&nbsp;&nbsp;&nbsp;&nbsp;: 1065<br />
 Type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: FAILURE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: OPEN<br />
 Priority&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: HIGH<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Block 64349 in datafile 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '/ade/sfogel_emdb/oracle/dbs/t_db1.f' is media corrupt<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Object BMRTEST1 owned by SYS might be unavailable<br />
 Finding<br />
 Finding Name&nbsp;&nbsp;: Media Block Corruption<br />
 Finding ID&nbsp;&nbsp;&nbsp;&nbsp;: 1071<br />
 Type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: FAILURE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: OPEN<br />
 Priority&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: HIGH<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Block 64351 in datafile 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '/ade/sfogel_emdb/oracle/dbs/t_db1.f' is media corrupt<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Object BMRTEST2 owned by SYS might be unavailable</code></div></div>
]]></description>
			<content:encoded><![CDATA[Viewing Reports Using DBMS_HM<br />
<br />
You can view Health Monitor checker reports with the DBMS_HM package function GET_RUN_REPORT. This function enables you to request HTML, XML, or text formatting. The default format is text, as shown in the following SQL*Plus example:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SET LONG 100000<br />
SET LONGCHUNKSIZE 1000<br />
SET PAGESIZE 1000<br />
SET LINESIZE 512<br />
SELECT DBMS_HM.GET_RUN_REPORT('HM_RUN_1061') FROM DUAL;<br />
<br />
DBMS_HM.GET_RUN_REPORT('HM_RUN_1061')<br />
-----------------------------------------------------------------------<br />
 <br />
 Run Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : HM_RUN_1061<br />
 Run Id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 1061<br />
 Check Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Data Block Integrity Check<br />
 Mode&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : REACTIVE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : COMPLETED<br />
 Start Time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2007-05-12 22:11:02.032292 -07:00<br />
 End Time&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2007-05-12 22:11:20.835135 -07:00<br />
 Error Encountered&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 0<br />
 Source Incident Id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 7418<br />
 Number of Incidents Created&nbsp;&nbsp;: 0<br />
 <br />
Input Paramters for the Run<br />
 BLC_DF_NUM=1<br />
 BLC_BL_NUM=64349<br />
 <br />
Run Findings And Recommendations<br />
 Finding<br />
 Finding Name&nbsp;&nbsp;: Media Block Corruption<br />
 Finding ID&nbsp;&nbsp;&nbsp;&nbsp;: 1065<br />
 Type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: FAILURE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: OPEN<br />
 Priority&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: HIGH<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Block 64349 in datafile 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '/ade/sfogel_emdb/oracle/dbs/t_db1.f' is media corrupt<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Object BMRTEST1 owned by SYS might be unavailable<br />
 Finding<br />
 Finding Name&nbsp;&nbsp;: Media Block Corruption<br />
 Finding ID&nbsp;&nbsp;&nbsp;&nbsp;: 1071<br />
 Type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: FAILURE<br />
 Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: OPEN<br />
 Priority&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: HIGH<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Block 64351 in datafile 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '/ade/sfogel_emdb/oracle/dbs/t_db1.f' is media corrupt<br />
 Message&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Object BMRTEST2 owned by SYS might be unavailable</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[view run findings using Enterprise Manager]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2161</link>
			<pubDate>Thu, 05 Nov 2009 15:23:56 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2161</guid>
			<description><![CDATA[view run findings using Enterprise Manager<br />
<br />
   1.      Access the Database Home page.<br />
<br />
      For Oracle Enterprise Manager Database Control, see Oracle Database 2 Day DBA for instructions. For Oracle Enterprise Manager Grid Control, go to the desired database target.<br />
   2.      In the Related Links section, click Advisor Central.<br />
   3.      Click Checkers to view the Checkers subpage.<br />
   4.      Click the run name for the checker run that you want to view.<br />
<br />
      The Run Detail page appears, showing the findings for that checker run.<br />
   5.      Click Runs to display the Runs subpage.<br />
<br />
      Enterprise Manager displays more information about the checker run.<br />
   6.      Click View Report to view the report for the checker run.<br />
<br />
      The report is displayed in a new browser window.]]></description>
			<content:encoded><![CDATA[view run findings using Enterprise Manager<br />
<br />
   1.      Access the Database Home page.<br />
<br />
      For Oracle Enterprise Manager Database Control, see Oracle Database 2 Day DBA for instructions. For Oracle Enterprise Manager Grid Control, go to the desired database target.<br />
   2.      In the Related Links section, click Advisor Central.<br />
   3.      Click Checkers to view the Checkers subpage.<br />
   4.      Click the run name for the checker run that you want to view.<br />
<br />
      The Run Detail page appears, showing the findings for that checker run.<br />
   5.      Click Runs to display the Runs subpage.<br />
<br />
      Enterprise Manager displays more information about the checker run.<br />
   6.      Click View Report to view the report for the checker run.<br />
<br />
      The report is displayed in a new browser window.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Viewing Checker Reports]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2160</link>
			<pubDate>Thu, 05 Nov 2009 15:23:13 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2160</guid>
			<description><![CDATA[Viewing Checker Reports<br />
<br />
After a checker has run, you can view a report of its execution. The report contains findings, recommendations, and other information. You can view reports using Enterprise Manager, the ADRCI utility, or the DBMS_HM PL/SQL package. The following table indicates the report formats available with each viewing method.<br />
<br />
Results of checker runs (findings, recommendations, and other information) are stored in the ADR, but reports are not generated immediately. When you request a report with the DBMS_HM PL/SQL package or with Enterprise Manager, if the report does not yet exist, it is first generated from the checker run data in the ADR, stored as a report file in XML format in the HM subdirectory of the ADR home for the current instance, and then displayed. If the report file already exists, it is just displayed. When using the ADRCI utility, you must first run a command to generate the report file if it does not exist, and then run another command to display its contents.<br />
<br />
The preferred method to view checker reports is with Enterprise Manager. The following sections provide instructions for all methods:<br />
<br />
    *      Viewing Reports Using Enterprise Manager<br />
    *      Viewing Reports Using DBMS_HM<br />
    *      Viewing Reports Using the ADRCI Utility]]></description>
			<content:encoded><![CDATA[Viewing Checker Reports<br />
<br />
After a checker has run, you can view a report of its execution. The report contains findings, recommendations, and other information. You can view reports using Enterprise Manager, the ADRCI utility, or the DBMS_HM PL/SQL package. The following table indicates the report formats available with each viewing method.<br />
<br />
Results of checker runs (findings, recommendations, and other information) are stored in the ADR, but reports are not generated immediately. When you request a report with the DBMS_HM PL/SQL package or with Enterprise Manager, if the report does not yet exist, it is first generated from the checker run data in the ADR, stored as a report file in XML format in the HM subdirectory of the ADR home for the current instance, and then displayed. If the report file already exists, it is just displayed. When using the ADRCI utility, you must first run a command to generate the report file if it does not exist, and then run another command to display its contents.<br />
<br />
The preferred method to view checker reports is with Enterprise Manager. The following sections provide instructions for all methods:<br />
<br />
    *      Viewing Reports Using Enterprise Manager<br />
    *      Viewing Reports Using DBMS_HM<br />
    *      Viewing Reports Using the ADRCI Utility]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[run a Health Monitor Checker using Enterprise Manager]]></title>
			<link>http://naturebios.com/natureboard/showthread.php?tid=2159</link>
			<pubDate>Thu, 05 Nov 2009 15:21:43 -0800</pubDate>
			<guid isPermaLink="false">http://naturebios.com/natureboard/showthread.php?tid=2159</guid>
			<description><![CDATA[run a Health Monitor Checker using Enterprise Manager<br />
<br />
   1.      On the Database Home page, in the Related Links section, click Advisor Central.<br />
<br />
   2.      Click Checkers to view the Checkers subpage.<br />
<br />
   3.      In the Checkers section, click the checker you want to run.<br />
<br />
   4.      Enter values for input parameters or, for optional parameters, leave them blank to accept the defaults.<br />
<br />
   5.      Click Run, confirm your parameters, and click Run again.]]></description>
			<content:encoded><![CDATA[run a Health Monitor Checker using Enterprise Manager<br />
<br />
   1.      On the Database Home page, in the Related Links section, click Advisor Central.<br />
<br />
   2.      Click Checkers to view the Checkers subpage.<br />
<br />
   3.      In the Checkers section, click the checker you want to run.<br />
<br />
   4.      Enter values for input parameters or, for optional parameters, leave them blank to accept the defaults.<br />
<br />
   5.      Click Run, confirm your parameters, and click Run again.]]></content:encoded>
		</item>
	</channel>
</rss>