<?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: Database Best Practices</title>
	<atom:link href="http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/feed/" rel="self" type="application/rss+xml" />
	<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/</link>
	<description>Break Coders Block!</description>
	<lastBuildDate>Tue, 31 Jan 2012 15:29:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Recent Links Tagged With "bulk" - JabberTags</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-687</link>
		<dc:creator>Recent Links Tagged With "bulk" - JabberTags</dc:creator>
		<pubDate>Mon, 13 Oct 2008 03:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-687</guid>
		<description>[...] public links &gt;&gt; bulk   Database Best Practices Saved by thelamborghini on Sat 11-10-2008   Stranded bulk carrier freed - News.com.auA BULK carrier [...]</description>
		<content:encoded><![CDATA[<p>[...] public links &gt;&gt; bulk   Database Best Practices Saved by thelamborghini on Sat 11-10-2008   Stranded bulk carrier freed &#8211; News.com.auA BULK carrier [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzi</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-686</link>
		<dc:creator>panzi</dc:creator>
		<pubDate>Sat, 06 Sep 2008 15:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-686</guid>
		<description>&gt; Offload tasks like string manipulations, concatenations, row numbering, case conversions, type conversions, etc to the front-end application.

Wouldn&#039;t that lead to a bloated DB design?</description>
		<content:encoded><![CDATA[<p>&gt; Offload tasks like string manipulations, concatenations, row numbering, case conversions, type conversions, etc to the front-end application.</p>
<p>Wouldn&#8217;t that lead to a bloated DB design?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AzMoo</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-685</link>
		<dc:creator>AzMoo</dc:creator>
		<pubDate>Tue, 26 Aug 2008 07:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-685</guid>
		<description># Avoid leaking your database design details, such as primary keys.

Can you clarify what you mean by this? Avoid leaking?</description>
		<content:encoded><![CDATA[<p># Avoid leaking your database design details, such as primary keys.</p>
<p>Can you clarify what you mean by this? Avoid leaking?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ignacio Coloma</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-683</link>
		<dc:creator>Ignacio Coloma</dc:creator>
		<pubDate>Wed, 20 Aug 2008 20:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-683</guid>
		<description>You cannot know for sure the number and order of the columns when you select *. If, say, an unused column gets dropped in the database,  your query will fail with the weirdest of errors (like an integer field found of type DATE)</description>
		<content:encoded><![CDATA[<p>You cannot know for sure the number and order of the columns when you select *. If, say, an unused column gets dropped in the database,  your query will fail with the weirdest of errors (like an integer field found of type DATE)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mpjw</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-684</link>
		<dc:creator>mpjw</dc:creator>
		<pubDate>Wed, 20 Aug 2008 01:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-684</guid>
		<description>If u need all the columns in your application u can do that, but most of the time only selected fields are necessary. Doing a &#039;select *&#039; will definitely impact network, memory, etc.</description>
		<content:encoded><![CDATA[<p>If u need all the columns in your application u can do that, but most of the time only selected fields are necessary. Doing a &#8216;select *&#8217; will definitely impact network, memory, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lostsock</title>
		<link>http://juixe.com/techknow/index.php/2008/08/19/database-best-practices/comment-page-1/#comment-682</link>
		<dc:creator>lostsock</dc:creator>
		<pubDate>Tue, 19 Aug 2008 14:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.juixe.com/techknow/index.php/2008/08/19/database-best-practices/#comment-682</guid>
		<description>Great list, thanks.

I am web developer of about 3 years now and I just have a query about one guideline. Is there any reason you suggest &quot;Do not use SELECT * in your queries, explicitly write the required columns names in the select statement.&quot;?

I have found that using &#039;SELECT *&#039; queries allows me to simply add fields to the database in order to have them accessible to my application without the needs to explicitly add them there too. I have read (can&#039;t remember when or where) that using &#039;SELECT *&#039; is not a performance hit so just wondering why you suggest against its use?

Cheers, Danny.</description>
		<content:encoded><![CDATA[<p>Great list, thanks.</p>
<p>I am web developer of about 3 years now and I just have a query about one guideline. Is there any reason you suggest &#8220;Do not use SELECT * in your queries, explicitly write the required columns names in the select statement.&#8221;?</p>
<p>I have found that using &#8216;SELECT *&#8217; queries allows me to simply add fields to the database in order to have them accessible to my application without the needs to explicitly add them there too. I have read (can&#8217;t remember when or where) that using &#8216;SELECT *&#8217; is not a performance hit so just wondering why you suggest against its use?</p>
<p>Cheers, Danny.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

