I have accidently deleted a store procedure from the sysobjects table by issuing the delete command. I should have dropped the stored procedure but instead of droppping it, I have deleted the stored procedure. I have tried to update the sysobjects table using the similar store procedure name which has been deleted, but the following error prompt out: "Procedure 'testing' has already been created with group number 1 - create procedure with an unused group number." What can I do to fix this problem?

    Requires Free Membership to View

You cannot delete a stored procedure from SYSOBJECTS system table unless you change the configuration setting of ASE by using sp_configure 'allow updates', 1. To do that, you need to be Sybase system administrator. It is better not to delete from system catalogue tables unless it is absolutely necessary. The proper way of dropping a stored procedure is to issue the following command:

DROP procedure <PROCEDURE_NAME >

This was first published in March 2006

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.