<?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: SQL View performance vs. SELECT</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 05:22:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: kccrosser</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/#comment-63660</link>
		<dc:creator>kccrosser</dc:creator>
		<pubDate>Fri, 15 May 2009 16:13:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-63660</guid>
		<description><![CDATA[(Reposting to try to fix bad link ref)

You could try using an Indexed View. There is a good simple overview of these at:


&lt;a href=&quot;http://www.sqlteam.com/article/indexed-views-in-sql-server-2000&quot;&gt; Intro to Indexed Views &lt;/a&gt; &lt;/a&gt;


Basically, if your view doesn’t violate any of the limitations of an indexed view, this allows creating a view that can have physical indexes applied to it, so you can tune performance much better than with a non-indexed view.]]></description>
		<content:encoded><![CDATA[<p>(Reposting to try to fix bad link ref)</p>
<p>You could try using an Indexed View. There is a good simple overview of these at:</p>
<p><a href="http://www.sqlteam.com/article/indexed-views-in-sql-server-2000"> Intro to Indexed Views </a> </p>
<p>Basically, if your view doesn’t violate any of the limitations of an indexed view, this allows creating a view that can have physical indexes applied to it, so you can tune performance much better than with a non-indexed view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kccrosser</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/#comment-63659</link>
		<dc:creator>kccrosser</dc:creator>
		<pubDate>Fri, 15 May 2009 16:11:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-63659</guid>
		<description><![CDATA[You could try using an Indexed View.  There is a good simple overview of these at:

&lt;a href=&quot;http://www.sqlteam.com/article/indexed-views-in-sql-server-2000&quot;&gt;http://www.sqlteam.com/article/indexed-views-in-sql-server-2000&lt;/a&gt;

Basically, if your view doesn&#039;t violate any of the limitations of an indexed view, this allows creating a view that can have physical indexes applied to it, so you can tune performance much better than with a non-indexed view.]]></description>
		<content:encoded><![CDATA[<p>You could try using an Indexed View.  There is a good simple overview of these at:</p>
<p><a href="http://www.sqlteam.com/article/indexed-views-in-sql-server-2000">http://www.sqlteam.com/article/indexed-views-in-sql-server-2000</a></p>
<p>Basically, if your view doesn&#8217;t violate any of the limitations of an indexed view, this allows creating a view that can have physical indexes applied to it, so you can tune performance much better than with a non-indexed view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koverton44</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/#comment-63604</link>
		<dc:creator>koverton44</dc:creator>
		<pubDate>Thu, 14 May 2009 21:12:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-63604</guid>
		<description><![CDATA[That would also be true of a table query.]]></description>
		<content:encoded><![CDATA[<p>That would also be true of a table query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmenke38</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-view-performance-vs-select/#comment-60978</link>
		<dc:creator>dmenke38</dc:creator>
		<pubDate>Wed, 18 Mar 2009 13:43:24 +0000</pubDate>
		<guid isPermaLink="false">#comment-60978</guid>
		<description><![CDATA[A view that is derived from a table that is updated frequently will re-execute the underlying queries nearly every time it is accessed. The view actually creates a temporary result table in the database that is cached until an underlying query is stale (a table specified in the query is updated.)
If no changes occur, the cached table is returned directly, otherwise the underlying queries is re-executed, a slower process.]]></description>
		<content:encoded><![CDATA[<p>A view that is derived from a table that is updated frequently will re-execute the underlying queries nearly every time it is accessed. The view actually creates a temporary result table in the database that is cached until an underlying query is stale (a table specified in the query is updated.)<br />
If no changes occur, the cached table is returned directly, otherwise the underlying queries is re-executed, a slower process.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.037 seconds using memcached
Object Caching 309/315 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-18 05:59:27 -->