<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Oracle Force</title>
	<atom:link href="http://alexzeng.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexzeng.wordpress.com</link>
	<description>Alex Zeng's Oracle Weblog</description>
	<lastBuildDate>Mon, 29 Jun 2009 03:31:45 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How to conver columns to rows and convert rows to columns? by alexzeng</title>
		<link>http://alexzeng.wordpress.com/2009/06/29/how-to-conver-columns-to-rows-and-convert-rows-to-columns/#comment-104</link>
		<dc:creator>alexzeng</dc:creator>
		<pubDate>Mon, 29 Jun 2009 03:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=124#comment-104</guid>
		<description>You can reference this link as well:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:419593546543#72255255761453
-- Rows to columns:
SELECT &quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;, &quot;5&quot;, &quot;6&quot;
  FROM (SELECT MAX(decode(nr, 1, val, NULL)) AS &quot;1&quot;,
               MAX(decode(nr, 2, val, NULL)) AS &quot;2&quot;,
               MAX(decode(nr, 3, val, NULL)) AS &quot;3&quot;,
               MAX(decode(nr, 4, val, NULL)) AS &quot;4&quot;,
               MAX(decode(nr, 5, val, NULL)) AS &quot;5&quot;,
               MAX(decode(nr, 6, val, NULL)) AS &quot;6&quot;
          FROM (SELECT val, ROW_NUMBER() over(ORDER BY ord) AS nr
                  FROM (/***** Your query goes here: *****/
                        SELECT username AS val, username AS ord 
                          FROM all_users
                        /*********************************/)))
 GROUP BY &quot;1&quot;, &quot;2&quot;, &quot;3&quot;, &quot;4&quot;, &quot;5&quot;, &quot;6&quot;;
 
 
