ACC: "Stored Procedure 'PROCEDURE' Not Found" Error MessageLast reviewed: August 13, 1997Article ID: Q95061 |
The information in this article applies to:
SYMPTOMSAdvanced: Requires expert coding, interoperability, and multiuser skills. When you try to gain access to the SQL Server, you may receive the error message
Stored procedure 'PROCEDURE' not foundwhere 'PROCEDURE' is the name of a stored procedure that cannot be found but is necessary to gain access to the SQL Server.
CAUSEThe SQL Server 4.2 you are attempting to gain access to is not set up correctly. It is missing the required stored procedures.
RESOLUTIONTo correct this situation, install the necessary stored procedures on the SQL Server by using the INSTCAT.SQL SQL script file supplied with the Microsoft Access disk set.
MORE INFORMATIONRun INSTCAT.SQL to configure Microsoft SQL Server for use with ODBC, the open database connectivity protocol used by Microsoft Access to link (attach) SQL Server tables. INSTCAT.SQL is the SQL script file that ships with ODBC. You need to run it to set up the stored procedures that provide catalog information used by ODBC. To install the catalog stored procedures using INSTCAT.SQL, run INSTCAT.SQL using the SQL Server facility ISQL (Interactive SQL) from the MS-DOS command line. Following is the syntax for this procedure. Note that you need to enter the two lines as one continuous line, and that you do not include the angle braces <> in the command:
ISQL /U <sa login name> /n /P <password> /S <SQL server name> /i <drive:\path\INSTCAT.SQL> /o <drive:\path\output file name> Following is a description for each switch: /U Gives the system administrator's login name. /n Eliminates line numbering and prompting for user input. /P Gives the system administrator's Password - case sensitive. /S Gives the name of the server to set up. /i Gives the drive and fully qualified path for INSTCAT.SQL. /o Provides the output file destination for results of the process including errors.Here is a sample ISQL command line:
ISQL /U sa /n /P SA_Password /S SQL_SERVER /id:\SQL\INSTCAT.SQL /o d:\SQL\output.txtAfter running INSTCAT.SQL, run the RECONFIGURE command against the MASTER database by using the SQL Administration Facility (SAF) from an MS-DOS client or the server, or run the SQL Administrator program from a Microsoft Windows client.
Other Possible Causes for this Error MessageIt is possible that other situations can indirectly cause this error message. Use the following steps to troubleshoot the problem:
REFERENCESMicrosoft SQL Server "Administrator's Guide," version 4.2, pages 205-212
|
Additional query words: kbtshoot tshoot odbc
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |