Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: How to Determine the Version of Catalog Stored Procedures


View products that this article applies to.

This article was previously published under Q209643
Advanced: Requires expert coding, interoperability, and multiuser skills.

This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).

↑ Back to the top


Summary

This article describes how to find the version of catalog stored procedures in Microsoft SQL Server.

↑ Back to the top


More information

There are situations in which you need to know the version of a stored procedure, such as when you are experiencing difficulties attaching to a SQL Server database. Method 1 uses the Query Analyzer in SQL Server to obtain a version number. Method 2 uses an attached table in Microsoft Access.

Method 1

Using the Query Analyzer, log on to SQL Server with a userID and password; using the SQL administrator's login ID (SA) is ideal, but it is not always readily available. After you log on, open the query window and issue the command USE MASTER. This action tells SQL Server to use the Master database that contains the system tables. To determine a version, type the following SQL command:
   USE MASTER
   GO
   SELECT Attribute_Value FROM Spt_Server_Info WHERE Attribute_ID = 500
				
NOTE: If you are using a version of the SQL Server earlier than version 4.2, substitute "MsServer_Info" for "Spt_Server_Info."

Method 2

In a situation where you can successfully link (attach) SQL Server data, you can link the Spt_Server_Info table from the Master database to a Microsoft Access database, and then create a query to retrieve the Attribute_Value for the record where the Attribute_ID is equal to 500.

If you are using a Microsoft Access project (.adp), you can open the the Master database as a new project, and then create a query in the same manner as described for a Microsoft Access database (.mdb).

NOTE: If you are using a version of SQL Server earlier than version 4.2, link to the table MsServer_Info, instead of Spt_Server_Info.

↑ Back to the top


Keywords: KB209643, kbusage, kbhowto

↑ Back to the top

Article Info
Article ID : 209643
Revision : 3
Created on : 1/26/2005
Published on : 1/26/2005
Exists online : False
Views : 273