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 >
Text File  |  1998-02-12  |  1KB  |  45 lines

  1. IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'Stored_Procedure_Name')
  2.   BEGIN
  3.     PRINT 'Dropping Procedure Stored_Procedure_Name'
  4.     DROP  Procedure  Stored_Procedure_Name
  5.   END
  6. GO
  7. PRINT 'Creating Procedure Stored_Procedure_Name'
  8. GO
  9. CREATE Procedure Stored_Procedure_Name
  10.    /* Param List */
  11. AS
  12.  
  13. /******************************************************************************
  14. ** File: 
  15. ** Name: Stored_Procedure_Name
  16. ** Desc: 
  17. **      This template can be customized and is found in:
  18. **              
  19. **
  20. ** Return values:
  21. ** 
  22. ** Called by:   
  23. **              
  24. ** Parameters:  Input                   Output
  25. **              ----------              -----------
  26. **
  27. ** Auth: 
  28. ** Date: 
  29. *******************************************************************************
  30. **       Change History
  31. *******************************************************************************
  32. ** Date:      Author:   Description:
  33. ** --------   --------  -------------------------------------------
  34. **    
  35. *******************************************************************************/
  36.  
  37.  
  38.  
  39.  
  40. GO
  41.  
  42. GRANT EXEC ON Stored_Procedure_Name TO PUBLIC
  43.  
  44. GO
  45.