<?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"
	>
<channel>
	<title>Comments on: Export to Excel</title>
	<atom:link href="http://laurentschneider.com/wordpress/2007/05/export-to-excel.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html</link>
	<description>Oracle Certified Master</description>
	<pubDate>Mon, 01 Dec 2008 19:07:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Lucas</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-6158</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Tue, 08 Apr 2008 13:13:30 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-6158</guid>
		<description>Wow, this also give column headings in bold ! Great stuff!</description>
		<content:encoded><![CDATA[<p>Wow, this also give column headings in bold ! Great stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5538</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 04 Dec 2007 19:35:06 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5538</guid>
		<description>Glad to help you 8-)</description>
		<content:encoded><![CDATA[<p>Glad to help you <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5537</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Tue, 04 Dec 2007 19:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5537</guid>
		<description>Laurent, i have no words to describe, the helpfully this it!!
thanks a lot!!

(now, i can not erase the smile in my face )</description>
		<content:encoded><![CDATA[<p>Laurent, i have no words to describe, the helpfully this it!!<br />
thanks a lot!!</p>
<p>(now, i can not erase the smile in my face )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5533</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 04 Dec 2007 11:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5533</guid>
		<description>replace :y by your procedure out variable or whatever you like

you could test it in sqlplus with

VAR Y CLOB
SET AUTOP ON</description>
		<content:encoded><![CDATA[<p>replace :y by your procedure out variable or whatever you like</p>
<p>you could test it in sqlplus with</p>
<p>VAR Y CLOB<br />
SET AUTOP ON</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5532</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 04 Dec 2007 11:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5532</guid>
		<description>Hi Fernando,
You cannot mix PLSQL and SQLPLUS capabilities. You could however do it yourself

&lt;i&gt;
begin 
  :y:='&#60;table&#62;&#60;tr&#62;&#60;th align=right&#62;EMPNO&#60;/th&#62;&#60;th&#62;ENAME&#60;/th&#62;&#60;/tr&#62;';
  for f in (select empno,ename from emp) loop 
    :y:=:y&#124;&#124;
      '&#60;tr&#62;&#60;td align=right&#62;'&#124;&#124;
      f.empno&#124;&#124;
      '&#60;/td&#62;&#60;td&#62;'&#124;&#124;
      f.ename&#124;&#124;
      '&#60;/td&#62;&#60;/tr&#62;';
  end loop;
  :y:=:y&#124;&#124;'&#60;/table&#62;';
end;
/
&#60;table&#62;
&#60;tr&#62;&#60;th align=right&#62;EMPNO&#60;/th&#62;&#60;th&#62;ENAME&#60;/th&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7369&#60;/td&#62;&#60;td&#62;SMITH&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7499&#60;/td&#62;&#60;td&#62;ALLEN&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7521&#60;/td&#62;&#60;td&#62;WARD&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7566&#60;/td&#62;&#60;td&#62;JONES&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7654&#60;/td&#62;&#60;td&#62;MARTIN&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7698&#60;/td&#62;&#60;td&#62;BLAKE&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7782&#60;/td&#62;&#60;td&#62;CLARK&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7788&#60;/td&#62;&#60;td&#62;SCOTT&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7839&#60;/td&#62;&#60;td&#62;KING&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7844&#60;/td&#62;&#60;td&#62;TURNER&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7876&#60;/td&#62;&#60;td&#62;ADAMS&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7900&#60;/td&#62;&#60;td&#62;JAMES&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7902&#60;/td&#62;&#60;td&#62;FORD&#60;/td&#62;&#60;/tr&#62;
&#60;tr&#62;&#60;td align=right&#62;7934&#60;/td&#62;&#60;td&#62;MILLER&#60;/td&#62;&#60;/tr&#62;
&#60;/table&#62;
&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>Hi Fernando,<br />
You cannot mix PLSQL and SQLPLUS capabilities. You could however do it yourself</p>
<p><i><br />
begin<br />
  :y:=&#8217;&lt;table&gt;&lt;tr&gt;&lt;th align=right&gt;EMPNO&lt;/th&gt;&lt;th&gt;ENAME&lt;/th&gt;&lt;/tr&gt;&#8217;;<br />
  for f in (select empno,ename from emp) loop<br />
    :y:=:y||<br />
      &#8216;&lt;tr&gt;&lt;td align=right&gt;&#8217;||<br />
      f.empno||<br />
      &#8216;&lt;/td&gt;&lt;td&gt;&#8217;||<br />
      f.ename||<br />
      &#8216;&lt;/td&gt;&lt;/tr&gt;&#8217;;<br />
  end loop;<br />
  :y:=:y||&#8217;&lt;/table&gt;&#8217;;<br />
end;<br />
/<br />
&lt;table&gt;<br />
&lt;tr&gt;&lt;th align=right&gt;EMPNO&lt;/th&gt;&lt;th&gt;ENAME&lt;/th&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7369&lt;/td&gt;&lt;td&gt;SMITH&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7499&lt;/td&gt;&lt;td&gt;ALLEN&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7521&lt;/td&gt;&lt;td&gt;WARD&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7566&lt;/td&gt;&lt;td&gt;JONES&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7654&lt;/td&gt;&lt;td&gt;MARTIN&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7698&lt;/td&gt;&lt;td&gt;BLAKE&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7782&lt;/td&gt;&lt;td&gt;CLARK&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7788&lt;/td&gt;&lt;td&gt;SCOTT&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7839&lt;/td&gt;&lt;td&gt;KING&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7844&lt;/td&gt;&lt;td&gt;TURNER&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7876&lt;/td&gt;&lt;td&gt;ADAMS&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7900&lt;/td&gt;&lt;td&gt;JAMES&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7902&lt;/td&gt;&lt;td&gt;FORD&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td align=right&gt;7934&lt;/td&gt;&lt;td&gt;MILLER&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5526</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Mon, 03 Dec 2007 21:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5526</guid>
		<description>Hi, thanks for that code.

but, i have a question from someone without knowledge.
if exists, it's possible to put the result of that report on a procedure, then call it from other environment, as php or asp by example, and show the html in that window.. or put it the @file in other machine or export that string...
i'm still looking on how do it... and i have no more ideas...

thanks for all and sorry about my English... cause sucks!!</description>
		<content:encoded><![CDATA[<p>Hi, thanks for that code.</p>
<p>but, i have a question from someone without knowledge.<br />
if exists, it&#8217;s possible to put the result of that report on a procedure, then call it from other environment, as php or asp by example, and show the html in that window.. or put it the @file in other machine or export that string&#8230;<br />
i&#8217;m still looking on how do it&#8230; and i have no more ideas&#8230;</p>
<p>thanks for all and sorry about my English&#8230; cause sucks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5252</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Thu, 08 Nov 2007 02:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5252</guid>
		<description>&lt;code&gt;SQL&gt; set mark html on table "&gt;&lt;img src=/images/laurentschneider.png&gt;&lt;/table&gt;&lt;br&gt;&lt;table"
SQL&gt; select * from dept;
&lt;/code&gt;

&lt;table &gt;&lt;img src=/images/laurentschneider.png&gt;&lt;/table&gt;&lt;br&gt;&lt;table&gt;
&lt;tr&gt;
&lt;th scope="col"&gt;
DEPTNO
&lt;/th&gt;
&lt;th scope="col"&gt;
DNAME
&lt;/th&gt;
&lt;th scope="col"&gt;
LOC
&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;
        10
&lt;/td&gt;
&lt;td&gt;
ACCOUNTING
&lt;/td&gt;
&lt;td&gt;
NEW YORK
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;
        20
&lt;/td&gt;
&lt;td&gt;
RESEARCH
&lt;/td&gt;
&lt;td&gt;
DALLAS
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;
        30
&lt;/td&gt;
&lt;td&gt;
SALES
&lt;/td&gt;
&lt;td&gt;
CHICAGO
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="right"&gt;
        40
&lt;/td&gt;
&lt;td&gt;
OPERATIONS
&lt;/td&gt;
&lt;td&gt;
BOSTON
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

</description>
		<content:encoded><![CDATA[<p><pre><code>SQL&gt; set mark html on table &quot;&gt;&lt;img src=/images/laurentschneider.png&gt;&lt;/table&gt;&lt;br&gt;&lt;table&quot;
SQL&gt; select * from dept;
</code></pre></p>
<table><img src=/images/laurentschneider.png/></table>
<p>
<table>
<tr>
<th scope="col">
DEPTNO
</th>
<th scope="col">
DNAME
</th>
<th scope="col">
LOC
</th>
</tr>
<tr>
<td align="right">
        10
</td>
<td>
ACCOUNTING
</td>
<td>
NEW YORK
</td>
</tr>
<tr>
<td align="right">
        20
</td>
<td>
RESEARCH
</td>
<td>
DALLAS
</td>
</tr>
<tr>
<td align="right">
        30
</td>
<td>
SALES
</td>
<td>
CHICAGO
</td>
</tr>
<tr>
<td align="right">
        40
</td>
<td>
OPERATIONS
</td>
<td>
BOSTON
</td>
</tr>
</table>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5243</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 07 Nov 2007 16:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5243</guid>
		<description>Excellent !

For a bonus point !

How can we add a company logo dynamically top the top of the file ?</description>
		<content:encoded><![CDATA[<p>Excellent !</p>
<p>For a bonus point !</p>
<p>How can we add a company logo dynamically top the top of the file ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5032</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Wed, 17 Oct 2007 19:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5032</guid>
		<description>you can turn off screen output in your script. Only spooling to a file is usually faster than spooling to the screen (Terminal)

set termout off</description>
		<content:encoded><![CDATA[<p>you can turn off screen output in your script. Only spooling to a file is usually faster than spooling to the screen (Terminal)</p>
<p>set termout off</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: salil</title>
		<link>http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5030</link>
		<dc:creator>salil</dc:creator>
		<pubDate>Wed, 17 Oct 2007 09:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/05/export-to-excel.html#comment-5030</guid>
		<description>thanks,for providing wonderfull solution,
i have a problem when the record is very large then it take lot of time, how to speed up this process.</description>
		<content:encoded><![CDATA[<p>thanks,for providing wonderfull solution,<br />
i have a problem when the record is very large then it take lot of time, how to speed up this process.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
