<?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: When is a SQL function not a function?	</title>
	<atom:link href="https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/feed/" rel="self" type="application/rss+xml" />
	<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/</link>
	<description></description>
	<lastBuildDate>Mon, 14 Nov 2011 19:17:43 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>
	<item>
		<title>
		By: Cade Roux		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2027</link>

		<dc:creator><![CDATA[Cade Roux]]></dc:creator>
		<pubDate>Mon, 14 Nov 2011 19:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2027</guid>

					<description><![CDATA[I always thought inline TVFs should have been named parametrized views and grouped with them instead. &#160;Their treatment by the optimizer and performance profile is much more closely aligned with that.
I very much hope one day we will get inline scalar functions. &#160;It is a shame that very simple utility scalar functions are so much more easily outperformed by inline code. &#160;For maintainability, sometimes some simple scalar functions can be very useful - it would be nice if you didn&#039;t have to take such a performance hit to use them.]]></description>
			<content:encoded><![CDATA[<p>I always thought inline TVFs should have been named parametrized views and grouped with them instead. &nbsp;Their treatment by the optimizer and performance profile is much more closely aligned with that.<br />
I very much hope one day we will get inline scalar functions. &nbsp;It is a shame that very simple utility scalar functions are so much more easily outperformed by inline code. &nbsp;For maintainability, sometimes some simple scalar functions can be very useful &#8211; it would be nice if you didn&#8217;t have to take such a performance hit to use them.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rob Farley		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2026</link>

		<dc:creator><![CDATA[Rob Farley]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 08:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2026</guid>

					<description><![CDATA[Thanks everyone. I&#039;m going to write a follow-up to this about the use of stored procedures in SSRS. It&#039;ll be a little controversial. But I&#039;m moving house this week, so it might not be for a few days.
And ALZDBA - it could be okay, perhaps something along the lines of &#034;You&#039;re not what you appear to be, you shouldn&#039;t run procedurally&#034; :)]]></description>
			<content:encoded><![CDATA[<p>Thanks everyone. I&#8217;m going to write a follow-up to this about the use of stored procedures in SSRS. It&#8217;ll be a little controversial. But I&#8217;m moving house this week, so it might not be for a few days.<br />
And ALZDBA &#8211; it could be okay, perhaps something along the lines of &quot;You&#8217;re not what you appear to be, you shouldn&#8217;t run procedurally&quot; 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ALZDBA		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2025</link>

		<dc:creator><![CDATA[ALZDBA]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 22:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2025</guid>

					<description><![CDATA[Great post ! Very informative.
A ref to keep at hand.
[i]It will be a heck of a job to put that to a guitar tune :-)[/i]]]></description>
			<content:encoded><![CDATA[<p>Great post ! Very informative.<br />
A ref to keep at hand.<br />
[i]It will be a heck of a job to put that to a guitar tune :-)[/i]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joe Celko		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2024</link>

		<dc:creator><![CDATA[Joe Celko]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 18:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2024</guid>

					<description><![CDATA[Nice article. I alwasy felt that the UDF was added to make proceural programmers feel good and to help them avoid learning declarative programming :)]]></description>
			<content:encoded><![CDATA[<p>Nice article. I alwasy felt that the UDF was added to make proceural programmers feel good and to help them avoid learning declarative programming 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Hennesey		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2023</link>

		<dc:creator><![CDATA[John Hennesey]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 16:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2023</guid>

					<description><![CDATA[Very nice post! &#160;I have had to explain this numerous times to folks when their query takes &#062; 30 mins to run and by inlining things it goes down to 5-10 seconds. &#160;Now I can stop explaining and refer them to this post. :) &#160;thank you very much!]]></description>
			<content:encoded><![CDATA[<p>Very nice post! &nbsp;I have had to explain this numerous times to folks when their query takes &gt; 30 mins to run and by inlining things it goes down to 5-10 seconds. &nbsp;Now I can stop explaining and refer them to this post. 🙂 &nbsp;thank you very much!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: wilfred van dijk		</title>
		<link>https://lobsterpot.com.au/blog/2011/11/08/when-is-a-sql-function-not-a-function/#comment-2022</link>

		<dc:creator><![CDATA[wilfred van dijk]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 10:53:39 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=3045#comment-2022</guid>

					<description><![CDATA[Impressive under-the-hood information about the dark side of functions!]]></description>
			<content:encoded><![CDATA[<p>Impressive under-the-hood information about the dark side of functions!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
