<?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 for dbsnaps</title>
	<atom:link href="http://www.dbsnaps.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbsnaps.com</link>
	<description>database video tutorials</description>
	<lastBuildDate>Wed, 13 Apr 2011 03:55:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Oracle Database Vault tutorial &#8211; Step By Step by Sukhjinder Bhullar</title>
		<link>http://www.dbsnaps.com/oracle/oracle-database-vault-tutorial-step-by-step/comment-page-1/#comment-3778</link>
		<dc:creator>Sukhjinder Bhullar</dc:creator>
		<pubDate>Wed, 13 Apr 2011 03:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://dbsnaps.oracletutorialvideos.com/?p=157#comment-3778</guid>
		<description>Hey Raz,This is simply useful and awesome information.Regards,Sukhjinder</description>
		<content:encoded><![CDATA[<p>Hey Raz,This is simply useful and awesome information.Regards,Sukhjinder</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Multiple AWR reports by zamaracha</title>
		<link>http://www.dbsnaps.com/oracle/automatic-awr-reports/comment-page-1/#comment-3366</link>
		<dc:creator>zamaracha</dc:creator>
		<pubDate>Mon, 07 Feb 2011 11:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=265#comment-3366</guid>
		<description>Hi Roni,I&#039;ve tested this procedure successfully under the Linux...- I updated script execution to be compliant with Linux environment (ie.: replaced c:\tmp with /tmp)- testing as a sys user- having an access to /tmp directory- testing in 10g and 11g database- running the following command:exec CreateAwrReports (440, 450, &#039;/tmp&#039;);Thanks for the script.If I could suggest something different which doesn&#039;t requires installing any procedures in SYS schema:#!/bin/bashif [ $# != 4 ]thenecho “Syntax &#160;genawrs.sh dbid instanceId startsnapid endsnapid”exit 1fil_dbid=$1l_instid=$2l_start_snapid=$3let l_end_snapid=$4-1# For all snapshot id’s# Set the next snapshot id as current snapshot id + 1# Spool a log file# Log into sqlplus and call dbms_workload_repository.awr_report_text# To generate the awrfor i in `seq $l_start_snapid $l_end_snapid`dolet l_next_snapid=$i+1;l_awr_log_file=awrs_out/awrrpt_${2}_${i}_${l_next_snapid}.htmlsqlplus -s / as sysdba &lt;&lt; EOCset head offset pages 0set lines 132set echo offset feedback offspool $l_awr_log_fileSELECToutputFROMTABLE(dbms_workload_repository.awr_report_html($l_dbid,$l_instid,$i,$l_next_snapid));spool offEOCdoneCheers!!zamaracha</description>
		<content:encoded><![CDATA[<p>Hi Roni,I&#8217;ve tested this procedure successfully under the Linux&#8230;- I updated script execution to be compliant with Linux environment (ie.: replaced c:\tmp with /tmp)- testing as a sys user- having an access to /tmp directory- testing in 10g and 11g database- running the following command:exec CreateAwrReports (440, 450, &#8216;/tmp&#8217;);Thanks for the script.If I could suggest something different which doesn&#8217;t requires installing any procedures in SYS schema:#!/bin/bashif [ $# != 4 ]thenecho “Syntax &nbsp;genawrs.sh dbid instanceId startsnapid endsnapid”exit 1fil_dbid=$1l_instid=$2l_start_snapid=$3let l_end_snapid=$4-1# For all snapshot id’s# Set the next snapshot id as current snapshot id + 1# Spool a log file# Log into sqlplus and call dbms_workload_repository.awr_report_text# To generate the awrfor i in `seq $l_start_snapid $l_end_snapid`dolet l_next_snapid=$i+1;l_awr_log_file=awrs_out/awrrpt_${2}_${i}_${l_next_snapid}.htmlsqlplus -s / as sysdba &lt;&lt; EOCset head offset pages 0set lines 132set echo offset feedback offspool $l_awr_log_fileSELECToutputFROMTABLE(dbms_workload_repository.awr_report_html($l_dbid,$l_instid,$i,$l_next_snapid));spool offEOCdoneCheers!!zamaracha</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Multiple AWR reports by Roni Vered</title>
		<link>http://www.dbsnaps.com/oracle/automatic-awr-reports/comment-page-1/#comment-3318</link>
		<dc:creator>Roni Vered</dc:creator>
		<pubDate>Wed, 02 Feb 2011 14:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=265#comment-3318</guid>
		<description>Hi zamaracha, 
1. Did you execute the procedure as SYS ?
2. Did the directory c:\temp exists in your computer and you have permissions to create files on it?

I took the procedure, implement it and ran it with no issues on c:\temp, however, when I ran it with a non-existing directory, I got you error:

SQL&gt;   exec sys.CreateAwrReports (1367,1368, &#039;c:\temp\trilili&#039;);
BEGIN sys.CreateAwrReports (1367,1368, &#039;c:\temp\trilili&#039;); END;

*
ERROR at line 1:
ORA-29283: invalid file operation
ORA-06512: at &quot;SYS.UTL_FILE&quot;, line 536
ORA-29283: invalid file operation
ORA-06512: at &quot;SYS.CREATEAWRREPORTS&quot;, line 42
ORA-06512: at line 1</description>
		<content:encoded><![CDATA[<p>Hi zamaracha,<br />
1. Did you execute the procedure as SYS ?<br />
2. Did the directory c:\temp exists in your computer and you have permissions to create files on it?</p>
<p>I took the procedure, implement it and ran it with no issues on c:\temp, however, when I ran it with a non-existing directory, I got you error:</p>
<p>SQL>   exec sys.CreateAwrReports (1367,1368, &#8216;c:\temp\trilili&#8217;);<br />
BEGIN sys.CreateAwrReports (1367,1368, &#8216;c:\temp\trilili&#8217;); END;</p>
<p>*<br />
ERROR at line 1:<br />
ORA-29283: invalid file operation<br />
ORA-06512: at &#8220;SYS.UTL_FILE&#8221;, line 536<br />
ORA-29283: invalid file operation<br />
ORA-06512: at &#8220;SYS.CREATEAWRREPORTS&#8221;, line 42<br />
ORA-06512: at line 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating Multiple AWR reports by zamaracha</title>
		<link>http://www.dbsnaps.com/oracle/automatic-awr-reports/comment-page-1/#comment-3128</link>
		<dc:creator>zamaracha</dc:creator>
		<pubDate>Mon, 17 Jan 2011 15:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=265#comment-3128</guid>
		<description>hi it doesn&#039;t work:(
when executed awrrpt it works properly

error message below:
SQL&gt; EXEC CreateAwrReports (14, 16, &#039;C:\TEMP&#039;);
BEGIN CreateAwrReports (14, 16, &#039;C:\TEMP&#039;); END;

*
ERROR at line 1:
ORA-29283: invalid file operation
ORA-06512: at &quot;SYS.UTL_FILE&quot;, line 488
ORA-29283: invalid file operation
ORA-06512: at &quot;SYS.CREATEAWRREPORTS&quot;, line 42
ORA-06512: at line 1

Any help would be much appreciated.</description>
		<content:encoded><![CDATA[<p>hi it doesn&#8217;t work:(<br />
when executed awrrpt it works properly</p>
<p>error message below:<br />
SQL&gt; EXEC CreateAwrReports (14, 16, &#8216;C:\TEMP&#8217;);<br />
BEGIN CreateAwrReports (14, 16, &#8216;C:\TEMP&#8217;); END;</p>
<p>*<br />
ERROR at line 1:<br />
ORA-29283: invalid file operation<br />
ORA-06512: at &#8220;SYS.UTL_FILE&#8221;, line 488<br />
ORA-29283: invalid file operation<br />
ORA-06512: at &#8220;SYS.CREATEAWRREPORTS&#8221;, line 42<br />
ORA-06512: at line 1</p>
<p>Any help would be much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determine query for Linux process by Vineesh</title>
		<link>http://www.dbsnaps.com/oracle/determine-query-for-linux-process/comment-page-1/#comment-2421</link>
		<dc:creator>Vineesh</dc:creator>
		<pubDate>Sat, 11 Dec 2010 18:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=348#comment-2421</guid>
		<description>good one....with example was too good....thanks</description>
		<content:encoded><![CDATA[<p>good one&#8230;.with example was too good&#8230;.thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Analyzing Oracle AWR reports &#8211; top 5 events by Vineesh</title>
		<link>http://www.dbsnaps.com/oracle/analyzing-oracle-awr-reports-top-5-events/comment-page-1/#comment-2420</link>
		<dc:creator>Vineesh</dc:creator>
		<pubDate>Sat, 11 Dec 2010 17:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=393#comment-2420</guid>
		<description>Thanks...good one...will keep reading this post...pls continue updating this topic..</description>
		<content:encoded><![CDATA[<p>Thanks&#8230;good one&#8230;will keep reading this post&#8230;pls continue updating this topic..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Event &#8211; db file scattered read by Vineesh</title>
		<link>http://www.dbsnaps.com/oracle/oracle-wait-event-db-file-scattered-read/comment-page-1/#comment-2417</link>
		<dc:creator>Vineesh</dc:creator>
		<pubDate>Sat, 11 Dec 2010 17:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=405#comment-2417</guid>
		<description>some of my doubts cleared....</description>
		<content:encoded><![CDATA[<p>some of my doubts cleared&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Wait Event &#8211; db file sequential read by Vineesh</title>
		<link>http://www.dbsnaps.com/oracle/oracle-wait-event-db-file-sequential-read/comment-page-1/#comment-2416</link>
		<dc:creator>Vineesh</dc:creator>
		<pubDate>Sat, 11 Dec 2010 17:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbsnaps.com/?p=415#comment-2416</guid>
		<description>Thanks....short &amp; sensible  :)</description>
		<content:encoded><![CDATA[<p>Thanks&#8230;.short &amp; sensible  <img src='http://www.dbsnaps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database Replay Part 2 &#8211; Process Video tutorial by Database Replay Part 3 &#8211; Replay Video tutorial &#124; dbsnaps</title>
		<link>http://www.dbsnaps.com/oracle/database-replay-part-2-process-video/comment-page-1/#comment-2343</link>
		<dc:creator>Database Replay Part 3 &#8211; Replay Video tutorial &#124; dbsnaps</dc:creator>
		<pubDate>Tue, 07 Dec 2010 08:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://dbsnaps.oracletutorialvideos.com/?p=34#comment-2343</guid>
		<description>[...] The first step &#8211; Database Replay Part 1 &#8211; Capture Video tutorial The second step -Database Replay Part 2 &#8211; Process Video tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] The first step &#8211; Database Replay Part 1 &#8211; Capture Video tutorial The second step -Database Replay Part 2 &#8211; Process Video tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database Replay Part 1 &#8211; Capture Video tutorial by Database Replay Part 3 &#8211; Replay Video tutorial &#124; dbsnaps</title>
		<link>http://www.dbsnaps.com/oracle/database-replay-part-1-capture-video-tutorial/comment-page-1/#comment-2342</link>
		<dc:creator>Database Replay Part 3 &#8211; Replay Video tutorial &#124; dbsnaps</dc:creator>
		<pubDate>Tue, 07 Dec 2010 07:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://dbsnaps.oracletutorialvideos.com/?p=29#comment-2342</guid>
		<description>[...] first step &#8211; Database Replay Part 1 &#8211; Capture Video tutorial The second step -Database Replay Part 2 &#8211; Process Video [...]</description>
		<content:encoded><![CDATA[<p>[...] first step &#8211; Database Replay Part 1 &#8211; Capture Video tutorial The second step -Database Replay Part 2 &#8211; Process Video [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

