Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 341 Bytes

sp_heltpext.md

File metadata and controls

12 lines (10 loc) · 341 Bytes

Sick of typing sp_heltpext ?

Create a function sp_heltpext which channels the parameter to sp_helptext

Alter Procedure sp_heltpext (@Sprocname varchar(500))
AS
BEGIN
    print 'Assuming you meant:'
    print 'sp_helptext ' + '''' + @sprocname + ''''
    print ''
    exec sp_helptext @sprocname
END