oracle sql语句怎么查询所有存储过程中是否包含某个注释?

select text from all_source where type='PROCEDDURE' and name='过程名'
and instr(text,'注释内容')>0 

原文地址:https://www.cnblogs.com/soundcode/p/6796753.html