home *** CD-ROM | disk | FTP | other *** search
- IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'Stored_Procedure_Name')
- BEGIN
- PRINT 'Dropping Procedure Stored_Procedure_Name'
- DROP Procedure Stored_Procedure_Name
- END
- GO
- PRINT 'Creating Procedure Stored_Procedure_Name'
- GO
- CREATE Procedure Stored_Procedure_Name
- /* Param List */
- AS
-
- /******************************************************************************
- ** File:
- ** Name: Stored_Procedure_Name
- ** Desc:
- ** This template can be customized and is found in:
- **
- **
- ** Return values:
- **
- ** Called by:
- **
- ** Parameters: Input Output
- ** ---------- -----------
- **
- ** Auth:
- ** Date:
- *******************************************************************************
- ** Change History
- *******************************************************************************
- ** Date: Author: Description:
- ** -------- -------- -------------------------------------------
- **
- *******************************************************************************/
-
-
-
-
- GO
-
- GRANT EXEC ON Stored_Procedure_Name TO PUBLIC
-
- GO
-