Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ビューとストアド プロシージャのメタデータを実際に格納するテーブルは SQL Server にありますか?
つまり、実際のスクリプトです。
どんな知識でもとても役に立ちます
ありがとう !!!
はい、スクリプトは次のように取得されます。
SELECT name, object_definition(object_id) AS script FROM sys.objects WHERE type_desc IN ('SQL_SCALAR_FUNCTION', 'SQL_STORED_PROCEDURE', 'SQL_TABLE_VALUED_FUNCTION', 'SQL_TRIGGER', 'VIEW')
sp_helptextあなたの友達です
sp_helptext
http://msdn.microsoft.com/en-us/library/ms176112.aspx
(○○)