SELECT routine_schema, -- database/schema wherein the object resides
routine_name, -- the name of the function/procedure
routine_type, -- PROCEDURE indicates a procedure, FUNCTION indicates a function
routine_definition -- code underlying the sp
routine_comment -- some human readable comment on the routine
FROM information_schema.routines
WHERE routine_comment LIKE '%test%';
2条答案
按热度按时间34gzjxbg1#
可以从以下位置获取存储过程名称
information_schema
使用以下代码:sxpgvts32#
是的,你可以通过这样的注解来搜索proc。。