<?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/"
	>
<channel>
	<title>Comments on: How to monitor the amount of redo generated per hour</title>
	<atom:link href="http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/</link>
	<description>Oracle Question and Answer</description>
	<pubDate>Tue, 06 Jan 2009 08:47:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: TMoore</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-164</link>
		<dc:creator>TMoore</dc:creator>
		<pubDate>Sat, 11 Mar 2006 21:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-164</guid>
		<description>Ok, you're right thanks</description>
		<content:encoded><![CDATA[<p>Ok, you&#8217;re right thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddie Awad</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-163</link>
		<dc:creator>Eddie Awad</dc:creator>
		<pubDate>Fri, 10 Mar 2006 19:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-163</guid>
		<description>I believe here is what's missing:

&lt;pre&gt;
AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, â€˜MM/DD/RR HH:MI:SSâ€™), 1, 8),
â€˜MM/DD/RRâ€™) &lt;b&gt;&lt;= TO_DATE(&#038;END_DATE, â€˜DD-MM-YYYYâ€™))&lt;/b&gt;
&lt;/pre&gt;

Just make sure you put code between &#60;pre&#62; and &#60;/pre&#62; because if you don't, and you do not escape special html characters, you will get unexpected results.</description>
		<content:encoded><![CDATA[<p>I believe here is what&#8217;s missing:</p>
<pre>
AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, â€˜MM/DD/RR HH:MI:SSâ€™), 1, 8),
â€˜MM/DD/RRâ€™) <b>< = TO_DATE(&#038;END_DATE, â€˜DD-MM-YYYYâ€™))</b>
</b></pre>
<p>Just make sure you put code between &lt;pre&gt; and &lt;/pre&gt; because if you don&#8217;t, and you do not escape special html characters, you will get unexpected results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TMoore</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-162</link>
		<dc:creator>TMoore</dc:creator>
		<pubDate>Fri, 10 Mar 2006 18:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-162</guid>
		<description>Sorry that is it. I think this form cut the end. So replace end with this:

  FROM V$LOG_HISTORY A
 WHERE (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH:MI:SS'), 1, 8),
                'MM/DD/RR') &#62;= TO_DATE(&#38;BEGIN_DATE, 'DD-MM-YYYY'))
   AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH:MI:SS'), 1, 8),
                'MM/DD/RR') </description>
		<content:encoded><![CDATA[<p>Sorry that is it. I think this form cut the end. So replace end with this:</p>
<p>  FROM V$LOG_HISTORY A<br />
 WHERE (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH:MI:SS&#8217;), 1, 8),<br />
                &#8216;MM/DD/RR&#8217;) &gt;= TO_DATE(&amp;BEGIN_DATE, &#8216;DD-MM-YYYY&#8217;))<br />
   AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH:MI:SS&#8217;), 1, 8),<br />
                &#8216;MM/DD/RR&#8217;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Reitschuster</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-159</link>
		<dc:creator>Karl Reitschuster</dc:creator>
		<pubDate>Thu, 09 Mar 2006 14:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-159</guid>
		<description>Hi Tmoore,
your script is very interesting - would you post the rest of it?
there is seomething missing at the end!

Greetings
Karl</description>
		<content:encoded><![CDATA[<p>Hi Tmoore,<br />
your script is very interesting - would you post the rest of it?<br />
there is seomething missing at the end!</p>
<p>Greetings<br />
Karl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TMoore</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-156</link>
		<dc:creator>TMoore</dc:creator>
		<pubDate>Tue, 07 Mar 2006 13:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-156</guid>
		<description>There is funny script, showing in 3D matrix, on one axis is hours and on other is day of month
regards

SELECT SUBSTR(TO_CHAR(FIRST_TIME, 'DD-MM-RR HH:MI:SS'), 1, 5) DAY,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '00',
                  1,
                  0)) H00,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '01',
                  1,
                  0)) H01,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '02',
                  1,
                  0)) H02,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '03',
                  1,
                  0)) H03,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '04',
                  1,
                  0)) H04,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '05',
                  1,
                  0)) H05,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '06',
                  1,
                  0)) H06,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '07',
                  1,
                  0)) H07,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '08',
                  1,
                  0)) H08,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '09',
                  1,
                  0)) H09,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '10',
                  1,
                  0)) H10,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '11',
                  1,
                  0)) H11,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '12',
                  1,
                  0)) H12,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '13',
                  1,
                  0)) H13,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '14',
                  1,
                  0)) H14,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '15',
                  1,
                  0)) H15,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '16',
                  1,
                  0)) H16,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '17',
                  1,
                  0)) H17,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '18',
                  1,
                  0)) H18,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '19',
                  1,
                  0)) H19,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '20',
                  1,
                  0)) H20,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '21',
                  1,
                  0)) H21,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '22',
                  1,
                  0)) H22,
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH24:MI:SS'), 10, 2),
                  '23',
                  1,
                  0)) H23,
       COUNT(*) SUM_cum
  FROM V$LOG_HISTORY A
 WHERE (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH:MI:SS'), 1, 8),
                'MM/DD/RR') &#62;= TO_DATE(&#38;DATA_OD, 'DD-MM-YYYY'))
   AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, 'MM/DD/RR HH:MI:SS'), 1, 8),
                'MM/DD/RR') </description>
		<content:encoded><![CDATA[<p>There is funny script, showing in 3D matrix, on one axis is hours and on other is day of month<br />
regards</p>
<p>SELECT SUBSTR(TO_CHAR(FIRST_TIME, &#8216;DD-MM-RR HH:MI:SS&#8217;), 1, 5) DAY,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;00&#8242;,<br />
                  1,<br />
                  0)) H00,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;01&#8242;,<br />
                  1,<br />
                  0)) H01,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;02&#8242;,<br />
                  1,<br />
                  0)) H02,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;03&#8242;,<br />
                  1,<br />
                  0)) H03,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;04&#8242;,<br />
                  1,<br />
                  0)) H04,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;05&#8242;,<br />
                  1,<br />
                  0)) H05,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;06&#8242;,<br />
                  1,<br />
                  0)) H06,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;07&#8242;,<br />
                  1,<br />
                  0)) H07,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;08&#8242;,<br />
                  1,<br />
                  0)) H08,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;09&#8242;,<br />
                  1,<br />
                  0)) H09,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;10&#8242;,<br />
                  1,<br />
                  0)) H10,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;11&#8242;,<br />
                  1,<br />
                  0)) H11,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;12&#8242;,<br />
                  1,<br />
                  0)) H12,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;13&#8242;,<br />
                  1,<br />
                  0)) H13,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;14&#8242;,<br />
                  1,<br />
                  0)) H14,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;15&#8242;,<br />
                  1,<br />
                  0)) H15,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;16&#8242;,<br />
                  1,<br />
                  0)) H16,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;17&#8242;,<br />
                  1,<br />
                  0)) H17,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;18&#8242;,<br />
                  1,<br />
                  0)) H18,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;19&#8242;,<br />
                  1,<br />
                  0)) H19,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;20&#8242;,<br />
                  1,<br />
                  0)) H20,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;21&#8242;,<br />
                  1,<br />
                  0)) H21,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;22&#8242;,<br />
                  1,<br />
                  0)) H22,<br />
       SUM(DECODE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH24:MI:SS&#8217;), 10, 2),<br />
                  &#8216;23&#8242;,<br />
                  1,<br />
                  0)) H23,<br />
       COUNT(*) SUM_cum<br />
  FROM V$LOG_HISTORY A<br />
 WHERE (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH:MI:SS&#8217;), 1, 8),<br />
                &#8216;MM/DD/RR&#8217;) &gt;= TO_DATE(&amp;DATA_OD, &#8216;DD-MM-YYYY&#8217;))<br />
   AND (TO_DATE(SUBSTR(TO_CHAR(FIRST_TIME, &#8216;MM/DD/RR HH:MI:SS&#8217;), 1, 8),<br />
                &#8216;MM/DD/RR&#8217;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: austrin</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-140</link>
		<dc:creator>austrin</dc:creator>
		<pubDate>Tue, 21 Feb 2006 07:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-140</guid>
		<description>@Karl - well guessed :-)
i'm from AUSTRIa and my name is martiN ...</description>
		<content:encoded><![CDATA[<p>@Karl - well guessed :-)<br />
i&#8217;m from AUSTRIa and my name is martiN &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Reitschuster</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-139</link>
		<dc:creator>Karl Reitschuster</dc:creator>
		<pubDate>Tue, 21 Feb 2006 05:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-139</guid>
		<description>Thanks for adding the output;
putting content in the right format into wordpress seems to be not so easy ?
Greetings Karl
@Martin,
are you Martin Strobl?
it could be :-)
Karl</description>
		<content:encoded><![CDATA[<p>Thanks for adding the output;<br />
putting content in the right format into wordpress seems to be not so easy ?<br />
Greetings Karl<br />
@Martin,<br />
are you Martin Strobl?<br />
it could be :-)<br />
Karl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddie Awad</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-138</link>
		<dc:creator>Eddie Awad</dc:creator>
		<pubDate>Mon, 20 Feb 2006 20:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-138</guid>
		<description>Martin, Karl did provide sample output, but the formatting was all scrambled. I ran the query on my database and added the output to the post (with the correct formatting).</description>
		<content:encoded><![CDATA[<p>Martin, Karl did provide sample output, but the formatting was all scrambled. I ran the query on my database and added the output to the post (with the correct formatting).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: austrin</title>
		<link>http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/comment-page-1/#comment-137</link>
		<dc:creator>austrin</dc:creator>
		<pubDate>Mon, 20 Feb 2006 20:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://oraqa.com/2006/02/20/how-to-monitor-the-amount-of-redo-generated-per-hour/#comment-137</guid>
		<description>Hello Karl,

it would be nice if &lt;i&gt;for future postings&lt;/i&gt;  you could provide some sample output as well.
This would make - beside analysis of your input - the copy&#38;paste into a test database obsolete.

Thank you for sharing your experiences,
Martin</description>
		<content:encoded><![CDATA[<p>Hello Karl,</p>
<p>it would be nice if <i>for future postings</i>  you could provide some sample output as well.<br />
This would make - beside analysis of your input - the copy&amp;paste into a test database obsolete.</p>
<p>Thank you for sharing your experiences,<br />
Martin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
