<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kwatog &#187; SQL Server</title>
	<atom:link href="http://kwatog.com/category/blog/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://kwatog.com</link>
	<description>tech notes and general nonsense</description>
	<lastBuildDate>Thu, 29 Jul 2010 12:06:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How To Determine SQL Server Version</title>
		<link>http://kwatog.com/blog/sql-server/how-to-determine-sqlserver-version/</link>
		<comments>http://kwatog.com/blog/sql-server/how-to-determine-sqlserver-version/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 10:42:57 +0000</pubDate>
		<dc:creator>kwatog</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://kwatog.com/?p=81</guid>
		<description><![CDATA[In case you need to know what version of SQL Server you are currently using, you can use the queries below. Starting at SQL Server 2000, you can use the following query. SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition') The above query is applicable for SQL Server 2000, SQL Server 2005 and SQL Server 2008. For [...]]]></description>
			<content:encoded><![CDATA[<p>
In case you need to know what version of SQL Server you are currently using, you can use the queries below.
</p>
<p>
Starting at SQL Server 2000, you can use the following query.
</p>
<p><code>SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')</code></p>
<p>
The above query is applicable for SQL Server 2000, SQL Server 2005 and SQL Server 2008. For SQL Server 7 and SQL Server 6.5 series. The code below should be used.
</p>
<p><code>SELECT @@VERSION</code></p>
<p>
If you are not sure what version of SQL Server you have, use the second query. It still works as it isn&#8217;t deprecated yet. The new version is handy if you need to get the details programmatically.</p>
]]></content:encoded>
			<wfw:commentRss>http://kwatog.com/blog/sql-server/how-to-determine-sqlserver-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
