Jun 18, 2004 #1 adonet MIS Joined May 4, 2004 Messages 312 Location US how to know service pack version? I use "select @@version" only get server version but no service pack
how to know service pack version? I use "select @@version" only get server version but no service pack
Jun 18, 2004 #2 SQLBill MIS Joined May 29, 2001 Messages 7,777 Location US You get at funky number don't you? Go to http://www.sqlsecurity.comclick on the FAQs/Docs link select the SQL Server Version Database That will 'interpret' the results you get from @@version. You can also find the information on Microsoft's website. -SQLBill Upvote 0 Downvote
You get at funky number don't you? Go to http://www.sqlsecurity.comclick on the FAQs/Docs link select the SQL Server Version Database That will 'interpret' the results you get from @@version. You can also find the information on Microsoft's website. -SQLBill
Jun 18, 2004 #3 JayKusch MIS Joined Oct 30, 2001 Messages 3,199 Location US run the following ... Code: SELECT 'SQL Server ' + CAST(SERVERPROPERTY('productversion') AS VARCHAR) + ' - ' + CAST(SERVERPROPERTY('productlevel') AS VARCHAR) + ' (' + CAST(SERVERPROPERTY('edition') AS VARCHAR) + ')' then check your findings against the info at this link ... http://www.tacktech.com/display.cfm?ttid=60 Thanks J. Kusch Upvote 0 Downvote
run the following ... Code: SELECT 'SQL Server ' + CAST(SERVERPROPERTY('productversion') AS VARCHAR) + ' - ' + CAST(SERVERPROPERTY('productlevel') AS VARCHAR) + ' (' + CAST(SERVERPROPERTY('edition') AS VARCHAR) + ')' then check your findings against the info at this link ... http://www.tacktech.com/display.cfm?ttid=60 Thanks J. Kusch