﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Discuss Content Posted by Cade Bryant / Article Discussions / Article Discussions by Author  / Improving performance on joins to large tables. / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Sat, 25 May 2013 19:55:38 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Improving performance on joins to large tables.</title><link>http://www.sqlservercentral.com/Forums/Topic401874-138-1.aspx</link><description>SQL has to do meta-data lookups whether or not * is specified as it has to find the types and the column lengths.The reasons to not use select *  are more around only retrieving the columns that you need and not returning all of them out of laziness. It's also so that code won't break if a new clumn is added to a table. finally, select * makes creating covering indexes almost impossible.</description><pubDate>Tue, 01 Jul 2008 00:10:47 GMT</pubDate><dc:creator>GilaMonster</dc:creator></item><item><title>RE: Improving performance on joins to large tables.</title><link>http://www.sqlservercentral.com/Forums/Topic401874-138-1.aspx</link><description>Here u can improve performance more by specifying column names rather than using "*". Because using * queries sys.columns system table for get the column names, which is unnecessary when we can simply specify them.But you have to remember to update SP when u change the table(columns).regards,http://onlinecoder.blogspot.com/</description><pubDate>Mon, 30 Jun 2008 23:47:34 GMT</pubDate><dc:creator>prasad_wickramasinghe</dc:creator></item><item><title>Improving performance on joins to large tables.</title><link>http://www.sqlservercentral.com/Forums/Topic401874-138-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/scripts/Miscellaneous/30824/"&gt;Improving performance on joins to large tables.&lt;/A&gt;[/B]</description><pubDate>Mon, 24 Sep 2007 01:36:14 GMT</pubDate><dc:creator>cadebryant</dc:creator></item></channel></rss>