May 7, 2004 #1 zacca Technical User Joined Dec 25, 2003 Messages 333 Location HK Hi there, I'm very new to SQL server, vendor just help to built a MS SQL server for me. How can I check if SQL SP3a is installed or not? Many thanks!
Hi there, I'm very new to SQL server, vendor just help to built a MS SQL server for me. How can I check if SQL SP3a is installed or not? Many thanks!
May 7, 2004 1 #2 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
May 7, 2004 #3 JBaileys Technical User Joined Jun 23, 2003 Messages 244 Location US Run select @@version to get sql server version. Each version 8.00.xxx refers to the service pack Upvote 0 Downvote
May 7, 2004 Thread starter #4 zacca Technical User Joined Dec 25, 2003 Messages 333 Location HK Hi Jay Kusch, I run your procedures & got the info as follows: SQL Server 8.00.760 - SP3 (Standard Edition) Is this SP3 means SP3 only or SP3a? Many thanks! Upvote 0 Downvote
Hi Jay Kusch, I run your procedures & got the info as follows: SQL Server 8.00.760 - SP3 (Standard Edition) Is this SP3 means SP3 only or SP3a? Many thanks!
May 7, 2004 #5 JayKusch MIS Joined Oct 30, 2001 Messages 3,199 Location US It could be either since SP3 and SP3a are both 8.00.760 versions. I know ... Confusing! Thanks J. Kusch Upvote 0 Downvote
It could be either since SP3 and SP3a are both 8.00.760 versions. I know ... Confusing! Thanks J. Kusch
May 8, 2004 Thread starter #6 zacca Technical User Joined Dec 25, 2003 Messages 333 Location HK thx so much Jay! ;-) Upvote 0 Downvote