使用できるもの:
select *
from
sys.procedures
where
name like '%name_of_proc%'
コードが必要な場合は、syscommentsテーブルを確認できます
select text
from
syscomments c
inner join sys.procedures p on p.object_id = c.object_id
where
p.name like '%name_of_proc%'
更新の編集:
ANSI標準バージョンを使用することもできます
SELECT *
FROM
INFORMATION_SCHEMA.ROUTINES
WHERE
ROUTINE_NAME LIKE '%name_of_proc%'