<?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: Column qualification best practice</title>
	<atom:link href="http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html</link>
	<description>Oracle Certified Master</description>
	<pubDate>Mon, 01 Dec 2008 20:28:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3913</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Fri, 08 Jun 2007 20:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3913</guid>
		<description>yes, I agree... bad example :oops: , but in principleit is  ok to use * with records</description>
		<content:encoded><![CDATA[<p>yes, I agree&#8230; bad example <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_redface.gif' alt=':oops:' class='wp-smiley' /> , but in principleit is  ok to use * with records</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3909</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Fri, 08 Jun 2007 16:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3909</guid>
		<description>For records SELECT * could be ok, but your example wouldn't be a good one where I personally would use a record ;-)

Because it just uses two attributes of that record. Waste of resources, especially if you consider you have some long VARCHAR2 columns in your table...

Patrick</description>
		<content:encoded><![CDATA[<p>For records SELECT * could be ok, but your example wouldn&#8217;t be a good one where I personally would use a record <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Because it just uses two attributes of that record. Waste of resources, especially if you consider you have some long VARCHAR2 columns in your table&#8230;</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3901</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Fri, 08 Jun 2007 08:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3901</guid>
		<description>&#62; “select *” should be banned from all production code.

maybe with records it is ok 
&lt;code&gt;declare r emp%ROWTYPE; 
begin 
  select * into r
    from emp
    where ename='SCOTT';
  update emp
    set sal=r.sal+100 
    where empno=r.empno;
end;
/
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>&gt; “select *” should be banned from all production code.</p>
<p>maybe with records it is ok<br />
<pre><code>declare r emp%ROWTYPE; 
begin 
&nbsp;&nbsp;select * into r
&nbsp;&nbsp;&nbsp;&nbsp;from emp
&nbsp;&nbsp;&nbsp;&nbsp;where ename=&#039;SCOTT&#039;;
&nbsp;&nbsp;update emp
&nbsp;&nbsp;&nbsp;&nbsp;set sal=r.sal+100 
&nbsp;&nbsp;&nbsp;&nbsp;where empno=r.empno;
end;
/
</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oracle Musings &#187; Column Naming</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3836</link>
		<dc:creator>Oracle Musings &#187; Column Naming</dc:creator>
		<pubDate>Thu, 07 Jun 2007 13:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3836</guid>
		<description>[...] Laurent&#8217;s post on column qualification reminded me of a conversation I had with one of my staff about column naming standards.&#160; But before I get to that conversation, I&#8217;d like to share my favorite example about using table aliases. [...]</description>
		<content:encoded><![CDATA[<p>[...] Laurent&#8217;s post on column qualification reminded me of a conversation I had with one of my staff about column naming standards.&nbsp; But before I get to that conversation, I&#8217;d like to share my favorite example about using table aliases. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beth</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3785</link>
		<dc:creator>Beth</dc:creator>
		<pubDate>Thu, 07 Jun 2007 03:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3785</guid>
		<description>I wholeheartedly agree!  "select *" should be banned from all production code.  Period.  

This was one of many "being a professional developer" lessons drummed into my brain by the senior dba at my first real database job.  I remember thinking it was rather silly, until I lived through the first dot release of the product.  Suddenly it all made sense....</description>
		<content:encoded><![CDATA[<p>I wholeheartedly agree!  &#8220;select *&#8221; should be banned from all production code.  Period.  </p>
<p>This was one of many &#8220;being a professional developer&#8221; lessons drummed into my brain by the senior dba at my first real database job.  I remember thinking it was rather silly, until I lived through the first dot release of the product.  Suddenly it all made sense&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Gralike</title>
		<link>http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3722</link>
		<dc:creator>Marco Gralike</dc:creator>
		<pubDate>Wed, 06 Jun 2007 15:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2007/06/column-qualification-best-practice.html#comment-3722</guid>
		<description>The use of aliases should be mandatory...(diminishes a lot of code errors)</description>
		<content:encoded><![CDATA[<p>The use of aliases should be mandatory&#8230;(diminishes a lot of code errors)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
