Created
September 17, 2019 07:32
-
-
Save Splaxi/cee7e15eef1e5dd1a50940eec2cb6ff1 to your computer and use it in GitHub Desktop.
Drop all stored procedures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT ' DROP PROCEDURE ' + s.NAME + '.' + p.NAME | |
| FROM sys.procedures p | |
| JOIN sys.schemas s | |
| ON p.[schema_id] = s.[schema_id] | |
| WHERE p.type = 'P' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment