How to view the stored procedure code in SQL Server Management Studio

后端 未结 9 609
予麋鹿
予麋鹿 2021-01-30 19:35

I am new to SQL Server. I am logged into my database through SQL Server Management Studio.

I have a list of stored procedures. How do I view the stored procedure code?

9条回答
  •  误落风尘
    2021-01-30 20:18

    This is another way of viewing definition of stored procedure

    SELECT OBJECT_DEFINITION (OBJECT_ID(N'Your_SP'))
    

提交回复
热议问题