Programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui?

后端 未结 9 2036
孤独总比滥情好
孤独总比滥情好 2020-11-30 20:38

Any pointers on how I can programmatically get exactly the identical stored procedure source from SQL Server 2005, as when I right-click on that stored procedure in SQL Serv

9条回答
  •  孤独总比滥情好
    2020-11-30 21:24

    I saw a article via link. There are four methods, I just did a short summary here for helping other programmers.

    1. EXEC sp_helptext 'sp_name';

    2. SELECT OBJECT_ID('sp_name')

    3. SELECT OBJECT_DEFINITION( OBJECT_ID('sp_name') ) AS [Definition];

    4. SELECT * FROM sys.sql_modules WHERE object_id = object_id('sp_name');

提交回复
热议问题