-- Columns to rows:
select decode(col, 1,&quot;1&quot;, 2,&quot;2&quot;, 3,&quot;3&quot;, 4,&quot;4&quot;) AS &quot;Table&quot;
  from (/***** Your query goes here: *****/
        SELECT owner AS &quot;1&quot;, table_name AS &quot;2&quot;, status AS &quot;3&quot;, 
               tablespace_name AS &quot;4&quot;
          FROM ALL_TABLES 
         WHERE ROWNUM = 1
        /*********************************/),
       (select ROWNUM AS col from all_objects WHERE ROWNUM &lt;= 4)</description>
		<content:encoded><![CDATA[<p>You can reference this link as well:<br />
<a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:419593546543#72255255761453" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:419593546543#72255255761453</a><br />
&#8211; Rows to columns:<br />
SELECT &#8220;1&#8243;, &#8220;2&#8243;, &#8220;3&#8243;, &#8220;4&#8243;, &#8220;5&#8243;, &#8220;6&#8243;<br />
  FROM (SELECT MAX(decode(nr, 1, val, NULL)) AS &#8220;1&#8243;,<br />
               MAX(decode(nr, 2, val, NULL)) AS &#8220;2&#8243;,<br />
               MAX(decode(nr, 3, val, NULL)) AS &#8220;3&#8243;,<br />
               MAX(decode(nr, 4, val, NULL)) AS &#8220;4&#8243;,<br />
               MAX(decode(nr, 5, val, NULL)) AS &#8220;5&#8243;,<br />
               MAX(decode(nr, 6, val, NULL)) AS &#8220;6&#8243;<br />
          FROM (SELECT val, ROW_NUMBER() over(ORDER BY ord) AS nr<br />
                  FROM (/***** Your query goes here: *****/<br />
                        SELECT username AS val, username AS ord<br />
                          FROM all_users<br />
                        /*********************************/)))<br />
 GROUP BY &#8220;1&#8243;, &#8220;2&#8243;, &#8220;3&#8243;, &#8220;4&#8243;, &#8220;5&#8243;, &#8220;6&#8243;;</p>
<p>&#8211; Columns to rows:<br />
select decode(col, 1,&#8221;1&#8243;, 2,&#8221;2&#8243;, 3,&#8221;3&#8243;, 4,&#8221;4&#8243;) AS &#8220;Table&#8221;<br />
  from (/***** Your query goes here: *****/<br />
        SELECT owner AS &#8220;1&#8243;, table_name AS &#8220;2&#8243;, status AS &#8220;3&#8243;,<br />
               tablespace_name AS &#8220;4&#8243;<br />
          FROM ALL_TABLES<br />
         WHERE ROWNUM = 1<br />
        /*********************************/),<br />
       (select ROWNUM AS col from all_objects WHERE ROWNUM &lt;= 4)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to setup Data Guard Broker and enable Fast Start Failover in 11g? by alexzeng</title>
		<link>http://alexzeng.wordpress.com/2009/06/24/how-to-setup-data-guard-broker-and-enable-fast-start-failover-in-11g/#comment-103</link>
		<dc:creator>alexzeng</dc:creator>
		<pubDate>Wed, 24 Jun 2009 05:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=121#comment-103</guid>
		<description>To check the oracle standby realted processes,  use this sql: select * from v$managed_standby;
To check the oracle resetlogs id, use this sql:
select * from v$database_incarnation;</description>
		<content:encoded><![CDATA[<p>To check the oracle standby realted processes,  use this sql: select * from v$managed_standby;<br />
To check the oracle resetlogs id, use this sql:<br />
select * from v$database_incarnation;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FAQ by amr ismaeel</title>
		<link>http://alexzeng.wordpress.com/faq/#comment-102</link>
		<dc:creator>amr ismaeel</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?page_id=62#comment-102</guid>
		<description>good site</description>
		<content:encoded><![CDATA[<p>good site</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use &#8220;/ as sysdba&#8221; to exp and imp by richard</title>
		<link>http://alexzeng.wordpress.com/2008/09/09/how-to-use-as-sysdba-to-exp-and-imp/#comment-101</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Mon, 08 Jun 2009 09:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=39#comment-101</guid>
		<description>Thanks for this - just what I was looking for !</description>
		<content:encoded><![CDATA[<p>Thanks for this &#8211; just what I was looking for !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Gary Belke</title>
		<link>http://alexzeng.wordpress.com/about/#comment-99</link>
		<dc:creator>Gary Belke</dc:creator>
		<pubDate>Thu, 07 May 2009 14:57:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-99</guid>
		<description>Hi Alex - We have a consulting need for someone with Oracle Gateway experience. Would you be interested in this?

Thanks,

Gary</description>
		<content:encoded><![CDATA[<p>Hi Alex &#8211; We have a consulting need for someone with Oracle Gateway experience. Would you be interested in this?</p>
<p>Thanks,</p>
<p>Gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How-to trace oracle sessions? by Pirsey</title>
		<link>http://alexzeng.wordpress.com/2008/08/01/how-to-trace-oracle-sessions/#comment-98</link>
		<dc:creator>Pirsey</dc:creator>
		<pubDate>Wed, 22 Apr 2009 06:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=9#comment-98</guid>
		<description>Hey, cool tips. Perhaps I&#039;ll buy a glass of beer to the man from that forum who told me to visit your site :)</description>
		<content:encoded><![CDATA[<p>Hey, cool tips. Perhaps I&#8217;ll buy a glass of beer to the man from that forum who told me to visit your site <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Step by step test Sql Plan Management by How to Get Six Pack Fast</title>
		<link>http://alexzeng.wordpress.com/2008/11/28/step-by-step-test-sql-plan-management/#comment-97</link>
		<dc:creator>How to Get Six Pack Fast</dc:creator>
		<pubDate>Wed, 15 Apr 2009 14:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=103#comment-97</guid>
		<description>This is quite a up-to-date information. I think I&#039;ll share it on Twitter.</description>
		<content:encoded><![CDATA[<p>This is quite a up-to-date information. I think I&#8217;ll share it on Twitter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to operate lob by using DBMS_LOB in 11g by alexzeng</title>
		<link>http://alexzeng.wordpress.com/2009/02/27/how-to-operate-lob-by-using-dbms_lob-in-11g/#comment-95</link>
		<dc:creator>alexzeng</dc:creator>
		<pubDate>Mon, 16 Mar 2009 02:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=116#comment-95</guid>
		<description>I got to know from oracle 11g new feature triaining that the data layer interface for SecureFiles is the same as with BasicFiles. That is to say, it works for SecureFiles lob as well.
Regards,
Alex</description>
		<content:encoded><![CDATA[<p>I got to know from oracle 11g new feature triaining that the data layer interface for SecureFiles is the same as with BasicFiles. That is to say, it works for SecureFiles lob as well.<br />
Regards,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to operate lob by using DBMS_LOB in 11g by alexzeng</title>
		<link>http://alexzeng.wordpress.com/2009/02/27/how-to-operate-lob-by-using-dbms_lob-in-11g/#comment-94</link>
		<dc:creator>alexzeng</dc:creator>
		<pubDate>Wed, 11 Mar 2009 14:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=116#comment-94</guid>
		<description>I didn&#039;t test it yet, you may try and let us know, ;)
Thanks your comment, qihua!
Regards,
Alex</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t test it yet, you may try and let us know, <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Thanks your comment, qihua!<br />
Regards,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to operate lob by using DBMS_LOB in 11g by Wu Qihua</title>
		<link>http://alexzeng.wordpress.com/2009/02/27/how-to-operate-lob-by-using-dbms_lob-in-11g/#comment-93</link>
		<dc:creator>Wu Qihua</dc:creator>
		<pubDate>Wed, 11 Mar 2009 13:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://alexzeng.wordpress.com/?p=116#comment-93</guid>
		<description>Good examples. Does it work against securefile in 11g, the new version of LOB?</description>
		<content:encoded><![CDATA[<p>Good examples. Does it work against securefile in 11g, the new version of LOB?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
