<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Nologging redo size</title>
	<atom:link href="http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/feed/" rel="self" type="application/rss+xml" />
	<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/</link>
	<description>Discussions about Oracle performance tuning, RAC, Oracle internal &#38; E-business suite.</description>
	<lastBuildDate>Sun, 19 May 2013 12:13:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Riyaj Shamsudeen</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1206</link>
		<dc:creator><![CDATA[Riyaj Shamsudeen]]></dc:creator>
		<pubDate>Fri, 10 Feb 2012 14:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1206</guid>
		<description><![CDATA[Yasir
  I have added a script to get the redo size from v$archived_log if you don&#039;t have AWR license.
Cheers
Riyaj]]></description>
		<content:encoded><![CDATA[<p>Yasir<br />
  I have added a script to get the redo size from v$archived_log if you don&#8217;t have AWR license.<br />
Cheers<br />
Riyaj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anand</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1024</link>
		<dc:creator><![CDATA[Anand]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 03:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1024</guid>
		<description><![CDATA[Good one..

Anand]]></description>
		<content:encoded><![CDATA[<p>Good one..</p>
<p>Anand</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riyaj Shamsudeen</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1023</link>
		<dc:creator><![CDATA[Riyaj Shamsudeen]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 03:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1023</guid>
		<description><![CDATA[Agreed.]]></description>
		<content:encoded><![CDATA[<p>Agreed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riyaj Shamsudeen</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1022</link>
		<dc:creator><![CDATA[Riyaj Shamsudeen]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 03:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1022</guid>
		<description><![CDATA[Yes, You could potentially use v$archived_log (not gv$archived_log since the archive log files from all nodes are visible in v$archived_log itself). Following SQL can give you some idea, but I think, I should write it better since it might be useful for the Standard Edition customers without AWR data.

select to_char(first_time, &#039;mm/dd&#039;) ArchiveDate,
   sum(BLOCKS*BLOCK_SIZE/1024/1024) LOGMB
   from V$ARCHIVED_LOG
   where first_time &gt; sysdate - 7 
   and dest_id=1
   group by to_char(first_time, &#039;mm/dd&#039;)
   order by to_char(first_time, &#039;mm/dd&#039;)
/

Cheers
Riyaj]]></description>
		<content:encoded><![CDATA[<p>Yes, You could potentially use v$archived_log (not gv$archived_log since the archive log files from all nodes are visible in v$archived_log itself). Following SQL can give you some idea, but I think, I should write it better since it might be useful for the Standard Edition customers without AWR data.</p>
<p>select to_char(first_time, &#8216;mm/dd&#8217;) ArchiveDate,<br />
   sum(BLOCKS*BLOCK_SIZE/1024/1024) LOGMB<br />
   from V$ARCHIVED_LOG<br />
   where first_time &gt; sysdate &#8211; 7<br />
   and dest_id=1<br />
   group by to_char(first_time, &#8216;mm/dd&#8217;)<br />
   order by to_char(first_time, &#8216;mm/dd&#8217;)<br />
/</p>
<p>Cheers<br />
Riyaj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vyacheslav Rasskazov</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1020</link>
		<dc:creator><![CDATA[Vyacheslav Rasskazov]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 00:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1020</guid>
		<description><![CDATA[Quote: &quot;Minimal redo(aka invalidation redo) is generated, if the database is not in force logging mode&quot;
A think, more correctly, is &quot;Minimal redo(aka invalidation redo) is generated, if the database is not in force logging mode AND segment have nologging attribute OR database in noarchivelog mode&quot;.]]></description>
		<content:encoded><![CDATA[<p>Quote: &#8220;Minimal redo(aka invalidation redo) is generated, if the database is not in force logging mode&#8221;<br />
A think, more correctly, is &#8220;Minimal redo(aka invalidation redo) is generated, if the database is not in force logging mode AND segment have nologging attribute OR database in noarchivelog mode&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yasir</title>
		<link>http://orainternals.wordpress.com/2012/01/25/nologging-redo-size/#comment-1018</link>
		<dc:creator><![CDATA[Yasir]]></dc:creator>
		<pubDate>Wed, 25 Jan 2012 23:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://orainternals.wordpress.com/?p=1070#comment-1018</guid>
		<description><![CDATA[Dear Sir,
Can we get the same from gv$archived_log?
It also has blocks and block_size column. So blocks*block_size would give redo rate based on first_time.]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
Can we get the same from gv$archived_log?<br />
It also has blocks and block_size column. So blocks*block_size would give redo rate based on first_time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
