<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Oracle Database Administration Blog &#187; mudhalvan</title>
	<atom:link href="http://www.bestremotedba.com/author/mudhalvan/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bestremotedba.com</link>
	<description>Oracle Database Administration Blog</description>
	<lastBuildDate>Tue, 07 Sep 2010 03:32:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Difference between locks and latches</title>
		<link>http://www.bestremotedba.com/difference-between-locks-and-latches/</link>
		<comments>http://www.bestremotedba.com/difference-between-locks-and-latches/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 22:14:39 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Database Administration]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Difference between lock and latche]]></category>
		<category><![CDATA[Difference between locks and latches]]></category>
		<category><![CDATA[Latches]]></category>
		<category><![CDATA[locks]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=788</guid>
		<description><![CDATA[Difference between locks and latches]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Locks are used to protect the data or resourses from the simulteneous use of them by multiple sessions which might set them in inconsistant state&#8230; Locks are external mechanism, means user can also set locks on objects by using various oracle statements.</p>
<p>Latches are for the same purpose but works at internal level. Latches are used to Protect and control access to internal data structres like various SGA buffers.They are handled and maintained by oracle and we can&#8217;t access or set it.. this is the main difference</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/difference-between-locks-and-latches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASM Limitation</title>
		<link>http://www.bestremotedba.com/asm-limitation/</link>
		<comments>http://www.bestremotedba.com/asm-limitation/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 11:43:51 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Database Administration]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=778</guid>
		<description><![CDATA[ASM Limitation]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>ASM Limitation</p>
<p>ASM has the following size limits:<br />
•  63 disk groups in a storage system<br />
•  10,000 ASM disks in a storage system<br />
•  1 million files for each disk group</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/asm-limitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Detect and Mount the CD-ROM in Linux</title>
		<link>http://www.bestremotedba.com/how-to-detect-and-mount-the-cd-rom-in-linux/</link>
		<comments>http://www.bestremotedba.com/how-to-detect-and-mount-the-cd-rom-in-linux/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 22:13:10 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Linux Administration]]></category>
		<category><![CDATA[Unix-Linux Administration]]></category>
		<category><![CDATA[How to Detect and Mount the CD-ROM in Linux]]></category>
		<category><![CDATA[mount the cdrom in linux]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=758</guid>
		<description><![CDATA[How to Detect and Mount the CD-ROM in Linux]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>How to Detect and Mount the CD-ROM in Linux</p>
<p>1. Detecting CD-ROM/DVD-ROM drive<br />
# wodim &#8211;devices </p>
<p>[lokesh@Mudhalvan ~]$ wodim &#8211;devices<br />
wodim: Overview of accessible drives (1 found) :<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
 0  dev=&#8217;/dev/scd0&#8242;     rwrw&#8211; : &#8216;HL-DT-ST&#8217; &#8216;RW/DVD GCC-4243N&#8217;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
[lokesh@Mudhalvan ~]$ </p>
<p>2. Testing for iso9660 compatibility<br />
# cat /proc/filesystems </p>
<p>3. Creating mount point<br />
# mkdir /media/cdrom</p>
<p>4. Mounting CD<br />
# mount -t iso9660 /dev/scd0 /media/cdrom/ </p>
<p>5. Altering /etc/fstab<br />
/dev/sdc0        /media/cdrom   iso9660 ro,user,noauto  0       0 </p>
<p>6. Unmount and eject CD<br />
# unmout /dev/sdc0<br />
# eject </p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/how-to-detect-and-mount-the-cd-rom-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to see newly added emc lun in HP Unix</title>
		<link>http://www.bestremotedba.com/675/</link>
		<comments>http://www.bestremotedba.com/675/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 01:28:43 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Unix Administration]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=675</guid>
		<description><![CDATA[How to see newly added emc lun in HP Unix]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>1. Login as root and do ioscan before add the Lun to the Unix Machine<br />
# ioscan -fnCdisk</p>
<p>2. Add the lun to Unix machine by EMC Navigator</p>
<p>3. No need to restart the Unix machine do the ioscan again will show you the newly added disk as CLAIMED but devices will not show</p>
<p>#ioscan -fnCdisk</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/675/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Drop create recreate Dbconsole repository of Enterprice Manager in 10g</title>
		<link>http://www.bestremotedba.com/how-to-drop-create-recreate-dbconsole-repository-of-enterprice-manager-in-10g/</link>
		<comments>http://www.bestremotedba.com/how-to-drop-create-recreate-dbconsole-repository-of-enterprice-manager-in-10g/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 23:03:07 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Enterprise Manager]]></category>
		<category><![CDATA[create dbconsole in 10g]]></category>
		<category><![CDATA[create dbconsole repository in 10g]]></category>
		<category><![CDATA[drop dbconsole in 10g]]></category>
		<category><![CDATA[drop dbconsole repository in 10g]]></category>
		<category><![CDATA[How to Drop create recreate Dbconsole repository of Enterprice Manager in 10g]]></category>
		<category><![CDATA[recreate dbconsole in 10g]]></category>
		<category><![CDATA[recreate dbconsole repository in 10g]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=645</guid>
		<description><![CDATA[How to Drop create recreate Dbconsole repository of Enterprice Manager in 10g]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p><strong>How to Drop Dbconsole and repository &#8211; Enterprice Manager in 10g</strong><br />
<strong>emca -deconfig dbcontrol db -repos drop</strong></p>
<p>Enter the following information:<br />
Database SID: AARTHI<br />
Listener port number: 1521<br />
Password for SYS user:<br />
Password for SYS user: password<br />
Do you wish to continue? [yes(Y)/no(N)]: Y<br />
Apr 11, 2010 7:47:37 AM oracle.sysman.emcp.EMConfig perform<br />
INFO: This operation is being logged at C:\oracle\product\10.2.0\db_1\cfgtoollog<br />
s\emca\aarthi\emca_2010-04-11_07-47-10-AM.log.<br />
Apr 11, 2010 7:47:41 AM oracle.sysman.emcp.EMDBPreConfig performDeconfiguration<br />
WARNING: EM is not configured for this database. No EM-specific actions can be p<br />
erformed.<br />
Apr 11, 2010 7:47:42 AM oracle.sysman.emcp.EMReposConfig dropRepository<br />
INFO: Dropping the EM repository (this may take a while) &#8230;<br />
Apr 11, 2010 7:48:07 AM oracle.sysman.emcp.EMReposConfig invoke<br />
INFO: Repository successfully dropped<br />
Enterprise Manager configuration completed successfully<br />
FINISHED EMCA at Apr 11, 2010 7:48:07 AM</p>
<p><strong>How to Create Dbconsole &#8211; Enterprice Manager in 10g</strong></p>
<p><strong>emca -config dbcontrol db -repos create</strong><br />
C:\Documents and Settings\user1>emca -config dbcontrol db -repos create</p>
<p>STARTED EMCA at Apr 11, 2010 7:52:24 AM<br />
EM Configuration Assistant, Version 10.2.0.1.0 Production<br />
Copyright (c) 2003, 2005, Oracle.  All rights reserved.</p>
<p>Enter the following information:<br />
Database SID: AARTHI<br />
Listener port number: 1521<br />
Password for SYS user:<br />
Password for DBSNMP user:<br />
Password for SYSMAN user:<br />
Email address for notifications (optional): aarthimudhalvan@gmail.com<br />
Outgoing Mail (SMTP) server for notifications (optional): smtp.gmail.com<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>You have specified the following settings</p>
<p>Database ORACLE_HOME &#8230;&#8230;&#8230;&#8230;&#8230;. C:\oracle\product\10.2.0\db_1</p>
<p>Database hostname &#8230;&#8230;&#8230;&#8230;&#8230;. lokesh.fletsphone<br />
Listener port number &#8230;&#8230;&#8230;&#8230;&#8230;. 1521<br />
Database SID &#8230;&#8230;&#8230;&#8230;&#8230;. AARTHI<br />
Email address for notifications &#8230;&#8230;&#8230;&#8230;&#8230; aarthimudhalvan@gmail.com<br />
Outgoing Mail (SMTP) server for notifications &#8230;&#8230;&#8230;&#8230;&#8230; smtp.gmail.com</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Do you wish to continue? [yes(Y)/no(N)]: Y<br />
Apr 11, 2010 7:53:44 AM oracle.sysman.emcp.EMConfig perform<br />
INFO: This operation is being logged at C:\oracle\product\10.2.0\db_1\cfgtoollo<br />
s\emca\aarthi\emca_2010-04-11_07-52-24-AM.log.<br />
Apr 11, 2010 7:53:57 AM oracle.sysman.emcp.EMReposConfig createRepository<br />
INFO: Creating the EM repository (this may take a while) &#8230;</p>
<p><strong>How to recreate Dbconsole repository &#8211; Enterprice Manager in 10g</strong><br />
emca -config dbcontrol db -repos recreate</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/how-to-drop-create-recreate-dbconsole-repository-of-enterprice-manager-in-10g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-13516: AWR Operation failed: INTERVAL Setting is ZERO</title>
		<link>http://www.bestremotedba.com/ora-13516-awr-operation-failed-interval-setting-is-zero/</link>
		<comments>http://www.bestremotedba.com/ora-13516-awr-operation-failed-interval-setting-is-zero/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 09:19:33 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[ORA-13516: AWR Operation failed: INTERVAL Setting is ZERO]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=617</guid>
		<description><![CDATA[ORA-13516: AWR Operation failed: INTERVAL Setting is ZERO]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>===== ORA-13516: AWR Operation failed: INTERVAL Setting is ZERO</p>
<p>The above error message is because of the INTERVAL of snapshot setting is Zero. You can change the snapshot setting by using the following command. The below command set the interval to 60 mins </p>
<p>DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS( INTERVAL=>60 );</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/ora-13516-awr-operation-failed-interval-setting-is-zero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create AWR Snapshot Manually</title>
		<link>http://www.bestremotedba.com/how-to-create-awr-snapshot-manually/</link>
		<comments>http://www.bestremotedba.com/how-to-create-awr-snapshot-manually/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 09:18:51 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[How to create AWR Snapshot Manually]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=615</guid>
		<description><![CDATA[How to create AWR Snapshot Manually]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>exec  DBMS_WORKLOAD_REPOSITORY.create_snapshot();</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/how-to-create-awr-snapshot-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Views and Usage Related to AWR and ASH</title>
		<link>http://www.bestremotedba.com/views-and-usage-related-to-awr-and-ash/</link>
		<comments>http://www.bestremotedba.com/views-and-usage-related-to-awr-and-ash/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 09:18:15 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Views and Usage Related to AWR and ASH]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=613</guid>
		<description><![CDATA[Views and Usage Related to AWR and ASH ]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>    * V$ACTIVE_SESSION_HISTORY &#8211; Displays the active session history (ASH) sampled every second.<br />
    * V$METRIC &#8211; Displays metric information.<br />
    * V$METRICNAME &#8211; Displays the metrics associated with each metric group.<br />
    * V$METRIC_HISTORY &#8211; Displays historical metrics.<br />
    * V$METRICGROUP &#8211; Displays all metrics groups.<br />
    * DBA_HIST_ACTIVE_SESS_HISTORY &#8211; Displays the history contents of the active session history.<br />
    * DBA_HIST_BASELINE &#8211; Displays baseline information.<br />
    * DBA_HIST_DATABASE_INSTANCE &#8211; Displays database environment information.<br />
    * DBA_HIST_SNAPSHOT &#8211; Displays snapshot information.<br />
    * DBA_HIST_SQL_PLAN &#8211; Displays SQL execution plans.<br />
    * DBA_HIST_WR_CONTROL &#8211; Displays AWR settings.</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/views-and-usage-related-to-awr-and-ash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run AWR Report awrrpt.sql</title>
		<link>http://www.bestremotedba.com/how-to-run-awr-report-awrrpt-sql/</link>
		<comments>http://www.bestremotedba.com/how-to-run-awr-report-awrrpt-sql/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 06:56:11 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[How to run AWR Report awrrpt.sql]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=611</guid>
		<description><![CDATA[How to run AWR Report awrrpt.sql]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>$cd ORACLE_HOME<br />
$cd rdbms<br />
$cd admin<br />
$sqlplus /nolog<br />
SQL>connect / as sysdba<br />
SQL>@awrrpt.sql<br />
Current Instance<br />
~~~~~~~~~~~~~~~~</p>
<p>   DB Id    DB Name      Inst Num Instance<br />
&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;<br />
 XXXX 		TEST            1 	test</p>
<p> Specify the Report Type<br />
~~~~~~~~~~~~~~~~~~~~~~~<br />
Would you like an HTML report, or a plain text report?<br />
Enter &#8216;html&#8217; for an HTML report, or &#8216;text&#8217; for plain text<br />
Defaults to &#8216;html&#8217;<br />
Enter value for report_type:html<br />
Type Specified:  html<br />
Instances in this Workload Repository schema<br />
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br />
   DB Id     Inst Num DB Name      Instance     Host<br />
&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;<br />
* XXXXX        1 TEST     test     XXXXXX</p>
<p>Using XXXXX for database Id<br />
Using          1 for instance number<br />
Specify the number of days of snapshots to choose from<br />
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br />
Entering the number of days (n) will result in the most recent<br />
(n) days of snapshots being listed.  Pressing <return> without<br />
specifying a number lists all completed snapshots.<br />
Enter value for num_days:1<br />
Enter value for num_days: 1<br />
Listing the last day&#8217;s Completed Snapshots<br />
														Snap<br />
Instance     DB Name        Snap Id    Snap Started    Level<br />
&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8211;<br />
test     TEST            10401 24 Mar 2010 00:00      1<br />
                              10402 24 Mar 2010 01:00      1<br />
                              10403 24 Mar 2010 02:00      1<br />
                              10404 24 Mar 2010 03:00      1<br />
                              10405 24 Mar 2010 04:00      1<br />
                              10406 24 Mar 2010 05:00      1</p>
<p>							  Specify the Begin and End Snapshot Ids<br />
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br />
Enter value for begin_snap: 1405<br />
Begin Snapshot Id specified: 1405</p>
<p>Enter value for end_snap: 1406<br />
End   Snapshot Id specified: 1406</p>
<p>Specify the Report Name<br />
~~~~~~~~~~~~~~~~~~~~~~~<br />
The default report file name is awrrpt_1_10405_10406.html.  To use this name,<br />
press <return> to continue, otherwise enter an alternative.</p>
<p>Enter value for report_name:awrrpt_1_10405_10406.html</p>
<p>	This will generate a report into the current folder with &#8220;awrrpt_1_10405_10406.html&#8221; name</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/how-to-run-awr-report-awrrpt-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable AWR Snapshot in 10g &#8211; change the Interval to 0</title>
		<link>http://www.bestremotedba.com/how-to-disable-awr-snapshot-in-10g-change-the-interval-to-0/</link>
		<comments>http://www.bestremotedba.com/how-to-disable-awr-snapshot-in-10g-change-the-interval-to-0/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 06:55:18 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[How to disable AWR Snapshot in 10g - change the Interval to 0]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=609</guid>
		<description><![CDATA[How to disable AWR Snapshot in 10g - change the Interval to 0]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>exec DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS( INTERVAL=>0 );</p>
<p>select * from DBA_HIST_WR_CONTROL</p>
<p>DBID	SNAP_INTERVAL	RETENTION	TOPNSQL<br />
1898043910	+40150 00:00:00.000000	+07 00:00:00.000000	        30</p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/how-to-disable-awr-snapshot-in-10g-change-the-interval-to-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
