<?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: 10 Essential SQL Tips for Developers</title>
	<atom:link href="http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:51:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tony.C</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-123618</link>
		<dc:creator>Tony.C</dc:creator>
		<pubDate>Sun, 25 Oct 2009 11:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-123618</guid>
		<description>Always use stored procs, or your local equivalent to avoid sql injection issues.  

And know our execution engine!  Sometimes something as small as moving a where clause into a join clause can save a large percentage of execution cost(And also give you a demo on why code in a &quot;SELECT .. FROM&quot; section is bad).

And get the right IDE, there is always work to do on very large databases, and automating as much of it as possible will save you time and allow for more work on optimisation.</description>
		<content:encoded><![CDATA[<p>Always use stored procs, or your local equivalent to avoid sql injection issues.  </p>
<p>And know our execution engine!  Sometimes something as small as moving a where clause into a join clause can save a large percentage of execution cost(And also give you a demo on why code in a &#8220;SELECT .. FROM&#8221; section is bad).</p>
<p>And get the right IDE, there is always work to do on very large databases, and automating as much of it as possible will save you time and allow for more work on optimisation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: เพชร</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-109949</link>
		<dc:creator>เพชร</dc:creator>
		<pubDate>Tue, 22 Sep 2009 11:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-109949</guid>
		<description>very helpful tutorial</description>
		<content:encoded><![CDATA[<p>very helpful tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard S.</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-96625</link>
		<dc:creator>Richard S.</dc:creator>
		<pubDate>Tue, 25 Aug 2009 08:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-96625</guid>
		<description>I would like to see more information about tables joins because there so little information on the Internet and it seems to be very helpful for all of us.</description>
		<content:encoded><![CDATA[<p>I would like to see more information about tables joins because there so little information on the Internet and it seems to be very helpful for all of us.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KubidaQ</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-81121</link>
		<dc:creator>KubidaQ</dc:creator>
		<pubDate>Thu, 16 Jul 2009 03:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-81121</guid>
		<description>You should just learn attacks which will be come from hackers. If you don&#039;t know your enemy&#039;s tactics, you will fail.</description>
		<content:encoded><![CDATA[<p>You should just learn attacks which will be come from hackers. If you don&#8217;t know your enemy&#8217;s tactics, you will fail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-80859</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 15 Jul 2009 12:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-80859</guid>
		<description>You&#039;d be better using

SELECT firstName, lastName, shippingAddress FROM customer WHERE customerID = 1001
LIMIT 1;

on single row searches</description>
		<content:encoded><![CDATA[<p>You&#8217;d be better using</p>
<p>SELECT firstName, lastName, shippingAddress FROM customer WHERE customerID = 1001<br />
LIMIT 1;</p>
<p>on single row searches</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Banger</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-77319</link>
		<dc:creator>Banger</dc:creator>
		<pubDate>Mon, 06 Jul 2009 11:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-77319</guid>
		<description>Oh, I&#039;ve had coworkers who claimed to be &quot;experts&quot;, but neither sanitized their database inputs nor used more than one index - PRIMARY of course. Full table scans FTW! 
Nobody sobbed when they quit. ;-)</description>
		<content:encoded><![CDATA[<p>Oh, I&#8217;ve had coworkers who claimed to be &#8220;experts&#8221;, but neither sanitized their database inputs nor used more than one index &#8211; PRIMARY of course. Full table scans FTW!<br />
Nobody sobbed when they quit. <img src='http://net.tutsplus.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manuel</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-76439</link>
		<dc:creator>Manuel</dc:creator>
		<pubDate>Thu, 02 Jul 2009 16:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-76439</guid>
		<description>Impressing basic approach to a lot of problems.
Not only that there are more points to be considered, as written in the conclusion, also, those already mentioned points need to be considered much more thoroughly.</description>
		<content:encoded><![CDATA[<p>Impressing basic approach to a lot of problems.<br />
Not only that there are more points to be considered, as written in the conclusion, also, those already mentioned points need to be considered much more thoroughly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-76146</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Wed, 01 Jul 2009 19:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-76146</guid>
		<description>Nicely done!

In regards to fully qualifying the database object name, it is probably overkill if you are working on a smaller application / database. However my experience has been that it is amazingly important in any medium-to-enterprise level application.</description>
		<content:encoded><![CDATA[<p>Nicely done!</p>
<p>In regards to fully qualifying the database object name, it is probably overkill if you are working on a smaller application / database. However my experience has been that it is amazingly important in any medium-to-enterprise level application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mida</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-75737</link>
		<dc:creator>Mida</dc:creator>
		<pubDate>Tue, 30 Jun 2009 10:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-75737</guid>
		<description>Very nice tips, thanks alot</description>
		<content:encoded><![CDATA[<p>Very nice tips, thanks alot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob</title>
		<link>http://net.tutsplus.com/tutorials/other/10-essential-sql-tips-for-developers/#comment-71849</link>
		<dc:creator>Jacob</dc:creator>
		<pubDate>Mon, 15 Jun 2009 20:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=5274#comment-71849</guid>
		<description>Create tutorial, all tips are useful and well described to easiest understanding.</description>
		<content:encoded><![CDATA[<p>Create tutorial, all tips are useful and well described to easiest understanding.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.007 seconds using memcached
Content Delivery Network via 

Served from: psdtutsplus.com @ 2009-11-21 15:47:49 -->