Results 1 to 6 of 6

Thread: Sql 2000 Sp3a

  1. #1
    Join Date
    Sep 2002
    Posts
    41

    Sql 2000 Sp3a

    Select @@version does not know the difference between SP3 and SP3A.

    Does anyone know of a SQL statement that will let me know if I have SP3A??

    Thanks.

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    Tried 'SELECT SERVERPROPERTY('productversion')'?

  3. #3
    Join Date
    Sep 2002
    Posts
    41
    Yes, I have tried:
    'SELECT SERVERPROPERTY 'productversion')'

    It returns 8.00.760 for SP3 and SP3A.

    That's my problem.

    Thanks.

  4. #4
    Join Date
    Nov 2002
    Posts
    231
    Try this

    SELECT SERVERPROPERTY('ProductLevel')

  5. #5
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    Did you check sqlservr.exe file properties?.

    I am not sure whether 3a installs a new .exe

    If not the version may have remained same.

  6. #6
    Join Date
    Sep 2002
    Posts
    41
    Yep. I have checked the version numbers of the sqlservr.exe file properties.

    SP3 and SP3A are the same.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •