home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Micrsoft
/
VJ
/
COMMON
/
IDE
/
IDE98
/
TMPLTS
/
DBITEM
/
NEWSPROC.SQL
< prev
next >
Wrap
Text File
|
1998-02-12
|
1KB
|
45 lines
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