<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/4.1.7" -->
<rss version="0.92">
	<channel>
		<title>Torsten Schuessler - Latest Comments</title>
		<link>http://www.insidesql.org/blogs/tosc/?disp=comments</link>
		<description></description>
		<language>en-EU</language>
		<docs>http://backend.userland.com/rss092</docs>
				<item>
			<title>In response to: Welcome as a Speaker for SQLSat 230 Rheinland</title>
			<description>Thx for mentioning my blog post :-)</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/06/06/welcome-as-a-speaker-for-sqlsat-230-rheinland#c2256</link>
		</item>
				<item>
			<title>In response to: SQL Server Information</title>
			<description>Hello Henrik,&lt;br /&gt;
&lt;br /&gt;
nice merging! THX!&lt;br /&gt;
If it is for you okay, I&#039;d like to customize the script?&lt;br /&gt;
&lt;br /&gt;
cu&lt;br /&gt;
tosc</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/20/sql-server-information#c2208</link>
		</item>
				<item>
			<title>In response to: SQL Server Information</title>
			<description>Hello Thorsten,&lt;br /&gt;
&lt;br /&gt;
great script and nice idea to use Serverproperty instead @@version.&lt;br /&gt;
&lt;br /&gt;
I merge my script and yours to a more completer one:&lt;br /&gt;
&lt;br /&gt;
--&gt; SQL Server Information &amp;lt;-- &lt;br /&gt;
SET nocount ON;&lt;br /&gt;
go &lt;br /&gt;
USE [master];&lt;br /&gt;
go&lt;br /&gt;
SELECT &lt;br /&gt;
   CONVERT(CHAR(100), Serverproperty(&#039;MachineName&#039;)) AS &#039;MACHINE NAME&#039;, &lt;br /&gt;
   CONVERT(CHAR(50), Serverproperty(&#039;ServerName&#039;)) AS &#039;SQL SERVER NAME&#039;, &lt;br /&gt;
&lt;br /&gt;
   (CASE WHEN CONVERT(CHAR(50), Serverproperty(&#039;InstanceName&#039;)) IS NULL &lt;br /&gt;
   THEN &#039;Default Instance&#039; &lt;br /&gt;
   ELSE CONVERT(CHAR(50), Serverproperty(&#039;InstanceName&#039;)) &lt;br /&gt;
   END) AS &#039;INSTANCE NAME&#039;, &lt;br /&gt;
   @@LANGUAGE as [Language],&lt;br /&gt;
   &lt;em&gt;right(substring(@@version,charindex(&#039; - &#039;,@@version)+17,PATINDEX(&#039;%Copyright%&#039;,@@version)-27-(charindex(&#039; - &#039;,@@version)+17)),3) as [32,64],&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
   CONVERT(CHAR(30), Serverproperty(&#039;EDITION&#039;)) AS EDITION, &lt;br /&gt;
   substring(@@version,22,(charindex(&#039; - &#039;,@@version)-22)) as [Version],&lt;br /&gt;
   CONVERT(CHAR(30), Serverproperty(&#039;ProductVersion&#039;)) AS &#039;BUILD&#039;, &lt;br /&gt;
   CONVERT(CHAR(30), Serverproperty(&#039;ProductLevel&#039;)) AS &#039;PRODUCT LEVEL&#039;, &lt;br /&gt;
		&lt;br /&gt;
&lt;br /&gt;
   (CASE WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISClustered&#039;)) = 1 &lt;br /&gt;
   THEN &#039;Clustered&#039; &lt;br /&gt;
   WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISClustered&#039;)) = 0 &lt;br /&gt;
   THEN &#039;NOT Clustered&#039; &lt;br /&gt;
   ELSE &#039;INVALID INPUT/ERROR&#039; &lt;br /&gt;
   END) AS &#039;FAILOVER CLUSTERED&#039;, &lt;br /&gt;
&lt;br /&gt;
   (CASE WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISIntegratedSecurityOnly&#039;)) = 1 &lt;br /&gt;
   THEN &#039;Integrated Security &#039; &lt;br /&gt;
   WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISIntegratedSecurityOnly&#039;)) = 0 &lt;br /&gt;
   THEN &#039;SQL Server Security &#039; &lt;br /&gt;
   ELSE &#039;INVALID INPUT/ERROR&#039; &lt;br /&gt;
   END) AS &#039;SECURITY&#039;, &lt;br /&gt;
   &lt;br /&gt;
   (CASE WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISSingleUser&#039;)) = 1 &lt;br /&gt;
   THEN &#039;Single User&#039; &lt;br /&gt;
   WHEN CONVERT(CHAR(30), Serverproperty(&#039;ISSingleUser&#039;)) = 0 &lt;br /&gt;
   THEN &#039;Multi User&#039; &lt;br /&gt;
   ELSE &#039;INVALID INPUT/ERROR&#039; &lt;br /&gt;
   END) AS &#039;USER MODE&#039;, &lt;br /&gt;
&lt;br /&gt;
   CONVERT(CHAR(30), Serverproperty(&#039;COLLATION&#039;)) AS COLLATION, &lt;br /&gt;
   Getdate() AS RunTime,  &lt;br /&gt;
   &lt;br /&gt;
   &lt;em&gt;substring(@@version,charindex (&#039; ON &#039;, @@VERSION)+4,(charindex (&#039; (Build&#039;, @@VERSION))- (charindex (&#039; ON &#039;, @@VERSION)-1)-5)  as [OS Version],&lt;br /&gt;
		substring(@@version,charindex (&#039;Build &#039;, @@VERSION) + 6,4)  as [OS Build],&lt;br /&gt;
		case when  charindex (&#039;Service Pack&#039;, @@VERSION) = 0&lt;br /&gt;
		then &#039;&#039;&lt;br /&gt;
		else&lt;br /&gt;
			substring(@@version,charindex (&#039;Service Pack&#039;, @@VERSION) +13,1 )&lt;br /&gt;
		end as [OS Service Pack],   &lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   @@SPID AS &#039;ID&#039;, &lt;br /&gt;
   SYSTEM_USER AS &#039;Login Name?&#039;, &lt;br /&gt;
   USER AS &#039;User Name&#039;;&lt;br /&gt;
   go &lt;br /&gt;
-- END SQL Server Information --</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/20/sql-server-information#c2207</link>
		</item>
				<item>
			<title>In response to: SQL Server Information</title>
			<description>ups, my fault&lt;br /&gt;
...&lt;br /&gt;
it&#039;s done!&lt;br /&gt;
THX Frank, wish you a nice day!</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/20/sql-server-information#c2197</link>
		</item>
				<item>
			<title>In response to: SQL Server Information</title>
			<description>I would consider making it available as a file to download. :-)</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/20/sql-server-information#c2196</link>
		</item>
				<item>
			<title>In response to: Kostenloser PASS-Vortrag "Performance &#38; Manageability der tempdb&#8220; - 19.02.2013 - N&#252;rnberg&#8207;</title>
			<description>Danke, hat mir sehr viel Spa&amp;#223; gemacht.&lt;br /&gt;
Die Pr&amp;#228;sentation findet Ihr unter: &lt;a href=&quot;http://www.sqlpass.de/Mitgliedsbereich/Repository.aspx?EntryId=614&quot; rel=&quot;nofollow&quot;&gt;Repository - Franken |Regionalgruppentreffen 2013&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
cu&lt;br /&gt;
tosc</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/01/kostenloser-pass-vortrag-performance-manageability-der-tempdb-19-02-2013-nuernberg-8207#c2195</link>
		</item>
				<item>
			<title>In response to: Kostenloser PASS-Vortrag "Performance &#38; Manageability der tempdb&#8220; - 19.02.2013 - N&#252;rnberg&#8207;</title>
			<description>Toller Vortrag gestern, danke sehr!&lt;br /&gt;
Gru&amp;#223; aus N&amp;#252;rnberg&lt;br /&gt;
Robert Gl&amp;#246;ckner</description>
			<link>http://www.insidesql.org/blogs/tosc/2013/02/01/kostenloser-pass-vortrag-performance-manageability-der-tempdb-19-02-2013-nuernberg-8207#c2194</link>
		</item>
				<item>
			<title>In response to: SQL Server 2005/2008 Express free Profiler Tool</title>
			<description>Good</description>
			<link>http://www.insidesql.org/blogs/tosc/2009/04/03/sql-server-2005-2008-express-free-profil#c2154</link>
		</item>
		  </channel>
</rss>
