Comments on: HOW TO: Determine If You Are Running A 32-bit Version Of SQL Server On A 64-bit O/S https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/ Thomas LaRock is an author, speaker, data expert, and SQLRockstar. He helps people connect, learn, and share. Along the way he solves data problems, too. Sun, 30 Jun 2013 17:08:55 +0000 hourly 1 https://wordpress.org/?v=6.7.2 By: What’s my OS bit LEVEL 32 or 64 | SQL DBA learning curve https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-8848 Sun, 30 Jun 2013 17:08:55 +0000 http://thomaslarock.com/?p=9995#comment-8848 […] got an initial idea from link .. A big Thanks to Thomas […]

]]>
By: ThomasLaRock https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-8762 Tue, 18 Jun 2013 21:35:00 +0000 http://thomaslarock.com/?p=9995#comment-8762 In reply to gurpreet sohal.

You are most welcome!

]]>
By: gurpreet sohal https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-8761 Tue, 18 Jun 2013 19:16:00 +0000 http://thomaslarock.com/?p=9995#comment-8761 i was looking for sowmthing to run on CMS .. as few servers where sql 2000 .. i have below in case .. worked well .. Thanks a lot for sharing ..

SELECT RIGHT(SUBSTRING(@@VERSION, CHARINDEX(‘<', @@VERSION), 4), 2),
RIGHT(SUBSTRING(CONVERT(varchar,SERVERPROPERTY('Edition'))
, CHARINDEX('(', CONVERT(varchar,SERVERPROPERTY('Edition'))), 3), 2)

]]>
By: ThomasLaRock https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-7971 Mon, 21 Jan 2013 02:58:00 +0000 http://thomaslarock.com/?p=9995#comment-7971 In reply to Bill Fellows.

Thanks Bill, it should be fixed now.

]]>
By: Bill Fellows https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-7970 Sun, 20 Jan 2013 15:02:00 +0000 http://thomaslarock.com/?p=9995#comment-7970 Your code snippets had their > and < symbols replaced with their HTML values. If you see < replace with

]]>
By: Something for the Weekend - SQL Server Links 11/01/13 https://thomaslarock.com/2013/01/how-to-determine-if-you-are-running-a-32-bit-version-of-sql-server-on-a-64-bit-os/#comment-7874 Fri, 11 Jan 2013 11:18:00 +0000 http://thomaslarock.com/?p=9995#comment-7874 […] How To: Determine If You Are Running A 32-Bit Version Of Sql Server On A 64-Bit O/S – Thomas Larock (Blog|Twitter) shares a handy T-SQL script that will perform this validation for you. […]

]]>