BUG: Application Error When Expanding a Stored ProcedureLast reviewed: January 22, 1998Article ID: Q179151 |
The information in this article applies to:
15729 (6.0) SYMPTOMSIf there is a stored procedure in sysobjects belonging to an invalid database user, you will receive a Dr. Watson application error with Sqlew.exe if you attempt to use SQL Enterprise Manager to expand the Stored Procedure folder under the database.
WORKAROUNDTo work around this problem, remove, rename or re-create the stored procedure under a valid user who has CREATE PROCEDURE privileges.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server versions 6.0 and 6.5. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONUse the following SQL query to find stored procedures that belong to an invalid database user:
select name,uid from sysobjects where uid NOT IN (select uid from sysusers) and type = 'P' Steps to Remove the Orphaned Stored Procedure
|
Additional query words: permission unhandled exception GPF AV access
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |