<?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 OracleLog</title>
	<atom:link href="http://www.oraclelog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oraclelog.com</link>
	<description>Oracle web log.</description>
	<lastBuildDate>Wed, 26 May 2010 17:20:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on ORA-01436: CONNECT BY loop in user data by gato</title>
		<link>http://www.oraclelog.com/2010/04/07/oracle/administration/ora-01436-connect-by-loop-in-user-data/comment-page-1/#comment-4628</link>
		<dc:creator>gato</dc:creator>
		<pubDate>Wed, 26 May 2010 17:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/?p=36#comment-4628</guid>
		<description>hi max, i think the nocycle keyword is available only in 10g and upward</description>
		<content:encoded><![CDATA[<p>hi max, i think the nocycle keyword is available only in 10g and upward</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ORA-01436: CONNECT BY loop in user data by Max</title>
		<link>http://www.oraclelog.com/2010/04/07/oracle/administration/ora-01436-connect-by-loop-in-user-data/comment-page-1/#comment-4624</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Wed, 26 May 2010 14:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/?p=36#comment-4624</guid>
		<description>Hello,  is there any keyword in Oracle 9i  to ignore the loop ? Using the nocycle gives de error &quot;invalid relational operator&quot; .

Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hello,  is there any keyword in Oracle 9i  to ignore the loop ? Using the nocycle gives de error &#8220;invalid relational operator&#8221; .</p>
<p>Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to log in to the database using imp / exp as sysdba by Carrie</title>
		<link>http://www.oraclelog.com/2007/07/04/oracle/how-to-log-in-to-the-database-using-imp-exp-as-sysdba/comment-page-1/#comment-4575</link>
		<dc:creator>Carrie</dc:creator>
		<pubDate>Fri, 30 Apr 2010 10:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/04/oracle/how-to-log-in-to-the-database-using-imp-exp-as-sysdba/#comment-4575</guid>
		<description>Hi,
Thanks.. worked a treat. Much more helpful than the other forums that are not using TNS</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks.. worked a treat. Much more helpful than the other forums that are not using TNS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PLS-00630 unsupported collection return types / 10G upgrade by karel Kolar</title>
		<link>http://www.oraclelog.com/2007/12/21/oracle/pls-00630-unsupported-collection-return-types-10g-upgrade/comment-page-1/#comment-4397</link>
		<dc:creator>karel Kolar</dc:creator>
		<pubDate>Mon, 15 Mar 2010 09:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/12/21/oracle/pls-00630-unsupported-collection-return-types-10g-upgrade/#comment-4397</guid>
		<description>drop package ivan.x1;
drop type ivan.x11;
create or replace type ivan.x11 as object
(
aaa integer
,aaa2 varchar2(500)
,aaa3 date
,Constructor Function X11 Return Self As Result
)
;
/

CREATE OR REPLACE TYPE BODY IVAN.X11 AS

	Constructor Function X11 Return Self As Result Is
	Begin
		Return;
	End X11;
End;

/

create or replace package ivan.x1 as
	type cca is record(
		 a integer);

	type cc is table of ivan.x11;

	type cci is table of integer;

	type cc1 is record(
		 a integer
		,b cc);

	type a1 is table of cc1;

	function aaa return a1
		pipelined;
end;


create or replace package body ivan.x1 as

	function aaa return a1
		pipelined as
		ret    cc1;
		ob     ivan.x11 := ivan.x11();
		ob_tab cc := cc();
	begin
		ob.aaa := 900;
		ob_tab.extend;
		ob_tab(ob_tab.LAST) := ob;
	
		ob.aaa := 800;
		ob_tab.extend;
		ob_tab(ob_tab.LAST) := ob;
	
		ret.a := 11;
		ret.b := ob_tab;
	
		pipe row(ret);
		return;
	end;
end;

select * from table (ivan.x1.aaa);</description>
		<content:encoded><![CDATA[<p>drop package ivan.x1;<br />
drop type ivan.x11;<br />
create or replace type ivan.x11 as object<br />
(<br />
aaa integer<br />
,aaa2 varchar2(500)<br />
,aaa3 date<br />
,Constructor Function X11 Return Self As Result<br />
)<br />
;<br />
/</p>
<p>CREATE OR REPLACE TYPE BODY IVAN.X11 AS</p>
<p>	Constructor Function X11 Return Self As Result Is<br />
	Begin<br />
		Return;<br />
	End X11;<br />
End;</p>
<p>/</p>
<p>create or replace package ivan.x1 as<br />
	type cca is record(<br />
		 a integer);</p>
<p>	type cc is table of ivan.x11;</p>
<p>	type cci is table of integer;</p>
<p>	type cc1 is record(<br />
		 a integer<br />
		,b cc);</p>
<p>	type a1 is table of cc1;</p>
<p>	function aaa return a1<br />
		pipelined;<br />
end;</p>
<p>create or replace package body ivan.x1 as</p>
<p>	function aaa return a1<br />
		pipelined as<br />
		ret    cc1;<br />
		ob     ivan.x11 := ivan.x11();<br />
		ob_tab cc := cc();<br />
	begin<br />
		ob.aaa := 900;<br />
		ob_tab.extend;<br />
		ob_tab(ob_tab.LAST) := ob;</p>
<p>		ob.aaa := 800;<br />
		ob_tab.extend;<br />
		ob_tab(ob_tab.LAST) := ob;</p>
<p>		ret.a := 11;<br />
		ret.b := ob_tab;</p>
<p>		pipe row(ret);<br />
		return;<br />
	end;<br />
end;</p>
<p>select * from table (ivan.x1.aaa);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to log in to the database using imp / exp as sysdba by Nad</title>
		<link>http://www.oraclelog.com/2007/07/04/oracle/how-to-log-in-to-the-database-using-imp-exp-as-sysdba/comment-page-1/#comment-3458</link>
		<dc:creator>Nad</dc:creator>
		<pubDate>Wed, 23 Dec 2009 07:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/04/oracle/how-to-log-in-to-the-database-using-imp-exp-as-sysdba/#comment-3458</guid>
		<description>Hi ,
thanks a lot it works . i use it to do a remote export .</description>
		<content:encoded><![CDATA[<p>Hi ,<br />
thanks a lot it works . i use it to do a remote export .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determining Log Switch Frequency by Mike</title>
		<link>http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/comment-page-1/#comment-714</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 07 Nov 2008 12:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/#comment-714</guid>
		<description>You need to replace all the TO_NUMBERs with TO_CHARs !</description>
		<content:encoded><![CDATA[<p>You need to replace all the TO_NUMBERs with TO_CHARs !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determining Log Switch Frequency by gato</title>
		<link>http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/comment-page-1/#comment-223</link>
		<dc:creator>gato</dc:creator>
		<pubDate>Thu, 22 May 2008 18:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/#comment-223</guid>
		<description>Don&#039;t know if that&#039;s possible If I really wanted that info I&#039;d just preserve if in a regular table using a job or something.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t know if that&#8217;s possible If I really wanted that info I&#8217;d just preserve if in a regular table using a job or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determining Log Switch Frequency by Mohammad</title>
		<link>http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/comment-page-1/#comment-222</link>
		<dc:creator>Mohammad</dc:creator>
		<pubDate>Thu, 22 May 2008 16:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/#comment-222</guid>
		<description>Thanks for the query.

How can I can extend the retention of this information. Currently, 10G is holding only 30 days. I want to retain the information for a year.</description>
		<content:encoded><![CDATA[<p>Thanks for the query.</p>
<p>How can I can extend the retention of this information. Currently, 10G is holding only 30 days. I want to retain the information for a year.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determining Log Switch Frequency by youngb912</title>
		<link>http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/comment-page-1/#comment-214</link>
		<dc:creator>youngb912</dc:creator>
		<pubDate>Sun, 20 Apr 2008 01:13:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/2007/07/17/oracle/determining-log-switch-frequency/#comment-214</guid>
		<description>It work perfect!!</description>
		<content:encoded><![CDATA[<p>It work perfect!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Identity Management(OIM) How to reset OID cn=orcladmin password by gato</title>
		<link>http://www.oraclelog.com/2008/04/04/oracle/oracle-identity-managementoim-how-to-reset-oid-cnorcladmin-password/comment-page-1/#comment-178</link>
		<dc:creator>gato</dc:creator>
		<pubDate>Fri, 04 Apr 2008 19:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.oraclelog.com/?p=19#comment-178</guid>
		<description>My bad, Robbert you&#039;re right, I&#039;ll update my post, thank you.</description>
		<content:encoded><![CDATA[<p>My bad, Robbert you&#8217;re right, I&#8217;ll update my post, thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
