<?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: PL/SQL Profiling</title>
	<atom:link href="http://technology.amis.nl/2005/09/21/plsql-profiling/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2005/09/21/plsql-profiling/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=plsql-profiling</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: RockinRyan</title>
		<link>http://technology.amis.nl/2005/09/21/plsql-profiling/#comment-2442</link>
		<dc:creator>RockinRyan</dc:creator>
		<pubDate>Tue, 05 Sep 2006 22:46:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=803#comment-2442</guid>
		<description><![CDATA[I too have been fighting to enable the TOAD profiler button.  There is a TOAD_PROFILER package that seems responsible for enabling the functionality.  The source for the TOAD_PROFILER package can be obtained directly from TOAD.  On my version I went to Tools -&gt; Server Side Objects Wizard.  I chose the last option on the form that opened (Create setup scripts without a database connection) because I do not have sys access of my own use.  Anyway that utility will generate a DDL script (TOADProfiler.sql) that will include the needed grants and procedures to presumably enable the profiler button.  I&#039;m posting this to possibly help others who are not able to profile through TOAD but do already have the DBMS_PROFILER package available.  If I find that I&#039;ve mistated anything I&#039;ll re-post...]]></description>
		<content:encoded><![CDATA[<p>I too have been fighting to enable the TOAD profiler button.  There is a TOAD_PROFILER package that seems responsible for enabling the functionality.  The source for the TOAD_PROFILER package can be obtained directly from TOAD.  On my version I went to Tools -&gt; Server Side Objects Wizard.  I chose the last option on the form that opened (Create setup scripts without a database connection) because I do not have sys access of my own use.  Anyway that utility will generate a DDL script (TOADProfiler.sql) that will include the needed grants and procedures to presumably enable the profiler button.  I&#8217;m posting this to possibly help others who are not able to profile through TOAD but do already have the DBMS_PROFILER package available.  If I find that I&#8217;ve mistated anything I&#8217;ll re-post&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan van den Heuvel</title>
		<link>http://technology.amis.nl/2005/09/21/plsql-profiling/#comment-2441</link>
		<dc:creator>Johan van den Heuvel</dc:creator>
		<pubDate>Tue, 06 Dec 2005 15:06:27 +0000</pubDate>
		<guid isPermaLink="false">/?p=803#comment-2441</guid>
		<description><![CDATA[You have first to install the DBMS_PROFILER package in the database

SYS.DBMS_PROFILER
/opt/oracle/product/920/rdbms/admin/profload.sql (unix)
D:\oracle\ora92\rdbms\admin\profload.sql (windows)

installation of DBMS_PROFILER
login directly on the server with telnet of ssh as Oracle dba, then with sqlplus &quot;/ as sysdba&quot;
SQL&gt; @$ORACLE_HOME/rdbms/admin/profload.sql

SQL&gt; CREATE USER profiler IDENTIFIED BY profiler DEFAULT TABLESPACE users QUOTA UNLIMITED ON users;
SQL&gt; GRANT connect TO profiler;

SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_runs FOR profiler.plsql_profiler_runs;
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_units FOR profiler.plsql_profiler_units;
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_data FOR profiler.plsql_profiler_data;
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_runnumber FOR profiler.plsql_profiler_runnumber;

SQL&gt; CONNECT profiler/profiler

SQL&gt; @$ORACLE_HOME/rdbms/admin/proftab.sql
SQL&gt; GRANT SELECT ON plsql_profiler_runnumber TO PUBLIC;
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_data TO PUBLIC;
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_units TO PUBLIC;
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_runs TO PUBLIC;

then you can use the package]]></description>
		<content:encoded><![CDATA[<p>You have first to install the DBMS_PROFILER package in the database</p>
<p>SYS.DBMS_PROFILER<br />
/opt/oracle/product/920/rdbms/admin/profload.sql (unix)<br />
D:\oracle\ora92\rdbms\admin\profload.sql (windows)</p>
<p>installation of DBMS_PROFILER<br />
login directly on the server with telnet of ssh as Oracle dba, then with sqlplus &#8220;/ as sysdba&#8221;<br />
SQL&gt; @$ORACLE_HOME/rdbms/admin/profload.sql</p>
<p>SQL&gt; CREATE USER profiler IDENTIFIED BY profiler DEFAULT TABLESPACE users QUOTA UNLIMITED ON users;<br />
SQL&gt; GRANT connect TO profiler;</p>
<p>SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_runs FOR profiler.plsql_profiler_runs;<br />
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_units FOR profiler.plsql_profiler_units;<br />
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_data FOR profiler.plsql_profiler_data;<br />
SQL&gt; CREATE PUBLIC SYNONYM plsql_profiler_runnumber FOR profiler.plsql_profiler_runnumber;</p>
<p>SQL&gt; CONNECT profiler/profiler</p>
<p>SQL&gt; @$ORACLE_HOME/rdbms/admin/proftab.sql<br />
SQL&gt; GRANT SELECT ON plsql_profiler_runnumber TO PUBLIC;<br />
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_data TO PUBLIC;<br />
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_units TO PUBLIC;<br />
SQL&gt; GRANT SELECT, INSERT, UPDATE, DELETE ON plsql_profiler_runs TO PUBLIC;</p>
<p>then you can use the package</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andreas Markussen</title>
		<link>http://technology.amis.nl/2005/09/21/plsql-profiling/#comment-2440</link>
		<dc:creator>Andreas Markussen</dc:creator>
		<pubDate>Tue, 04 Oct 2005 14:46:48 +0000</pubDate>
		<guid isPermaLink="false">/?p=803#comment-2440</guid>
		<description><![CDATA[I have been working with the DBMS_PROFILER, and I can run it without problems,
but TOAD does not enable the PL/SQL Profiling option. (It is grayed out)

Do you have any idear on how to show the report from the DBMS_PROFILER without TOAD or
if you know what could be the problem with TOAD. (8.0) On Oracle 8.1.7.

Br,

Andreas]]></description>
		<content:encoded><![CDATA[<p>I have been working with the DBMS_PROFILER, and I can run it without problems,<br />
but TOAD does not enable the PL/SQL Profiling option. (It is grayed out)</p>
<p>Do you have any idear on how to show the report from the DBMS_PROFILER without TOAD or<br />
if you know what could be the problem with TOAD. (8.0) On Oracle 8.1.7.</p>
<p>Br,</p>
<p>Andreas</p>
]]></content:encoded>
	</item>
</channel>
</rss>
