'I am trying to view the definition of the stored procedure using sp_helptext but I am not able to. Can you please suggest?
I am trying to view the definition of the stored procedure using sp_helptext but I am not able to. Can you please suggest?
Solution 1:[1]
use the following:-
USE MSDev EXEC sp_helptext 'yourProcedureName'
Hope it helps.
Regards,
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Muhammad Saleem |
