How do you check what version of SQL Server for a database using TSQL? -


is there system stored procedure version #?

try

select @@version  

or sql server 2000 , above following easier parse :)

select serverproperty('productversion')      , serverproperty('productlevel')      , serverproperty('edition') 

from: http://support.microsoft.com/kb/321185


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -