How to check if a stored procedure exist?

后端 未结 6 1405
情书的邮戳
情书的邮戳 2020-12-30 09:58

I have searched the net and I\'ve found a post that uses the following snippet to check if a stored procedure exists:

select * 
  from USER_SOURCE 
 where ty         


        
6条回答
  •  鱼传尺愫
    2020-12-30 10:35

    I was not able to find stored procedure with any of the methods above.

    Reason: stored procedure was inside package. Oracle uses packages to gather several stored procedures in one module.

提交回复
热议问题